Click here to Skip to main content
15,907,183 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have one WinForm Application which using MS-SQL server As Database.

Now of course Database i have created on my PC(Developer's PC) is not available on Client PC where i will install my Application.

Then what is the best criteria or practice to Add Database at Client PC's MS-SQL server.

or
any buddy can tell where could i find script of my database created using
SERVER EXPLORER Visual-Studio 2010 so i can directly execute it on Client PC?

So i can access it my Application.

Please Help.... Thanks.......
Posted

To generate the script:

Open the SQL Management Studio
right click on your database
Tasks -> Generate Scripts
in the dialog box press Next until asking where to save it
click the Advanced button
Look for the Types of data to script
Select Schema and data
Press OK and Next
Then the file has been generated.
It will generate your database with all the data.

Thanks..
 
Share this answer
 
in development pc, you can use Server Explorer to generate script to an text file

in client pc, use "sqlcmd" via command line to insert data in that text file

p/s: for me, i'm use "sqlcmd" command to export and import database :)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900