I want to create table from a script on sybase-iq. Script table.sql contains:
create table abc
(
id int
)
go
I run the script command
isql -U*** -P*** -S*** -D*** -itable.sql -oout.txt
I'm sure connection parameters are ok. Name of script is correct too.
But It doesn't work, script did not create the table and I have not any errors in output file.
Thanks in advance for your advice.
PX