Viewing 15 posts - 316 through 330 (of 345 total)
What are the specific errors appearing in the logs?
November 29, 2007 at 6:31 pm
Haven't used CV, but we are using a similar product called WanSync for DR. Same sort of thing - monitors block-level activity. Rebuilding indexes would create a lot...
November 29, 2007 at 12:58 pm
Luiz (11/29/2007)
Guys,Thank you for your answers.
Clarifying: all those queries are in a stored proc.
How do I clear the procedure cache?
DBCC FREEPROCCACHE or DBCC FREESYSTEMCACHE. See BOL for details on...
November 29, 2007 at 12:53 pm
Potentially you could use any port over 1024 that isn't [likely to be] used by anything else. You may be better off using a port above 49152. See...
November 29, 2007 at 12:42 pm
The principal will continue to accept connections and process transactions if the mirror is down. The transactions will be queued in the principal's transaction log until communication with the...
November 28, 2007 at 9:31 pm
I would just reset the NTFS permissions, either by forcing the permissions from the parent folder to flow down to the children or by altering the permissions on the files...
November 28, 2007 at 9:06 pm
Are the I/Os caused by read or write activity? Is there any pattern to the occurrences? Is it definitely SQL Server & not some other rogue process (e.g....
November 28, 2007 at 9:01 pm
I see that @aDatabaseName is used with RESTORE DATABASE and MOVE. Are the database name & logical name of the data file actually the same in the original database?...
November 28, 2007 at 8:10 pm
I have encountered this before, but I can't remember the exact solution from memory. It's something along the lines of something locking the performance monitor counters before SQL Server...
November 28, 2007 at 8:02 pm
[nitpick] Why do 'select *'? Given you are just dropping the databases, why not do 'select name' instead? Adhere to principal of 'only get what you really need'...
November 28, 2007 at 7:46 pm
I thought they were already in a stored proc?
Maybe try updating your statistics and/or clearing the procedure cache.
November 28, 2007 at 7:38 pm
Timothy Ford (11/28/2007)
November 28, 2007 at 7:36 pm
I haven't come across any magic bullet. Everything I have read says things along the lines of 'look at performance counters x, y, z and compare with values a,...
November 28, 2007 at 7:22 pm
Internally, SQL should be using the login SID, so anything referencing the sa login should reflect the new name automatically.
If you have any custom procedures or views that reference the...
November 28, 2007 at 7:08 pm
There's a few things in performance monitor you can check. The most obvious is Memory: Pages/sec. If this is high, then generally more memory is required (I've seen...
November 28, 2007 at 6:38 pm
Viewing 15 posts - 316 through 330 (of 345 total)