【匯入匯出】執行匯入,匯出時如何以as sysdba 身份連線。

楊奇龍發表於2011-02-20
1. Command line.命令列形式
C:\Users\aaaa>exp 'system/yang as sysdba'  tables=scott.emp  file=emp.dmp
Export: Release 11.1.0.6.0 - Production on 星期日 2月 20 22:26:41 2011
Copyright (c) 1982, 2007, Oracle.  All rights reserved.

連線到: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
已匯出 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集
即將匯出指定的表透過常規路徑...
當前的使用者已更改為 SCOTT
. . 正在匯出表                             EMP匯出了          14 行
成功終止匯出, 沒有出現警告。

C:\Users\aaaa>exp '/ as sysdba'  tables=scott.emp  file=emp.dmp
Export: Release 11.1.0.6.0 - Production on 星期日 2月 20 22:27:01 2011

連線到: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
已匯出 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集

即將匯出指定的表透過常規路徑...
當前的使用者已更改為 SCOTT
. . 正在匯出表                             EMP匯出了          14 行
成功終止匯出, 沒有出現警告。

2. 互動模式
C:\Users\aaaa>exp tables=scott.emp
使用者名稱: system
口令:
連線到: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
已匯出 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集
即將匯出指定的表透過常規路徑...
當前的使用者已更改為 SCOTT
. . 正在匯出表                             EMP匯出了          14 行
成功終止匯出, 沒有出現警告。

3 .引數檔案形式
d:\emppar.txt
USERID='/as sysdba'  ----此用法錯誤
TABLES=scott.emp
FILE=emp.dmp
C:\Users\aaaa>exp parfile=d:\emppar.txt
Export: Release 11.1.0.6.0 - Production on 星期日 2月 20 22:30:21 2011
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
EXP-00004: 使用者名稱或口令無效
使用者名稱: system
口令:

連線到: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
已匯出 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集

即將匯出指定的表透過常規路徑...
當前的使用者已更改為 SCOTT
. . 正在匯出表                             EMP匯出了          14 行
成功終止匯出, 沒有出現警告。

d:\emppar.txt 內容如下:
USERID='system/yang as sysdba'
TABLES=scott.emp
FILE=emp.dmp
C:\Users\aaaa>exp parfile=d:\emppar.txt
Export: Release 11.1.0.6.0 - Production on 星期日 2月 20 22:31:08 2011
連線到: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
已匯出 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集

即將匯出指定的表透過常規路徑...
當前的使用者已更改為 SCOTT
. . 正在匯出表                             EMP匯出了          14 行
成功終止匯出, 沒有出現警告。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-687590/,如需轉載,請註明出處,否則將追究法律責任。

相關文章