Click here to Skip to main content
15,908,776 members

Comments by Member 11631705 (Top 2 by date)

Member 11631705 22-Apr-15 4:46am View    
1.Sorry for that,Try this One:
https://msdn.microsoft.com/en-us/library/vstudio/19x10e5c%28v=vs.100%29.aspx.

2. You can take a backup copy of your Database from your Local system and Restore it the Remote machine.

Step 1: Take a DB back up from your System.(You can do it from SQl server Management Studio)
Step 2: Install SQL server in the remote machine and restore the DB.

Step 3: Change the Connection string in the web.Config file.

Please follow steps to back up and restore the DB:

To back up a database
1.After connecting to the appropriate instance of the Microsoft SQL Server Database Engine, in Object Explorer, click the server name to expand the server tree.
2.Expand Databases, and depending on the database, either select a user database or expand System Databases and select a system database.
3.Right-click the database, point to Tasks, and then click Back Up. The Back Up Database dialog box appears.
4.In the Database list box, verify the database name. You can optionally select a different database from the list.
5.You can perform a database backup for any recovery model (FULL, BULK_LOGGED, or SIMPLE)....select FULL here

To restore a full database backup
1.Right click on the database you wish to restore, and select Tasks-->Restore-->From Database.
2.Select the "From Device:" radio button.
3.Select ... and choose the backup file of the other database you wish to restore from.
4.Select the backup set you wish to restore from by selecting the check box to the left of the backup set.
Select "Options".
5.Select Overwrite the existing database (WITH REPLACE)

Click OK.


Member 11631705 22-Apr-15 2:58am View    
1. To Create set-up:
Check this link out , Hope this can Help u
http://msdn.microsoft.com/en-us/library/19x10e5c.aspx[^]

2. How you are connecting to your Database in Local Machine?