Voici ses principaux champs :
Nom du champ | Type du champ | Description du champ |
comments | VarChar | Commentaire sur la table. |
owner | VarChar | Nom du propriétaire de la table. |
table_name | VarChar | Nom de la table. |
table_type | VarChar | Type de la table. |
SELECT
a.owner,
'',
a.tablespace_name,
a.table_name,
2,
b.comments
FROM ALL_TABLES a, ALL_TAB_COMMENTS b
WHERE
a.owner=b.owner
AND a.table_name=b.table_name(+)
AND b.table_type='TABLE'
AND a.tablespace_name LIKE 'MonSchema%'
AND a.table_name LIKE 'MaTable%'
ORDER BY 3, 4;