在oracle数据库,怎样查看建在某个表空间上面个的所有表名?
追问:user_tables是oracle自带的一个对象?
追问:user_tables是oracle自带的一个对象?
答案:select table_name ,tablespace_name from dba_tables where tablespace_name = '表空间名';
需要DBA权限
select table_name ,tablespace_name from user_tables where tablespace_name = '表空间名';
只查当前用户的不需DBA权限
上一个:oracle中的commit和rollback
下一个:ORACLE数据库服务器名称变化了,ORACLE需要修改哪?