I have a query. Say in a notepad( D:\SQL.txt) I have 100 commands written in it
UPDATE sal SET sal= sal+3000
select * from ..................
insert into table tab_name values(........)
insert into table tab_name values(........)
insert into table tab_name values(........)
.........so on

Is there any SQL query like that if I ran it by provide the path ( D:\SQL.txt) of the notepad in the query itself it will execute one by one command from the notepad.
If it is not there in the SQL can I do it in Oracle DB or DB2.

Recommended Answers

All 5 Replies

Guys any update on this??????????????

use this MySQL command


LOAD DATA INFILE 'path/to/text/file'

IGNORE INTO TABLE mytable;

sorry,,,
the above two are for inserting the data from notepad to mysql table...
please ignore them...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.