Viewing 15 posts - 1,651 through 1,665 (of 5,103 total)
You should either doit from client side code (the loop) or distribute your scripts to the master ( using sp_* ) and running then your stuff locally by looping through...
September 14, 2007 at 2:57 pm
September 14, 2007 at 2:48 pm
Both. At restore time you won't be able to execute if there are connections to the DB.
September 14, 2007 at 2:44 pm
Blocking is a "normal" thing to happen on a very concurrent database as long as it does not goes out of control and starts giving you timeouts!
On the other hand...
September 14, 2007 at 2:43 pm
Apparently someone is UPDATING STATISTICS on your database ![]()
September 14, 2007 at 2:35 pm
If you can quiesce *all* replication agents.
Backup and Restore WITH MOVE can be used!
September 14, 2007 at 2:32 pm
It is an outage, period. If you can't do your job it must be counted as an outage.
Where I work people (including me) are crazy about all sorts of "metrics"....
September 14, 2007 at 8:14 am
I recommended DatabaseID because most event support it. Database Name on the other hand is not supported by many event types. It is not difficult to tell which database is...
September 13, 2007 at 2:11 pm
The Problem is that [A-Z] != [ABCDEFGHIJKLMNOPQRSTUVWXYZ] When COLLATE is used
[A-Z] apparently means: AaÁáÀàÄäBbCcÇç ... wWxX... When COLLATE is used.
NOTE: I can't back this up with any...
September 13, 2007 at 1:03 pm
select year(SuggestionDate) as YearOfSuggestion, count(*) as Total
from suggestions
group by year(SuggestionDate)
order by year(SuggestionDate)
September 13, 2007 at 12:41 pm
>>> It was full of errors. <<<
Which Errors ?
September 13, 2007 at 12:40 pm
Start by using the Performance Tuning Trace template, include DatabaseId filtering by Number of Reads and Duration.
September 13, 2007 at 12:28 pm
Viewing 15 posts - 1,651 through 1,665 (of 5,103 total)