INSERT INTO with GUI - insert record greyed out [message #599652] |
Mon, 28 October 2013 01:11 |
|
rc3d
Messages: 213 Registered: September 2013 Location: Baden-Württemberg
|
Senior Member |
|
|
Hi
I wish to make this simple statement with Toad GUI
INSERT INTO EXCLUDE_xxx
VALUES ('xxx',
'xxx',
'xxx',
'xxx',
SYSDATE);
Insert record is greyed out. Howto insert new rows with Toad (click click)?
|
|
|
|
|
|
|
|
|
|
Re: INSERT INTO with GUI - insert record greyed out [message #603564 is a reply to message #599652] |
Tue, 17 December 2013 06:49 |
|
gauravgautam135
Messages: 33 Registered: December 2013
|
Member |
|
|
rc3d wrote on Mon, 28 October 2013 01:11Hi
I wish to make this simple statement with Toad GUI
INSERT INTO EXCLUDE_xxx
VALUES ('xxx',
'xxx',
'xxx',
'xxx',
SYSDATE);
Insert record is greyed out. Howto insert new rows with Toad (click click)?
If you are looking into inserting data in any of your table in TOAD via click procedure:
You can write down your table in editor and press F4 to open table structure. There click "data" tab to see your data and then "+" plus sign there to insert new row.
Or you have large number of column and your new row is different in only one column from existing one, then you can select that existing row from data tab and then right click there. Choose "Duplicate Row" there. Change your desired column of duplicate row.
Note: Please maintain primary key definition while doing this.
|
|
|