Viewing 15 posts - 91 through 105 (of 340 total)
If the database already exist in the new server and if you wish to overwrite it then you can make use of the below command,
Restore database dbname from disk='Path\filename.bak' WITH...
May 17, 2008 at 11:43 pm
[font="Verdana"]Ensure that you have applied Sql Server 2005 SP2 for management studio as well.
Open SSMS
Goto Help-->About in SSMS
There you can get the version of "Microsoft SQL Server...
May 15, 2008 at 2:28 am
You can check the job activity monitor which will display all the details..
May 15, 2008 at 12:13 am
No it is not possible because to restore system databases you need to have the same build and same edition. Sometime back I tried this in Sql 2000 enterprise edition...
May 15, 2008 at 12:12 am
Right click on the job and click view history. Refer this link for more info,
May 14, 2008 at 9:46 am
Check the job history for some clues and also check if the job owner has permissions to other databases.
May 14, 2008 at 7:32 am
Thanks Steve thats absolutely right.
My only concern is that if somebody searches in google for an issue wrt to Sql Server one among the solution is from this website. What...
May 13, 2008 at 5:58 pm
Are you able to connect to your destination server from your source server using SSMS or Query analyzer. You can check the port number in the Sql Server configuration manager...
May 13, 2008 at 10:35 am
Please confirm if you have enabled remote connections for the destination server which you are trying to query. Also check if you have created proper aliases for connecting to the...
May 13, 2008 at 10:03 am
If your database is highly critical you need to go for High Availability mode which requires witness server and facilitates automatic failover.
May 13, 2008 at 7:38 am
The below command might work and will overwrite the existing database, ensure that Sql service account has permissions to that network drive. It might take some time and resource intensive....
May 12, 2008 at 6:59 pm
You need to check the Sql Server error log where there will be an entry for the success or failure of backup. Also check the event viewer for any information,
May 12, 2008 at 6:55 pm
Your only option is to rebuild the system databases in order to change the server level collation. Before commencing it you can script all the logins using the below...
May 12, 2008 at 6:52 pm
In order to change the server level collation you need to rebuild the system databases. For changing database collation you can make use of alter database statement.
May 12, 2008 at 6:39 pm
Checkpoints flush dirty data and log pages from the buffer cache of the current database, minimizing the number of modifications that have to be rolled forward during a recovery.
It happens...
May 12, 2008 at 10:29 am
Viewing 15 posts - 91 through 105 (of 340 total)