An easy way to get table information if you don't have tools to pull up ERD's. This will generate SQL to describe the table structures. You can include this in a script or even have it spooled out to HTML for easy reading.
select 'desc '||owner||'.'||table_name||'' from dba_tables where owner='HR’;
No comments:
Post a Comment