Viewing 15 posts - 10,996 through 11,010 (of 22,214 total)
From what you described, it doesn't sound like you need a plan guid. Just add the query hint directly to the query.
Creating plan guides, every single bit of white space,...
April 26, 2012 at 4:57 am
You could use merge replication to ensure that the same data goes to all three servers, regardless of which one inputs the data. But that requires changes to your table...
April 26, 2012 at 4:52 am
If you're working in 2008 or better in SQL Server, I strongly recommend you use Extended Events. That's the least intrusive way to gather metrics. There's no GUI available unless...
April 26, 2012 at 4:48 am
You're getting deadlocks from your backup software? That's really not good. Contact the vendor. If they don't have an immediate fix, find another vendor. I have a suggestion on...
April 26, 2012 at 4:27 am
Monitoring the server generally means gathering different kinds of performance metrics. SQL Server comes with four tools that allow you to set this up on your own, Performance Monitor, Server-Side...
April 26, 2012 at 4:26 am
You will have to use T-SQL and set it up to execute in a dynamic manner as noted above. Use GETDATE() to get the date and time and format it...
April 26, 2012 at 4:20 am
Another topic shift:
WHOOP! I'm getting to publish my article on catastrophic data loss wherein I get to call companies out by name! Yippee! Includes one link to my favorite,...
April 25, 2012 at 11:07 am
Dev (4/25/2012)
April 25, 2012 at 10:57 am
Free pages isn't really a great performance counter for monitoring the server. It just indicates how the buffer manager is moving stuff around. You'd be better off looking at page...
April 25, 2012 at 7:27 am
Using NOLOCK can reduce blocking (and introduce all kinds of cool errors) but it doesn't eliminate resource contention. If you have other queries on the system that are using up...
April 25, 2012 at 7:19 am
manoj_lanser (4/25/2012)
I don't want that insert generate script.I want to see which insert query is used in inserting data into the table.
Totally different.
If the inserts have already happened, the only...
April 25, 2012 at 5:38 am
Agree with what everyone said regarding the clustered index on the ID column. I don't think it's the way to go.
As far as getting index scans goes, it really comes...
April 25, 2012 at 5:16 am
You can get a generated query. Within SQL Server Management Studio (SSMS) right click on the table and select "Script Table As" from the context menu. You'll see a second...
April 25, 2012 at 5:08 am
You'll get an error. Whether or not it stops the process, I can't say, not knowing what kind of code you have, error trapping, etc.
I would suggest that it's more...
April 25, 2012 at 5:04 am
Since that data type isn't supported in 2005, you need to get all the data to filter first on the 2008 server. Have you tried running the same query using...
April 25, 2012 at 5:01 am
Viewing 15 posts - 10,996 through 11,010 (of 22,214 total)