导入数据库dmp文件,需注意视图中带原数据schma

1.从其它库中导出数据dmp文件。
2。导入这个dmp到其它schma数据库中,出现view编译出错。见view代码:
create or replace view view_atf_contract as
select b.name,c.name sellerName ,a."ID_ATF_CONTRACT",a."DEBTOR_CID",
a."INV_SELLER_CID",a."PRINCIPAL",a."BILL_DATELINE",a."VALID_FLG",a."VALID_THRU_DATE",
a."CRT_TIME",a."UPD_TIME",a."FEE_TYPE",a."FEE_RATE",a."SETTLE_PERCENT",a."BILL_PLAN",a.force,a.stop_time,a.biz_type,
a.pay_plan,a.str_pay_time,a.fee_prop,a.system_flag,a.auto_comfirm_flag,a.auto_pay_flag,a.chk_creditor_amount_flag,a.auto_audit_flag,
a.fn_source_flag
from atfa.T_ATF_CONTRACT a, atfa.T_ATF_DEBTOR b,atfa.T_ATF_INV_SELLER c
where a.DEBTOR_CID = b.CID and a.INV_SELLER_CID=c.CID
with read only;
其中红色字体为上个数据的schma,然而导入其它数据中,schma不一样导致编译出错。
3。除了视图,其它的想type之类的需要检查。

你可能感兴趣的:(C++,c,C#)