-Oracleではユーザに対してスキーマが紐づく。所有者変更はできないらしいのでスキーマ移動する場合は再作成

*オペレーションSQL [#qb91b3a4]

|テーブルの所有者確認|select owner,table_name from dba_tables where owner = 'HOGE';|
|シーケンスの所有者確認|select * from dba_sequences where sequence_owner = 'HOGE';|
|全シノニムから確認|select * from ALL_SYNONYMS where SYNONYM_NAME like 'xxx';|

**表領域 [#s0ea043b]

|表領域と物理ファイルパス|select TABLESPACE_NAME,FILE_NAME from dba_data_files;|
|テーブル一覧と| select tablespace_name,table_name from user_tables where table_name = 'HOGE' order by tablespace_name;|

*注意点 [#y4969f20]

-PUBLICシノニムが存在する場合同名のオブジェクトは作成できない。


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS