Viewing 15 posts - 31 through 45 (of 98 total)
You cannot. Dont try killing the SPID - you may end up with a corrupt database(although SQL Server will try to respawn the rollback process).
December 12, 2012 at 1:02 pm
No - we would not want to supply individual query hints. I would shy away from second guessing the optimizer with any sort of query hint - Index / join...
December 12, 2012 at 10:54 am
patrickmcginnis59 (12/12/2012)
December 12, 2012 at 9:52 am
🙂 Thank you for the replies. The code unfortunately, is confidential. However, it would still be too complex even if I could post it. This is part of the code...
December 12, 2012 at 9:16 am
You seem to have a fairly decent plan, given that you have a range type query(date based). I also see that it was a sub second response for 8 rows...
December 11, 2012 at 2:38 pm
My guess would be that the BULK INSERT operation is serial and with a distributed switch the packets are being routed through different hosts, some of which may be...
December 7, 2012 at 9:11 am
Too generic and brief a description. Please provide more details of a specific issue. For instance:
What is the performance issue ? You have to expect some overhead with tables...
December 7, 2012 at 8:48 am
They're not indexes - they're column level statistics. They are created automatically by the query processor, and are linked to the table stats. I cannot imagine why you would ever...
December 7, 2012 at 8:42 am
if you mean on user tables, SQL Server does not generate system indexes on user tables. It does create statistics though. Maybe you mean that ?
December 7, 2012 at 8:08 am
You cannot. What they probably mean is that you attach their database and run somee script(possibly a part of the vendor's install process), which will migrate the data from their...
December 6, 2012 at 9:11 am
fluffydeadangel (12/5/2012)
December 5, 2012 at 10:12 am
If you have a clustered index on this table, maybe you want to drop all the non clustered indexes first, rebuild the clustered index and then recreate the non clustered...
December 5, 2012 at 9:01 am
You definitely want to defrag this table. However, the approach would depend on several factors like what is the downtime you can afford, whether this is a DW table which...
December 5, 2012 at 8:10 am
Your code seems to be incomplete. I can see a begin try ... but no end to the try block, and no catch block either. A simple fix would be...
December 5, 2012 at 7:51 am
Viewing 15 posts - 31 through 45 (of 98 total)