INSERT INTO [message #213441] |
Wed, 10 January 2007 15:47 |
pradkuamr
Messages: 29 Registered: November 2006
|
Junior Member |
|
|
Hi
I am trying to insert a record into a table which is already populated. When I ran
insert into TABLE(BEGIN_DT,END_DT,CREATE_DT,VERSION_DT,LAST_UPDATE_DT) VALUES (SYSDATE,SYSDATE, SYSDATE, SYSDATE, SYSDATE)
it is highlighting on INSERT word
|
|
|
|
|
Re: INSERT INTO [message #213446 is a reply to message #213444] |
Wed, 10 January 2007 16:10 |
|
ebrian
Messages: 2794 Registered: April 2006
|
Senior Member |
|
|
You need to replace <table_name> with the actual name of your table. For example,
insert into mytable (BEGIN_DT,END_DT,CREATE_DT,VERSION_DT,LAST_UPDATE_DT)
VALUES (SYSDATE,SYSDATE, SYSDATE, SYSDATE, SYSDATE);
|
|
|
|
|
|
|
Re: INSERT INTO [message #213487 is a reply to message #213479] |
Thu, 11 January 2007 00:14 |
flyboy
Messages: 1903 Registered: November 2006
|
Senior Member |
|
|
Quote: | Betting office is open!
|
I bet on NOT NULL constraint on column not specified in the INSERT statement.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: INSERT INTO [message #213646 is a reply to message #213479] |
Thu, 11 January 2007 12:36 |
joy_division
Messages: 4963 Registered: February 2005 Location: East Coast USA
|
Senior Member |
|
|
I don't know TOAD, so it is pure speculation, but maybe OP is just not connected to a database yet.
I am trying to come up with some pretty far fetched ideas as all the good ones are taken already.
I have a bad feeling we may never find the answer.
|
|
|
|
|
|
Re: INSERT INTO [message #213904 is a reply to message #213903] |
Fri, 12 January 2007 13:30 |
|
ebrian
Messages: 2794 Registered: April 2006
|
Senior Member |
|
|
joy_division wrote on Fri, 12 January 2007 14:29 | pradkuamr wrote on Fri, 12 January 2007 13:49 | I solved my issue
|
Well why don't you share it with us?
|
Yeah...there are a lot of bets on the line !!
|
|
|