Viewing 15 posts - 2,971 through 2,985 (of 5,394 total)
See if this article helps:
July 8, 2011 at 1:39 am
bipan (7/8/2011)
My understanding is if we applying sp3 directly then it will fix all bugs which were included in sp1 & sp2.
Confirmed. You don't need SP1 and SP2.
July 8, 2011 at 1:36 am
Based on your description, my vote goes to a clustered index.
Just to be sure, when you say "updated", you mean existing rows are updated or new rows are inserted?
July 8, 2011 at 1:35 am
I think you would have to use dynamic sql: (untried)
DECLARE @DatabaseName nvarchar(128)
SET @DatabaseName = 'model'
DECLARE @sql nvarchar(max)
SET @sql = '
SELECT
object_id AS objectid,
index_id AS indexid,
partition_number AS partitionnum,
avg_fragmentation_in_percent AS frag
FROM '+ @DatabaseName...
July 7, 2011 at 9:21 am
I am sure the implementation is very good, but I don't like re-inventing the wheel.
Why are you using a home maid procedure when there's Ola Hallengren's fine script[/url]?
Also,...
July 7, 2011 at 8:52 am
GilaMonster (7/7/2011)
Gianluca Sartori (7/7/2011)
July 7, 2011 at 8:26 am
If you don't want to pay for the overhead, you can disable the clustered index on the view and re-enable it with ALTER INDEX REBUILD before running the daily export...
July 7, 2011 at 7:49 am
Is resource governor configured?
July 7, 2011 at 7:33 am
You could:
A) Add some debug info to the stored procedure (log to a table or print and capture the output)
B) Trace the process with a server side trace
Probabyl you have...
July 7, 2011 at 7:29 am
BillyUnsy (7/7/2011)
Can linked servers get their nickers in a twist? (There is nothing showing up in the application or system logs on the server)
Unfortunately they can. Take a look at...
July 7, 2011 at 7:24 am
This is exactly what I usually do, except that I pause the node instead of removing it from possible owners.
July 7, 2011 at 7:05 am
Sumanta Roy (7/7/2011)
No, I dont find any proper match for the database name.
Take a look at Gail's suggestion, then.
July 7, 2011 at 6:28 am
Viewing 15 posts - 2,971 through 2,985 (of 5,394 total)