Viewing 15 posts - 9,076 through 9,090 (of 22,214 total)
If you do a search in the scripts section here on SSC I'm pretty sure there are one or two T-SQL scripts that can do some compares. But they're seriously...
January 14, 2014 at 3:52 am
dbassassin (1/13/2014)
I read at brentozar.com:
http://www.brentozar.com/blitz/jobs-owned-by-user-accounts/
http://www.brentozar.com/blitz/database-owners/
So would you recommend striving towards not using SA (possibly even renaming/disabling it), and creating new accounts that are least privilege for specific purposes?
I've always setup...
January 14, 2014 at 3:48 am
mxy (1/13/2014)
January 14, 2014 at 3:46 am
A linked server isn't direct. It's a hop away from the server. Direct would be to open a connection to the second server from the app code. But that's a...
January 13, 2014 at 3:20 pm
But the deadlocking must be occurring in and around that table. You need to concentrate on the queries that are accessing that table. It has to be the one associated...
January 13, 2014 at 3:12 pm
Alan.B (1/13/2014)
I took a quick look at this and there does appear to be a lot parameter sniffing but there's a lot of other problems too.
I'm confused. Please let...
January 13, 2014 at 3:10 pm
Not sure why you're getting the error without seeing more about how the code, your servers, the connections between them are all configured. But, you are using distributed transactions because...
January 13, 2014 at 12:47 pm
Sean Lange (1/13/2014)
January 13, 2014 at 10:55 am
If you're seeing one set of behavior from SSMS and a different one from SSRS, the possibility could be bad parameter sniffing, but, the way to address that issue is...
January 13, 2014 at 10:53 am
Deadlocks are a performance issue. It's all about the ability of transactions to clear prior to arriving at a deadlock situation. From the sounds of things, you've probably been borderline...
January 13, 2014 at 7:28 am
Again, I'm with Gail. I couldn't even guess. It could be almost anything from bad parameter sniffing to problematic code to missing/incorrect indexes to one query moving a lot more...
January 13, 2014 at 6:28 am
I've been using a 3rd party tool to do that for the last 15 years. Actually, I liked their tooling so much, I went to work for that company about...
January 13, 2014 at 5:04 am
Yep. That's my understanding too. If you need to have a large number of developers using Microsoft tooling, I'd suggest contacting Microsoft directly and negotiate an MSDN license for your...
January 13, 2014 at 4:58 am
Like Gail says, T-SQL is T-SQL. Dynamic T-SQL will prevent some levels of code reuse which can lead to increased CPU use as more and more queries have to go...
January 13, 2014 at 4:57 am
If it's asking for a serial number, you've gone past the 14 day free trial. You can contact sales and request an extension. Otherwise, you'll need to purchase the software.
January 13, 2014 at 4:53 am
Viewing 15 posts - 9,076 through 9,090 (of 22,214 total)