怎么用sql查看用户用了哪个oracle数据库

2024-11-07 10:36:37
有1个网友回答
网友(1):

查询系统表:select * from all_tables where table_name not in (select table_name from user_tables);
查询用户表:select * from user_tables;