Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定のテーブルのテーブルスペースを知る必要がありますSELECT owner, table_name, tablespace_name FROM dba_tables; 。権限がないため、通常のクエリでは使用できません。テーブルスペースの未使用の dba_tablespaces を参照する他の方法はありますか?
SELECT owner, table_name, tablespace_name FROM dba_tables;
どのような権限がありますか?
たとえば、問題のテーブルにクエリを実行できる場合all_tablesは、これと同じ列を持つが、dba_tables権限を持っているテーブルのデータのみを持つ which を使用できます。
all_tables
dba_tables
テーブルに対する権限を持っていない場合、他のデータ ディクショナリ テーブルにアクセスできますか (dba_segmentsたとえば、)?
dba_segments
テーブルに対する権限がなく、どのデータ ディクショナリ ビューに対する権限もないdba場合、なぜテーブルスペースを知る必要があるのでしょうか?
dba