1

I am using VS 2005

I am new to asp.net i have a project created in asp.net c# which is using sql server express edition local database.

there is a app_data folder there is *.mdf file inside i can see it also i can browse the tables from it.

In app data folder i can see there are few .sql scripts

named CreateAllObjects.sql DeleAllData.sql EnableConstaints.sql

when i run project i found few procedures are required and their scripts exists in "CreateAllObjects.sql" but problem is i don't know in vs.net IDE how can execute these .sql scripts to create objects please help me??

Ben Robinson
  • 21,601
  • 5
  • 62
  • 79
d-man
  • 57,473
  • 85
  • 212
  • 296

1 Answers1

1

You need to have SQL Server Management Studio Express to run these scripts. When installed you can just double click and run these scripts on your databases. Cheers.

Zo Has
  • 12,599
  • 22
  • 87
  • 149