I have a folder C:\Scripts. In that folder I have 2 sub folders, Procedures and another Views. In the Procedures folder I have 2 files
proc1.sql
proc2.sql
in the Views table I have 2 files
view1.sql
view2.sql
I am trying to combine these files into one .sql file with the following batch file
Copy Procedures\*.sql proc.sql
Copy Views\*.sql view.sql
Copy proc.sql + view.sql Build.sql
The above is not working. When I run the Build.bat I don't see the Build.sql file. What am I missing?