Systables in Oracle

By robby

In Informix-Databases they are called Systables, where i get the Meta-Info about tables and columns. In oracle i get this basic infos with the following sqls:

select * from ALL_TABLES where TABLE_NAME = ‘<TABLENAME>‘;
select * from ALL_TAB_COLUMNS where TABLE_NAME = ‘<TABLENAME>

Eine Antwort schreiben