Oracle Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesOracle Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old April 8th, 2004, 06:39 AM
JackDaniels JackDaniels is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Posts: 1 JackDaniels User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Autoincrement in Oracle, (Bit of a problem, Help please!)

I have a customer table that I have created in Oracle. This is linked to a web page via cgi script. Which inserts customer details from a HTML form to an oracle database.

The details cannot be inserted without customer ID. This customer ID needs to be auto_incremental. How do I make the cgi or the database auto_increment a customer number.

Cheers

JackD

Last edited by pabloj : April 8th, 2004 at 07:41 AM.

Reply With Quote
  #2  
Old April 8th, 2004, 07:10 AM
SeaBird505 SeaBird505 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2004
Posts: 25 SeaBird505 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 54 m 50 sec
Reputation Power: 0
One way is to user oracle sequence,

Create Sequence seq_name increment by 1 start with 1 nomaxvalue nocycle nocache;

then,

Create or replace trigger trig_name before insert on customer for every row
declare
a number(7);
begin
select seq_name.nextval into a from dual;
:new.CustID = a;
end;
/



Alternatively, code the above trigger as
select max(CustID) into a from Customer;
:new.CustID = a + 1;


Now, just forget inserting CustID for new records,

Regards, SeaBird.

Reply With Quote
  #3  
Old April 8th, 2004, 07:40 AM
pabloj's Avatar
pabloj pabloj is offline
Modding: Oracle MsSQL Firebird
Dev Shed God 6th Plane (7500 - 7999 posts)
 
Join Date: Jun 2001
Location: Outside US
Posts: 7,707 pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level)pabloj User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 2 Months 2 Weeks 6 Days 2 h 38 m 50 sec
Reputation Power: 259
Please use descriptive subjects in your posts!

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesOracle Development > Bit of a problem, Help please!


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway