Running .sql script in VS

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

Someone gave me an SQL script to run against my SQL Express database. It
creates some tables, etc...

What is the best way to run this script in the Visual Studio interface?

Thanks.
 
in server explorer, expand the database and right click on the tables icon,
select new query, copy and paste the contents of the .sql file and execute(F5)
 
Back
Top