Viewing 15 posts - 286 through 300 (of 518 total)
I use Simple for dev/qa databases because there really is no need for point in time recovery.
Rule of thumb is if you do not need PIT recovery, and you are...
September 29, 2010 at 2:28 pm
You're essentially doing the same thing. Whether or not you load it into memory first, SQL will still pull all data into the cache..I'd be willing to bet you'd have...
September 29, 2010 at 8:58 am
Try adding a case statement so it only filters it if there is a comma..here is lowell's code modified a bit.
With MySampleData as
(
SELECT 'Support Centres , Miscellaneous SC' As TheName...
September 29, 2010 at 8:50 am
Both DTC and Quorum should have the drive as a dependency, so I'm not sure how they're pointing to the same disk if they're in different groups. If the dependency...
September 29, 2010 at 8:35 am
I've done something similar in the past by just setting a flag on a table, and then putting the entire code into an If statement - if the flag is...
September 29, 2010 at 8:31 am
If you already have a cluster, I would create a reporting instance on the other node and set up either just transactional replication, or asynchronous mirroring and create a database...
September 28, 2010 at 3:55 pm
Thanks Ed - that did it. I'm using SSMS 2005 (installed at the same time as RS) directly on the report server, so it's not just an SSMS 2008 issue...
September 28, 2010 at 3:53 pm
Please don't cross post
Direct all replies to: http://www.sqlservercentral.com/Forums/Topic988513-146-1.aspx
September 28, 2010 at 3:50 pm
CirquedeSQLeil (9/28/2010)
I presume that is after you removed the clustered index. Run that query tomorrow prior to removing any indexes.
The dbcc showcontig with tableresults output he posted earlier has...
September 28, 2010 at 3:47 pm
The stored procedure gets compiled at run time (and then cached), the same as running individual statements. There should be no difference in performance between the two, or at least...
September 28, 2010 at 3:36 pm
Here's something that will do the trick..but there's a few caveats.
Right now it only works on jobs that are scheduled either once per day, or at an X interval of...
September 28, 2010 at 3:23 pm
Nope..not easily anyway. You could get the schedule interval and try to calculate from that..but honestly I think that's way, way more work than it's worth. Actually that would be...
September 28, 2010 at 10:38 am
Yes.
Shut down the passive node, upgrade, move SQL to it and test. If there are any adverse effects, or bad ram/etc, just fail it back and take the new ram...
September 28, 2010 at 9:11 am
Thanks for keeping us updated. That's really odd behavior that it continues to show all of that space being used while it has a clustered index, 0 rows, no forwarded...
September 28, 2010 at 8:45 am
I'm a little confused.
Do you mean you want your results to be:
agentcode agentname
1 Nolrick1
Or does...
September 28, 2010 at 8:43 am
Viewing 15 posts - 286 through 300 (of 518 total)