Re: Tablespaces comparison

  • From: "Sylvester, Peter A." <peters@xxxxxxxxx>
  • To: <oracle-l@xxxxxxxxxxxxx>
  • Date: Wed, 2 Apr 2008 15:49:05 -0400

Try creating a database link, then can you run queries like this:
 
select owner, table_name from dba_tables where tablespace_name='X'
minus
select owner, table_name from dba_tables@link where
tablespace_name='X';
 
You will need to run the reverse test too.
And can get fancier with dba_tab_columns etc...
 
 
--Peter

Other related posts: