2012-10-30 45 views

回答

0

無論如何,您必須替換視圖的ddl。

你可以做這樣:

create or replace view_name 
as 
select col1, col2, 'schema1' as schema_name 
from schema1.table 
union all 
select col1, col2, 'schema2' 
from schema2.table 
union all 
select col1, col2, 'schema3' 
from schema3.table 
... 
+0

謝謝!我不能相信我忘了只是這樣宣佈。我當時的想法是,當我的數據庫管理員無法解決問題時,情況變得更加複雜。 – ecfitzgerald

相關問題