|
| Total Answers and Comments: 3 |
Last Update: March 17, 2009 Asked by: smitesh shinde |
|
| | |
|
Submitted by: Dinesh
Hi, If u r having sequence name is dept_seq create seqeunce dept_seq start with 10 increment by 10 no chache no cycle Then u can use this sequence like this insert into dept(deptno, dname, loc) values(dept_seq.nextval, <any dname>, <any location name> try this one.. Regards Dinesh
Above answer was rated as good by the following members: mittu.jangid | |
April 10, 2006 02:47:07 | #1 |
| Dinesh |
|
|
RE: how to apply the generated sequence on the tables?...
| Hi If u r having sequence name is dept_seq create seqeunce dept_seq start with 10 increment by 10 no chache no cycle Then u can use this sequence like this insert into dept(deptno dname loc) values(dept_seq.nextval <any dname> <any location name> try this one.. Regards Dinesh |  | | Is this answer useful? Yes | No | 1 0 | Overall Rating: +1 |
|
| |
Go To Top
|