Well one way to view all the tables is using the Tab view in the schema browser
(not Tree view). When you’re on the tables tab there is a funnel icon. Clicking
that you can you can change the Schema Name to something like “IN” and list the
schemas you want to see ‘schema1’,‘schema2’,…
Then right click on the column header (below the filter icon) and select Schema.
This will add a schema column next to the table name.
Then you can sort the tables by clicking the table column to group the same ones
together or above the tabs type in the table name into the filter.
If you want to see data from all tables together there is always SQL to do that
select ‘schema1’ schema_name, col1, col2, col3, col4
from schema1.some_table
union all
select ‘schema2’ schema_name, col1, col2, col3, col4
from schema2.some_table
union all
select ‘schema3’ schema_name, col1, col2, col3, col4
from schema3.some_table
union all
select ‘schema4’ schema_name, col1, col2, col3, col4
from schema4.some_table
You can also create some views if you want too. Then under your Views tab you
would have a view for each group of tables showing all the data.
create or replace view some_table_v (schame_name, col1, col2, col3, col4)
as (
select ‘schema1’ schema_name, col1, col2, col3, col4
from schema1.some_table
union all
select ‘schema2’ schema_name, col1, col2, col3, col4
from schema2.some_table
union all
select ‘schema3’ schema_name, col1, col2, col3, col4
from schema3.some_table
union all
select ‘schema4’ schema_name, col1, col2, col3, col4
from schema4.some_table
)
Ed
[TeamT]