怎樣讓sys使用者執行exp操作
[oracle@localhost ~]$ exp sys/abcdefg as sysdba full=y file=/tmp/full100.dmp
LRM-00108: invalid positional parameter value 'as'
EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
EXP-00000: Export terminated unsuccessfully
[oracle@localhost ~]$ exp \"sys/abcdefg as sysdba\" full=y file=/tmp/full100.dmp
Export: Release 10.2.0.1.0 - Production on Tue Jul 8 09:27:56 2008
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export done in US7ASCII character set and AL16UTF16 NCHAR character set
server uses WE8ISO8859P1 character set (possible charset conversion)
About to export the entire database ...
. exporting tablespace definitions
. exporting profiles
. exporting user definitions
. exporting roles
. exporting resource costs
. exporting rollback segment definitions
. exporting database links
. exporting sequence numbers
. exporting directory aliases
. exporting context namespaces
. exporting foreign function library names
. exporting PUBLIC type synonyms
. exporting private type synonyms
. exporting object type definitions
. exporting system procedural objects and actions
. exporting pre-schema procedural objects and actions
. exporting cluster definitions
. about to export SYSTEM's tables via Conventional Path ...
. . exporting table DEF$_AQCALL 0 rows exported
. . exporting table DEF$_AQERROR 0 rows exported
. . exporting table DEF$_CALLDEST 0 rows exported
EXP-00091: Exporting questionable statistics.
EXP-00091: Exporting questionable statistics.
EXP-00091: Exporting questionable statistics.
反斜槓加單引號也行
[oracle@localhost ~]$ exp \'sys/abcdefg as sysdba\' full=y file=/tmp/full100.dmp
Export: Release 10.2.0.1.0 - Production on Tue Jul 8 09:28:54 2008
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export done in US7ASCII character set and AL16UTF16 NCHAR character set
server uses WE8ISO8859P1 character set (possible charset conversion)
About to export the entire database ...
. exporting tablespace definitions
. exporting profiles
. exporting user definitions
. exporting roles
. exporting resource costs
. exporting rollback segment definitions
. exporting database links
. exporting sequence numbers
. exporting directory aliases
. exporting context namespaces
. exporting foreign function library names
以下是官方文件說明:
1. Command line.
Enclose the connect string with a single quote character:
Windows:
D:\> exp 'sys/change_on_install@instance as sysdba' tables=scott.emp
Unix (you need to 'escape' the single quote):
> exp \'sys/change_on_install@instance as sysdba\' tables=scott.emp
VMS (use [double_quote][single_quote]...[single_quote][double_quote]):
$ exp "'sys/change_on_install@instance as sysdba'" tables=scott.emp
Note that this VMS syntax is also a valid syntax on Unix and on Windows.
2. Interactive
Do not specify any connect string on the command line, so you will be prompted to enter it. E.g.:
> exp tables=scott.emp
Export: Release 10.2.0.3.0 - Production on Fri Jun 25 07:39:46 2004
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Username: sys/change_on_install@instance as sysdba
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
... etc.
3. Parameter file.
You can also specify the username in the parameter file. In this situation, you have to enclose the connect string with a double quote character. However, to prevent possible security breaches we advice you to stop using the USERID parameter in a parameter file.
File: exp.par
---------------
USERID="sys/change_on_install@instance as sysdba"
TABLES=scott.emp
Run export with:
> exp parfile=exp.par
4. Remarks.
Remark 1. If you have setup operating system authentication, it is not necessary to specify the SYS schema name, and password. E.g.:
> exp "'/@instance as sysdba'" tables=scott.emp
Remark 2. In addition, if you have set the environment variable TWO_TASK (on Unix) or LOCAL (on Windows) or on the server where the database is installed you have set ORACLE_HOME and ORACLE_SID, it is not necessary to specify the @instance. E.g.:
> exp "'/ as sysdba'" tables=scott.emp
Remark 3. The export parameters FLASHBACK_SCN and FLASHBACK_TIME cannot be used if the user that invoked the export is connected AS SYSDBA.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7199859/viewspace-374538/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- JS是怎樣執行的JS
- Webpack 是怎樣執行的?Web
- 怎樣停止一個正在執行的執行緒執行緒
- Webpack 是怎樣執行的?(一)Web
- win10怎樣使電腦執行更流暢_如何讓win10系統執行更快Win10
- 如何讓 Python 像 Julia 一樣快地執行Python
- 執行緒池是怎樣工作的?執行緒
- python怎樣執行js語句PythonJS
- python中怎樣執行指令碼Python指令碼
- 怎樣在Python中執行cmdPython
- 讀《mysql是怎樣執行的》有感MySql
- 怎樣看懂Oracle的執行計劃Oracle
- LoadRunner Controller中多使用者併發操作是怎樣進行的?Controller
- 10g 用sys使用者執行資料庫匯入匯出資料庫
- 怎樣在 Kubernetes 上執行 PostgreSQLSQL
- 怎樣做才能保證執行緒安全?執行緒
- 怎樣得到準確的執行計劃
- 怎樣看懂Oracle的執行計劃[轉]Oracle
- WordPress 3.5.1遠端程式碼執行EXP
- 使用CRONTAB呼叫shell指令碼執行EXP指令碼
- 代理IP怎樣保障Python穩定執行?Python
- win10怎樣讓我的世界執行更流暢_win10系統如何執行我的世界更流暢Win10
- SYS執行SQL報錯缺少許可權SQL
- 執行緒操作執行緒
- oracle10g audit--審計sys使用者(as sysdba或者sysoper)特權操作行為Oracle
- sys使用者執行 grant授權提示ORA-01031: insufficient privileges
- 怎樣讓程式延時 (轉)
- 使用RMAN執行維護操作——RMAN使用者手冊
- php返回資料後如何讓程式繼續執行其它操作PHP
- ThreadPoolExecutor執行緒池任務執行失敗的時候會怎樣thread執行緒
- 什麼時候執行緒不安全?怎樣做到執行緒安全?怎麼擴充套件執行緒安全的類?執行緒套件
- 怎樣在sqlite3上執行SQL語句SQLite
- 執行長查詢時,怎樣獲取進度?
- C++程式怎樣呼叫exe可執行檔案C++
- 這樣執行執行緒是否妥當?執行緒
- 忘記oracle的sys使用者密碼怎麼修改Oracle密碼
- 怎樣監控執行時間來決定當前操作任務是否因超時停止呀?
- 怎樣讓企業資料加密加密