hi,
I have one script which is running fine out side oracle package/procedure.
example
delete table;
commit;
insert into table1(a,b,c)
select
a,
b,
a||b||e||f||d|| as c
from table2);
commit;
the concatenation is not working properly when I am putting this script inside a procedure which is a part of package. I am using Oracle 10g.
I have one script which is running fine out side oracle package/procedure.
example
delete table;
commit;
insert into table1(a,b,c)
select
a,
b,
a||b||e||f||d|| as c
from table2);
commit;
the concatenation is not working properly when I am putting this script inside a procedure which is a part of package. I am using Oracle 10g.