How to import data with nologgin option in oracle DBACLASS
We can import data with nologgin option by using TRANSFORM=DISABLE_ARCHIVE_LOGGING:Y parameter.
oracle clusteringintermediate
by OracleDba
13 views
We can import data with nologgin option by using TRANSFORM=DISABLE_ARCHIVE_LOGGING:Y parameter.
1234567
SQL> archive log list
Database log mode Archive Mode
Automatic archival Enabled
Archive destination USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence 232
Next log sequence to archive 234
Current log sequence 2341234567891011121314151617181920212223242526
[oracle@localhost ~]$ impdp dumpfile=dbaclass.dmp logfile=dbaclass.log directory=DUMP tables=test.TEST TRANSFORM=DISABLE_ARCHIVE_LOGGING:Y
Import: Release 12.1.0.2.0 - Production on Sat Aug 22 03:40:41 2015
Copyright (c) 1982, 2014, Oracle and/or its affiliates. All rights reserved.
Username: sys/oracle@ORCL as sysdba
Connected to: Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
Master table "SYS"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded
Starting "SYS"."SYS_IMPORT_TABLE_01": sys/********@ORCL AS SYSDBA dumpfile=dbaclass.dmp logfile=dbaclass.log directory=DUMP tables=test.TEST TRANSFORM=DISABLE_ARCHIVE_LOGGING:Y
Processing object type TABLE_EXPORT/TABLE/TABLE
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
. . imported "TEST"."TEST" 10.66 MB 93925 rows
Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
Processing object type TABLE_EXPORT/TABLE/STATISTICS/MARKER
Job "SYS"."SYS_IMPORT_TABLE_01" successfully completed at Sat Aug 22 03:41:23 2015 elapsed 0 00:00:30
SQL> archive log list
Database log mode Archive Mode
Automatic archival Enabled
Archive destination USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence 232
Next log sequence to archive 234
Current log sequence 2341234567
Sat Aug 22 03:36:06 2015
Resize operation completed for file# 10, old size 224000K, new size 226560K
Sat Aug 22 03:40:53 2015
DM00 started with pid=72, OS id=10034, job SYS.SYS_IMPORT_TABLE_01
Sat Aug 22 03:40:54 2015
DW00 started with pid=76, OS id=10036, wid=1, job SYS.SYS_IMPORT_TABLE_01123
TRANSFORM=DISABLE_ARCHIVE_LOGGING:Y:TABLE
TRANSFORM=DISABLE_ARCHIVE_LOGGING:Y:INDEXPlease to add comments
No comments yet. Be the first to comment!