- 论坛徽章:
- 0
|
当一个表空间已损坏时,是不是就不能查询出哪些表或者哪些用户在使用这个表空间了?比如下面的cbs_default_dat表空间,我知道就有用户在使用,我需要查询出有哪些用户及表在使用,怎么就查询不出来了?
SQL> select status ,name from v$datafile;
STATUS
-------
NAME
--------------------------------------------------------------------------------
RECOVER
/home/oracle/oradata/CBS_DEFAULT_DAT.dbf
SQL> select distinct(t.owner) from all_tables t where t.tablespace_name ='CBS_DEFAULT_DAT';
no rows selected
SQL> select table_name from user_all_tables t where t.tablespace_name like '%CBS_DEFAULT_DAT%';
no rows selected
|
|