to search for a particular table in Oracle database:
select * from dba_objects where object_type = 'TABLE' and object_name like '%THAT_TABLE%';
Add owner name to limit query to a schema name.
to find a particular column by name:
select * from all_tab_columns where column_name like '%COLUMN_NAME%' ;
Tuesday, April 28, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment