Step 1. Create a sql file (proc.sql) and palace it here C:\SqlFiles\01_database\proc.sql
create procedure procName
as
begin
select * from DimProduct
end
Step2. Create a sql file(proc1.sql) and place it here C :\SqlFiles\proc1.sql
create procedure procName1
as
begin
select * from DimProduct
end
step3.Create a BatchCommand file(ExecuteSqlFiles.bat) with following text in it and place it here C:\SqlFiles\ExecuteSqlFiles.bat
for /R %%X in (*.SQL) do SQLCMD -S Server -d Database -U UserID -P Password -I -i "%%X" >> ResultScript.txt
Step4. Run the ExecuteSqlFiles.bat (i.e by clicking on it)
A file (C:\SqlFiles\ResultScript.txt) if not exist is created and the errors encounterd while executing the sql files is written to the file.