Hello every one ,
how to write an (procedure (or) trigger) which would enable me to copy the contents of one table to an another
Table structure: oracle version is 9i:
orginal table:
create table temp(
empno varchar2(5),
name varchar2(40));
back up table:
create table temp_bakup(
empno varchar2(5),
name varchar2(40);
);
Expecting your replies,
Arun..
how to write an (procedure (or) trigger) which would enable me to copy the contents of one table to an another
Table structure: oracle version is 9i:
orginal table:
create table temp(
empno varchar2(5),
name varchar2(40));
back up table:
create table temp_bakup(
empno varchar2(5),
name varchar2(40);
);
Expecting your replies,
Arun..
Comment