Oracle 完全导出,排除而不使用 par 文件
Posted
技术标签:
【中文标题】Oracle 完全导出,排除而不使用 par 文件【英文标题】:Oracle full EXPORT with exclude and NOT using par file 【发布时间】:2021-04-13 15:49:33 【问题描述】:我需要完全导出 12.2 数据库。最近我们在其中放置了 2 个表,其中有超过 400 万条记录将保持静态。我想将它们从每日 EXPDP 中删除,因为它们已离线存档。
此 EXPDP 通过计划任务启动并调用一系列已定义变量的批处理文件,这些变量从批处理文件传递到批处理文件。这会生成一系列日志和存档文件,这些文件在更大的方案中很重要。
我在没有 .PAR 文件的情况下执行此操作,因为 .PAR 文件似乎不喜欢批处理文件中定义的任何 VARIABLE 名称。
我可以在命令提示符下毫无问题地运行它,但如果我通过批处理调用它,我会收到错误
** LRM-00111:没有值“表:”的结束报价:“喜欢” **
EXPDP *******/********@%dbname% FULL=Y exclude=statistics exclude=table:\"LIKE\'%_80\'\" DUMPFILE=%bckupdate%.dmp LOGFILE=%bckupdate%.log reuse_dumpfiles=yes
任何有关如何在 PAR 文件中使用变量名(如 %DBNAME%)或批处理文件正确格式的有用提示将不胜感激。
【问题讨论】:
什么是操作系统OS? windows10 2016 服务器 我认为 Oracle 文档对在使用命令行参数时如何“根据平台”转义单引号和双引号时要小心谨慎。更糟糕的是,您的批处理文件可以在调用expdp
之前动态创建.PAR 文件。另外,%_80
是否应该匹配任何直到下划线字符后跟 80
的字符?如果是这样,您需要执行类似于LIKE\'%!_80\' ESCAPE \'!\'
的操作
【参考方案1】:
你可以试试这个脚本 expdp_powershell.ps1
例如
E:\upwork\***\expdp_powershell>powershell ./expdp_powershell.ps1 -user_name system -user_password manager -connect_string test -exclude table:\"LIKE\'%_80\'\"
或
E:\upwork\***\expdp_powershell>powershell ./expdp_powershell.ps1
脚本 expdp_powershell.ps1
param(
[string]$user_name = "system"
,
[string]$user_password = "manager"
,
[string]$connect_string = "TEST"
,
[string]$export_mode = "FULL=Y"
,
[string]$exclude = "table:\""LIKE \'%_80\'\"""
)
$date_time_log = Get-Date -Format "yyyyMMddHHmmss"
$DUMPFILE = "backup" + $date_time_log + ".dmp"
$LOGFILE = "backup_log" + $date_time_log + ".log"
$reuse_dumpfiles = "yes"
$DIRECTORY="DATA_PUMP_DIR"
echo $exclude
EXPDP $user_name/$user_password@$connect_string $export_mode exclude=statistics exclude=$exclude DIRECTORY=$DIRECTORY DUMPFILE=$DUMPFILE LOGFILE=$LOGFILE reuse_dumpfiles=$reuse_dumpfiles
例如输出
E:\upwork\***\expdp_powershell>powershell ./expdp_powershell.ps1 -user_name system -user_password manager -connect_string test -exclude table:\"LIKE\'%_80\'\"
table:\"LIKE \'%_80\'\"
Export: Release 11.2.0.4.0 - Production on Sat Jan 9 12:44:10 2021
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting "SYSTEM"."SYS_EXPORT_FULL_01": system/********@TEST FULL=Y exclude=statistics exclude=table:"LIKE \'%_80\'" DIRECTORY=DATA_PUMP_DIR DUMPFILE=backup20210109124410.dmp LOGFILE=ba
ckup_log20210109124410.log reuse_dumpfiles=yes
Estimate in progress using BLOCKS method...
Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 363.1 MB
Processing object type DATABASE_EXPORT/TABLESPACE
Processing object type DATABASE_EXPORT/PROFILE
Processing object type DATABASE_EXPORT/SYS_USER/USER
Processing object type DATABASE_EXPORT/SCHEMA/USER
Processing object type DATABASE_EXPORT/ROLE
Processing object type DATABASE_EXPORT/GRANT/SYSTEM_GRANT/PROC_SYSTEM_GRANT
Processing object type DATABASE_EXPORT/SCHEMA/GRANT/SYSTEM_GRANT
Processing object type DATABASE_EXPORT/SCHEMA/ROLE_GRANT
Processing object type DATABASE_EXPORT/SCHEMA/DEFAULT_ROLE
Processing object type DATABASE_EXPORT/SCHEMA/TABLESPACE_QUOTA
Processing object type DATABASE_EXPORT/RESOURCE_COST
Processing object type DATABASE_EXPORT/TRUSTED_DB_LINK
Processing object type DATABASE_EXPORT/SCHEMA/SEQUENCE/SEQUENCE
【讨论】:
以上是关于Oracle 完全导出,排除而不使用 par 文件的主要内容,如果未能解决你的问题,请参考以下文章