Oracle query the number of all tables

Sometimes you need to export all table, view, sequence, trigger and other information at a user, the following SQL can select to have these:

select * from user_tables;

select * from user_views;

select * from user_sequences;

select * from user_triggers;

Guess you like

Origin blog.csdn.net/weixin_37641163/article/details/87864115