Viewing 15 posts - 811 through 825 (of 1,248 total)
Theoretically, the two backups can start at precisely same time. But your two servers may not be precisely synchronized. You may have to use the STOPAT clause in your restore.
January 14, 2008 at 7:24 pm
Do you have many scripts running on your cluster? Do these scripts create many objects, such as table variables and ..., ? If so, are they destoyed after usage?
10-15% CPU...
January 14, 2008 at 7:13 pm
You need to join your one table with another in your WHERE clause.
January 14, 2008 at 7:00 pm
It happened to me before. How did you move your DTS to the new server?
You may try different approach to move.
1. Save As from the old server;
2. Save as a...
January 14, 2008 at 6:57 pm
Here are my cents.
When using database maintenance plan, you can find there is a check box for verification after backup. You can use it to check integrity.
You can add a...
January 14, 2008 at 3:31 pm
Here are my two cents.
1. Did you reboot your machine?
2. Does the registry for SQL 2005 still exists?
January 14, 2008 at 3:17 pm
Run
sp_configure
you can see "remote access"
Turn it on (set the value to 1 to enable the remote access).
January 14, 2008 at 2:23 pm
Generally speaking,
CPU usage
Free disk space
Failed jobs
...
You may turn on other counters when such an isssue comes up.
January 14, 2008 at 2:17 pm
In my memory, SQL 2000 backup a database first and then delete old one if the backup is successful by default.
You can remove the old backup files using xp_cmdshell command...
January 14, 2008 at 1:56 pm
Did you really include the two percentage signs?
January 14, 2008 at 1:51 pm
Couple suggestions.
1. Make your transactions as short as possible.
2. Include NO_LOCK clause in your SELECT statement (or change your isolation level in the SELECT statement).
January 14, 2008 at 1:31 pm
Here is an alternative.
Create your new database on your target server, then, migrate your data using DTS.
Hopefully, it will be helpful.
January 11, 2008 at 8:37 am
Did you read the following discussions? Hopefully, it will be helpful.
January 10, 2008 at 8:24 pm
For the shared locks, you may modify your queries with no_lock or the isolation level.
January 10, 2008 at 3:52 pm
It is related to registry.
Here is one link. Hopefully, it is helpful.
January 10, 2008 at 3:49 pm
Viewing 15 posts - 811 through 825 (of 1,248 total)