在表上创建具有相同名称的多个模式中的视图

时间:2013-01-18 13:02:06

标签: postgresql

我正在尝试在表中创建一个视图(或每个模式中的视图,无需修改),该表存在于具有相同名称的多个模式中

create schema company_1;
create schema company_2;
...
CREATE TABLE company_1.orders
(
  id serial NOT NULL,
  amount real,
  paid real,
  CONSTRAINT orders_pkey PRIMARY KEY (id )
)
WITH (
  OIDS=FALSE
);

CREATE TABLE company_2.orders
(
  id serial NOT NULL,
  amount real,
  paid real,
  CONSTRAINT orders_pkey PRIMARY KEY (id )
)
WITH (
  OIDS=FALSE
);

....

在没有为每个视图指定架构或指定当前架构的情况下,在表订单上创建视图的正确方法是什么?

我需要和未能得到的是

CREATE OR REPLACE VIEW
public.full_orders AS
SELECT id, amount FROM orders;

CREATE OR REPLACE VIEW
company_1.full_orders AS
-- company_2.full_orders AS
-- company_n.full_orders AS
SELECT id, amount FROM current_schema.orders;

使用postgresql 9.2.2

编辑:我的方式:

CREATE VIEW company_1.full_orders AS
SELECT id, amount FROM company_1.orders;

在讨论的模式副本here我正在执行此操作

FOR src_table IN 
   SELECT table_name 
   FROM information_schema.TABLES 
   WHERE table_schema = source_schema AND table_type = 'VIEW'
LOOP
    SELECT view_definition 
    FROM information_schema.views 
    WHERE table_name = src_table AND table_schema = source_schema INTO q;
    trg_table := target_schema||'.'||src_table;
    EXECUTE 'CREATE VIEW ' || trg_table || ' AS '||replace(q, source_schema, target_schema);
END LOOP;

仍在寻找更好的解决方案......

1 个答案:

答案 0 :(得分:2)

用简单的观点来做是不可能的。视图在创建时记录基础表的标识,因此它不受以后完成的模式设置的影响。

您可以使用动态SQL使用set-returns函数执行此操作,然后将其包装到视图中。但我认为这不是一个好的解决方案。

我会像你一直在为视图创建准重复项,并增强我的部署脚本以使它们保持最新状态。