Link to home
Start Free TrialLog in
Avatar of rutgermons
rutgermons

asked on

oracle, sql developer, 10.2.0.3, loading batch inserts using oracle sql developer

folks

how do I load batch data (100s of inserts) at once using the oracle sql developer tool?

i was force to lelave my beloved toad behind and am a little stuck

all pointers will be much appreciated
r
Avatar of MikeOM_DBA
MikeOM_DBA
Flag of United States of America image


- connect to database
- File> Open> { browse and select sql file to execute }
- Once loaded, click on Run Script.
Avatar of rutgermons
rutgermons

ASKER

does this loadup all records i.e

i have 100s of records to upload at once?

have u an example?just wanna make sure i dont overlook anything!

tia

r
Yes, post an example...
insert into tablea(fielda)values('1');
insert into tablea(fielda)values('2');
insert into tablea(fielda)values('3');
insert into tablea(fielda)values('4');
insert into tablea(fielda)values('5');
insert into tablea(fielda)values('6');
ASKER CERTIFIED SOLUTION
Avatar of MikeOM_DBA
MikeOM_DBA
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial