Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

updating the data from one schema to another schema

969952Nov 29 2012 — edited Nov 30 2012
Hi All,

I have schema called SCOTT. In this I have a table Called EMP. The structure of EMP is as follows.
Create table EMP
(
ENO   Number,
ID      Varchar2(20),
PAN    VARCHAr2(20),
name  varchar2(20),
location  varchar2(20),
zip    number (8),
mailid   number(8),
Apartment varchar2(20),
roomno    number(8),
corierid  number(8),
corier_person_name  varchar2(30),
Status  varchar2(1)
);
i have a view EPM_VW in some other schema SYS which is created on 5 tables having related data to EMP table. Now my requirement is if am doing any modifications like INSERT/Update/Delete or any thing on EMP table in SCOTT it should be effectting immediately on the VIEW. Can you please give me your ideas? and don't want to see any NULL values for any columns.. we can define defalut values instead of null.

Thanks.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 28 2012
Added on Nov 29 2012
31 comments
5,428 views