Forum: Oracle Feb 16th, 2009 |
| Replies: 2 Views: 677 here is some pl/sql code that gives you an idea I hope that would help
declare
a1 varchar2(255);
b1 varchar2(255);
a2 varchar2(255);
b2 varchar2(255);
qry varchar2(4000);
cursor cr_a is... |
Forum: Oracle Nov 5th, 2008 |
| Replies: 2 Views: 1,223 you need to create a sequence. As you can guess this is an object that gives you numbers from sequence. then you should get next value from sequence. so you will always have different pk. here is a... |
Forum: Oracle Oct 24th, 2008 |
| Replies: 2 Views: 2,919 Hi! you are calling local variable the way you should call bind variables. so oracle things your variables are bind variables. you should not use ':' sign before variable names. anyway you should... |