in reply to How to display the whole database content without knowing all of the structure?

Hi ,

my $tables = "select column_name ,object_name from all_tab_colum +ns,dba_objects where owner_name = ? and column_name in (select colum +n_name from all_tab_columns where table_name = object_name)";


This is a correlated subselect ,so it takes time,it can be optimized.
  • Comment on Re: How to display the whole database content without knowing all of the structure?
  • Download Code