vote up 1 vote down star
1

Is there any way to have a Windows batch file directly input SQL statements without calling a script? I want the batch file to login to SQL and then enter in the statements directly.

EDIT: I'm using Oracle v10g

flag

The RDBMS and version that you are using will probably make a big difference here. – Tom H. Dec 23 '08 at 19:46

5 Answers

vote up 2 vote down check

For a single command you can use this trick:

echo select * from dual; | sqlplus user/pw@db
link|flag
vote up 2 vote down

Short answer: No. Batch files by themselves can't do this.

Long answer: You may be able to come close, depending on which kind of database server you're using, and what the capabilities the commandline client provides.

What kind of database server are you using? Oracle, mySql, Sybase, Microsoft, Terradata, ???

For example, with a Sybase database, you can use the isql commandline client to run from a batch file:

isql -S server -D database -U user -P password -i script
link|flag
vote up 2 vote down

To run something on SQL server 2005/2008, you could use sqlcmd command line utility. sqlcmd -h prints the list of switches.

link|flag
vote up 1 vote down

You could use sqlcmd (for sql server) or System.Data.Odbc.OdbcCommand from powershell.

link|flag
vote up 0 vote down

The odbc command of the outwit tool suite allows you to run select statements on any database for which an appropriate ODBC data source has been defined.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.