Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
oracle sql insert statement
Name: fleetmack Date: July 26, 2005 at 08:33:29 Pacific OS: 8i CPU/Ram: 3.2/gig
Comment:
i have an excel file i'm converting to an oracle temp table. i have a file of 900 last names i need in a table ... 1 field called "last_name" ... i figured this'd be simple.
create table temp_last_name as (last_name varchar2(80) null); commit;
so then i go to do the insert ....
insert into temp_kim_names values ('Aabak', 'Adams'...
'Zephyr'); commit;
...and I get an "ORA-00913: Too Many Values" error. Now I don't get why this is when there's only one column ... that error is for when you're putting values into several columns. How can i populate this table?
Summary: Please help !!! I am trying to complete an online form for replys from users The online form is meant to insert data retrieved from the users into a Ms Access Database's table (the db version is 2000...
Summary: Hi, I also have question about SQL INSERT. I want to insert static values with every element of another table that doesn't already exist in the table. for instance, i have col1, col2, and col3 in tab...
Summary: There may be a more straitforward way, but you could just do a select from the TPTYSUBACC table for all of the records meeting your criteria, then create a procedure to loop through all of the records...