查找SCHEMA的默认表空间:

select default_tablespace from dba_users where username='SCHEMA_NAME';

查找某个表的表空间:

select tablespace_name from user_tables where table_name='TABLE_NAME';

查找某个LOB字段的表空间:

select tablespace_name from user_lobs where table_name='TABLE_NAME' and column_name='LOB_NAME';

查找某个索引的表空间:

select tablespace_name from user_indexes where index_name='INDEX_NAME';

 

相关文章:

  • 2021-11-10
  • 2021-12-22
  • 2021-07-21
  • 2021-12-08
  • 2022-12-23
  • 2021-09-18
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-25
  • 2022-12-23
  • 2021-11-19
  • 2021-09-11
  • 2021-07-11
  • 2021-12-29
  • 2022-12-23
相关资源
相似解决方案