mysql:

select * from information_schema.tables where table_type='BASE TABLE'


102828530.gif


mssql(sqlserver):

select * from ReportServer.information_schema.tables (where table_type='BASE TABLE')


103134421.gif


select * from sysobjects where xtype='u'


103516267.gif


oracle:

select * from user_tables;


103853732.gif