ほぼメモ
-
Oracle Database で 存在しているインスタンス一覧を確認する。
lsnrctl status
-
サービス名追加
ALTER SYSTEM SET service_names='hogehgoe'
-
Directory追加
CREATE OR REPLACE DIRECTORY dir1 as '/tmp';
-
エクスポート
expdp system/password@hogehoge full=y directory=dir1 dumpfile=hogehoge.dmp
-
インポート
expdp system/password@hogehoge full=y directory=dir1 dumpfile=hogehoge.dmp table_exists_action=replace
table_exists_actionは要らないかも