解决:数据库创建表视图
create or replace view dual as
select NULL::"unknown"
where 1=1;
alter table dual owner to 连接用户名;
grant all on table dual to 连接用户名;
grant select on table dual to public;
解决:数据库创建表视图
create or replace view dual as
select NULL::"unknown"
where 1=1;
alter table dual owner to 连接用户名;
grant all on table dual to 连接用户名;
grant select on table dual to public;