|
|
Question : Sybase SQL Anywhere ISQL from command line
|
|
I want to execute ISQL.exe from the command line to execute a stored procedure. This is what I have:
c:\sqlany50\win32\isql.exe -c "ENG=test;DBN=Testdb;UID=User1;PWD=pass" -d "User1.TestStoredProcedure"
This works fine until it gets to the -d parameter. What do I need to be able to execute the SP that's in -d ? Is the -d parameter even correct?
|
Answer : Sybase SQL Anywhere ISQL from command line
|
|
I think there isn't a '-d' switch in SQL Any 5 ISQL. Use isql.exe -c "" "", where should be 'call User1.TestStoredProcedure'.
|
|
|
|