I was using below code(as .bat file) to recursively execute the bulk of .sql files, having SQL SERVER 2008 R2 as backend:
for /R %%G in (*.sql) do sqlcmd /S [Database Server] /d [Database name] -U [Username] - P[Password] -i"%%G"
pause
Now, i i have to execute bulk of sql scripts but this time Sybase as backend.
Please suggest me what modification should i do to make it run for 'Sybase'!!