用PLSQL操作数据库时用命令查看当前登陆用户的所有表

一、显示表和表空间

1、显示当前用户所有表(其中SCOTT,必须大写)

select TABLE_NAME from all_tables where owner = 'SCOTT';

2、显示当前用户的所有表(这个会显示用户表以及表空间名)

select * from user_tables;

3、显示当前数据库的所有表

select * from tab;

二、显示当前数据表空间名

采用sys用户登陆

select     tablespace_name    from   dba_tables   where table_name = upper('你要操作的表名') 
THE END
点赞0赞赏 分享
抢沙发
头像
提交
头像

昵称

取消
昵称表情

    暂无评论内容