Viewing 15 posts - 7,891 through 7,905 (of 22,224 total)
I'm back where I was. I'd break it down into three tables, one to define the owner, one to define the competency and one to relate them to each other.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 26, 2014 at 3:30 am
I trust Perry on the structural side of things like this. If he says you literally can't do it, you probably can't. I'm pretty much in the camp of I...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 26, 2014 at 3:28 am
Generally, because of how SQL Server stores and retrieves data, it's a good idea on most tables to have a clustered index. Because of how clustered indexes are stored, it's...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 26, 2014 at 3:17 am
If they're low on space, yeah, I'd turn on auto grow, or maybe just go ahead and give them some head room now if you have the disk space to...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 26, 2014 at 3:13 am
Nice job figuring it out. And thanks for posting the solution so anyone else who finds the question knows what you did to solve it.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 3:58 pm
I agree with everyone else, make sure the backups are in place. I'd probably shut down & startup using PowerShell just because I could do all the servers at once.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 3:57 pm
Nuts, duplicate question. I said the same thing at the other location.
Please don't cross post. It just confuses conversations. Most of us look at multiple forums anyway.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 3:53 pm
I wouldn't put SSDT on a production machine at all. It's a development platform. It goes on your laptop or a shared desktop or something, not on production.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 3:52 pm
There are some minor improvements to code completion in the query window if that's the kind of thing you're looking for. They've also added some typing functionality that's useful. You...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 3:51 pm
Lynn Pettis (6/25/2014)
Really? Just because SQL Server setup defaults to a CI collation that makes it the "DEFAULT" collation?I give up.
Ha! Well, yeah, I suppose I would refer to...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 3:33 pm
Nope, the Agent doesn't do the backups, the SQL Server executable and service does. That needs the permissions.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 6:38 am
So to test it, try something like:
--run this in one query window
BEGIN TRAN
UPDATE TableX
SET ColA = 'SomeValue'
WHERE ColA = 'SomeOtherValue'
--ROLLBACK TRAN
--run this in a second query window
BEGIN TRAN
UPDATE TableX
SET ColA...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 6:31 am
I wouldn't say polling is bad, no. Not at all. It's one way to get things done. How you poll, where you poll, how often you poll, those are the...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 6:28 am
Weird. Not sure why that's not coming up. Here's another one from Jonathan Kehayias[/url].
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 5:59 am
It does sound like you're confusing deadlocks with blocks. A blocking situation occurs when one process is waiting for another process to release a lock. By default in SQL Server,...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 25, 2014 at 5:46 am
Viewing 15 posts - 7,891 through 7,905 (of 22,224 total)