How can I automate process of running all SQL scripts from given folder ?
Write a Windows script, use the FOR construct to loop through your files and use the SQLCMD utility to execute each file.
for %f in (c:\MySQLScripts\*.sql) do sqlcmd -i %f