Last active
May 15, 2020 06:14
-
-
Save gyakkun/df4d8cc417fcc795cc5ab424af140a7a to your computer and use it in GitHub Desktop.
sqlplus and exp usage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sqlplus user/password@ip[:port]/service_name[as sysdba] | |
exp user/password@ip[:port]/service_name[as sysdba] FULL=YES BUFFER=64000000 FILE=./FULL.DMP | |
exp user/password@ip[:port]/service_name[as sysdba] OWNER=user BUFFER=64000000 FILE=./FULL.DMP | |
; FULL mode requires super administrator permission. | |
; plat/[email protected]:1522/orcl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment