u can execute queries in sybase thru shell scripts as
open one file using vi editor as
vi filename
isql -Uuser_name -Ppassword -Sserver_name
sqlstatement.........
go
....................
go
save these statements in ur file
and then execute as
sh filename.sh
Quote:
|
Originally Posted by abhinavTCS
how do i execute sql queries thru shell scripts???
|