Viewing 15 posts - 166 through 180 (of 814 total)
Good job referencing http://support.microsoft.com/kb/2154845/en-us in the script - I would have added some information about it in the article as well. "You observe severe blocking when the SQL Server...
January 14, 2014 at 8:30 am
If you really want to baseline things and isolate the changes made, ideally, you might do something like record a few segments (hours worth, including all aspects - input, output,...
January 14, 2014 at 8:13 am
I would absolutely start with "cleaning" up data, followed by exact search on the cleaned version, followed by a double metaphone implementation, since that simply generates one or two possible...
January 10, 2014 at 9:41 am
Brandon Forest (1/9/2014)
January 10, 2014 at 8:30 am
elee1969 (1/6/2014)
January 9, 2014 at 11:25 am
VoldemarG (1/7/2014)
...for which I have created additional indexes...
Changing the code in your SP's? Reads, Writes, CPU, and Duration from a trace/profiler session, preferably over multiple runs, the first of which...
January 9, 2014 at 11:24 am
aleksey donskoy (1/8/2014)
[DBName] varchar(65),should be
[DBName] varchar(255),
In at least sys.databases, database name is of SYSNAME type, which currently equates to nvarchar(128) NOT NULL. While I can...
January 9, 2014 at 11:04 am
I've renamed the pure SQL functions somewhat, but here's an example of how I would call them from a stored procedure:
DECLARE @result FLOAT
SET @result = CalculateJaroWinkler('Bob','Bill')
PRINT @result
SET @result = CalculateJaroWinkler('Bob','Bub')...
January 2, 2014 at 8:53 am
Jeff Moden (12/31/2013)
January 2, 2014 at 8:19 am
Finding SQL servers can get interesting. By far the best way is using methods that find the service and/or the executable, i.e. some of the SQLPing modes, and commands...
December 20, 2013 at 8:58 am
And by strong, we don't mean 8 characters long.
At least 15 truly random characters is a good start.
Minimum permissions at the finest are column based permissions; if that's too difficult,...
December 5, 2013 at 9:22 am
Jeff Moden (12/2/2013)
December 5, 2013 at 9:08 am
LutzM (12/2/2013)
On the other side, there's the clustered index, which is unique and not null as well...
Objection - clustered indexes can be both non-unique and NULL. Yes, they should...
December 5, 2013 at 8:59 am
Very interesting.
You've got some odd unprintable characters in there - I replaced them with spaces, and then have the following initial comments:
Why give it a parent job name? I'd...
December 5, 2013 at 8:44 am
salman.sadruddin (12/3/2013)
December 5, 2013 at 8:30 am
Viewing 15 posts - 166 through 180 (of 814 total)