Viewing 15 posts - 17,356 through 17,370 (of 22,206 total)
Alvin Ramard (5/27/2009)
Bob Hovious (5/27/2009)
What's an index?It's one of your fingers.
Oh, I thought that was a digit. All this computer-ese is so confusing.
May 27, 2009 at 8:16 am
Roy Ernest (5/27/2009)
Hey Grant, I did not know that you brew your own beer... :w00t:
Actually, I haven't for about a year and a half. I miss it, but between writing...
May 27, 2009 at 8:07 am
GilaMonster (5/27/2009)
May 27, 2009 at 8:06 am
GilaMonster (5/27/2009)
May 27, 2009 at 7:50 am
Gail has a couple of articles on performance tuning[/url] over at Simple Talk. You might want to check them out. I have an introductory article[/url] on execution plans that might...
May 27, 2009 at 7:44 am
You could set it this way, not that I'd want to:
DECLARE @myval varchar(max)
SET @myval = '(''5'',''4'',''3'',''2'')'
The two single quotes will turn into one inside the variable.
But, the real question is,...
May 27, 2009 at 7:42 am
Something else must be going on in your code. I copied these two lines:
CREATE TABLE OverallStatus (ID BIGINT IDENTITY(1,1) PRIMARY KEY, YP_code VARCHAR(15), datum DATETIME, Description VARCHAR(5000))
INSERT INTO OverallStatus (YP_code,...
May 27, 2009 at 7:35 am
Doc (5/27/2009)
Roy have you forgot about the books from Grant Fritchey - "SQL Server 2008 Query Performance Tuning Distilled" and "Dissecting SQL Server Execution Plans"
Gail was still right. There is...
May 27, 2009 at 7:31 am
This is opinion, but no. I'd say 2008 is more of an upgrade than 7 to 2000 was. Not by a lot, but more. However, knowledge learned of 2005 is...
May 27, 2009 at 7:14 am
I worked for a dot com that had almost a tb on SQL 7. I'm working now for an insurance company and we don't have any databases over 100gb (yet,...
May 27, 2009 at 7:12 am
AShehzad (5/26/2009)
Statistics will be updated automatically after index rebuild. There is no requirement to separately configure this task.
Are you sure? 😉
But since you shouldn't automatically rebuild all indexes all the...
May 27, 2009 at 7:08 am
If people are posting code on the net, it has to be with the expectation that it will be used by others. I know that's the assumption that I have...
May 27, 2009 at 6:49 am
Tell them not to drop tables. In 2000 we couldn't revoke their privileges to create indexes. We had to tell them not to do it. Although, since we built our...
May 27, 2009 at 5:33 am
Create a role that you're going to add your developers to. Then add ddl_admin and security_admin roles that role. Then deny CREATE TABLE to the role. That about does it....
May 26, 2009 at 1:28 pm
David Burrows (5/26/2009)
...You could really mess with people's heads with this.
Well it obviously did with yours 😛
Yeah, but I'm a head case on the best days. I'm talking about...
May 26, 2009 at 6:37 am
Viewing 15 posts - 17,356 through 17,370 (of 22,206 total)