Viewing 15 posts - 21,391 through 21,405 (of 22,224 total)
You really should have a clustered index, but since you get only one, you need to make sure you put it in the right place. The PK is clustered by...
"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
December 19, 2007 at 5:30 am
One thing we've found that is a great advantage in 2005 when working with different functionality within a single app, is to take advantage of schemas. In your case, 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
December 19, 2007 at 5:26 am
I've done exactly that type of installation.
Yes, it causes problems. The 2008 install does something to the 2005 install that causes errors when you go to load the GUI for...
"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
December 14, 2007 at 11:14 am
Yelling (all caps) is hardly necessary.
This link is to the general "How To" topic in Books Online.
This link is to the RESTORE topic in BOL.
Yelling at the people trying 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
December 14, 2007 at 6:25 am
I agree with Andy. I need the request written down in some fashion. If there is a policy in place and this violates it, I'm going to fall back on...
"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
December 14, 2007 at 6:06 am
Honestly, contact Microsoft because your licensing scheme is not going to be the same as mine. We have an enterprise license for TFS that allows us pretty much unlimited use,...
"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
December 13, 2007 at 1:07 pm
The order by is a serious puzzler. If the performance was OK, I'd probably ignore it with a shrug, but if performance was in any way an issue, it sure...
"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
December 13, 2007 at 8:38 am
The error is explaining the problem. The subquery is being used as a column, that means it has to return a single row because you can't have two or more...
"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
December 13, 2007 at 8:34 am
The really beautiful thing about it was that the SET @var = 0 was directly butt up against the IF statement. It wasn't like there was 15 pages of intervening...
"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
December 13, 2007 at 8:27 am
We found one in production earlier this year that looked a bit like this:
DECLARE @var int
SET @var = 0
IF @var > 0
BEGIN
...do some work
END
return 0
And they had honestly spent a...
"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
December 13, 2007 at 6:17 am
Indexing for data retrieval would be my biggest concern. Why would you store... anything, in a column like that?
Personally, I'd probably look to storing the stuff as XML instead of...
"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
December 13, 2007 at 6:09 am
It's possible they're remove it in the future. I'm looking at the 2008 documentation. It's there and says the same thing. It's pretty basic functionality, generate a script. Even if...
"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
December 13, 2007 at 6:01 am
I know I could be off, but that sure looks like homework.
If you post what you tried that didn't work, you're sure to get help. Just trolling for someone 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
December 12, 2007 at 2:31 pm
"Should get paid" ?
I thought Steve was paying us for this?
Hey, get that guy over here...
😎
"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
December 12, 2007 at 1:58 pm
The key word and tricky phrase to take away from the description of this column in books online is: "... reuse of transaction log space..." This means that it will...
"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
December 12, 2007 at 1:34 pm
Viewing 15 posts - 21,391 through 21,405 (of 22,224 total)