I am trying to automate execution of few TOAD based queries from the Command line. I'm using:
Toad.exe -c schema/pwd@myOracleDB -f C:\temp\sample.sql /exec
On running this, TOAD opens up and the SELECT query in sample.sql is run. Please suggest some means by which I may specify on the command line itself that I want the output dataset saved as some "mypath\myoutput.xls".
TOAD help does explain exporting reports via command line, but that seems to involve setting up a formatted report or some apps at the Automation Designer within TOAD first. I'm trying to avoid that path as I know very little on this.
Thanks, Somdeb
I just took a look and the steps should generally be the same for all versions of Toad with the Automation Designer.
So now you have an app that can be later executed by command line, from within Toad, or even scheduled using the Windows Task Scheduler. To execute the app from command line you would issue the following command. In this example my action was named "Export Dataset1" and it is located in the "App1" app.
You can also execute the app as a whole using this command.
You mentioned having a few queries to export. If you add multiple export dataset actions to one app then you can run the app as a whole and get all of the results, or create a new app for each query if you don't want to run all at the same time, or add them all to the same app and execute each action individually using the first command I've shown above. The organization is all up to you.