Run MSSQL script from command line

Date: 2023-06-08
sqlcmd.exe -S ".\" -b -i ".\MySqlFile.sql"
USE [master]
GO
DROP DATABASE IF EXISTS [MyDatabase]
GO
78350cookie-checkRun MSSQL script from command line