Viewing 15 posts - 61 through 75 (of 280 total)
I'm on my phone, so I may not be reading this right, but it looks like both spids have a Tran count of 2, so could there be other tsql...
August 30, 2012 at 4:00 pm
Kerberos doesn't work with dns aliases. You have to use A records, not CNAMES.
August 23, 2012 at 5:54 pm
Some advice for the OP, if you can take down your SAN by slamming it too hard, you should consider reducing your hba queue depth to limit the number of...
August 22, 2012 at 10:47 pm
I'm going to assume that the new instances will be on new hw. if so, you'll more than likely have lots of cpu to spare. IO is harder...
August 22, 2012 at 10:35 pm
Typically, you should release resources as soon as you are finished with them.
August 22, 2012 at 10:27 pm
Designate one db the "owner" of the table, and force all inserts, updates and deletes to go there. Use a trigger and linked server to update the other tablein...
August 14, 2012 at 9:41 pm
1. Document current functionality of existing dts packages.
2. Write stored procedures to duplicate functionality.
Of course, it may be easier to recreate the dts packages as ssis packages, not stored procedures.
August 14, 2012 at 9:11 pm
A better option is to use a certificate signed stored procedure.
http://msdn.microsoft.com/en-us/library/bb283630(v=sql.105).aspx
August 10, 2012 at 11:03 am
Changing the max server memory forces invalidates the plan cache. Max server memory is a parameter that the query optimizer uses for evaluating plans. Different plans have different...
August 10, 2012 at 10:44 am
Jose Johnson (8/10/2012)
August 10, 2012 at 8:52 am
Ok, a couple of things:
1. Your code is not robust. You are not properly escaping your input. You MUST use QUOTENAME() to sanitize the input when doing string concatentation.
EXEC('CREATE...
August 10, 2012 at 8:49 am
CRC (8/10/2012)
site_idlocation_iddescription
0618a4 18a4
06...
August 10, 2012 at 8:14 am
SpringTownDBA (8/10/2012)
The difference in performance is due to either different plans, or blocking.Can you capture actual query plans from both the slow and fast executions?
Actually, now that I think about...
August 10, 2012 at 8:05 am
The difference in performance is due to either different plans, or blocking.
Can you capture actual query plans from both the slow and fast executions?
August 10, 2012 at 7:59 am
Viewing 15 posts - 61 through 75 (of 280 total)