Viewing 11 posts - 1 through 11 (of 11 total)
I STRONGLY second the call by @acloughnane to move the best practices paragraph to the top of the article. While this article is very informative, cursors should not...
April 11, 2024 at 5:55 pm
This technique should come with a strong warning about understanding your database concurrency, because auditing with triggers increases transaction times, and can cause serious locking and/or latching issues.
I've encountered this...
December 9, 2022 at 5:38 pm
This is all great stuff...that SQL Server should have had a decade ago. PostgreSQL users have been enjoying these features for a LONG time. Great to finally see the catch...
August 31, 2022 at 2:53 pm
Check the waits that are occurring during the query when it is ran directly on the server (eliminate variable of the application).
If you get CXPACKET waits (waiting to recombine results...
August 3, 2022 at 3:41 pm
We loaded something like 150 million records from Library of Congress and had a co-located 2 post rack running a quad processor something-or-other with a RAID 5 setup on Oracle...
September 7, 2012 at 9:13 am
Oh, that row_number trick is so beautiful it makes me want to cry!
June 27, 2011 at 5:07 pm
@ KermitTheRock,
Indexed views rock! Keep in mind though, you need SS Enterprise to get this feature. Most ISP licences are Standard so unless you paid the big nut for Enterprise...
March 1, 2011 at 7:56 pm
@ Antonio,
Just so I can file this away in my brain for later:
What is your max sustained throughput (total users and max queries per minute)? How many CPUs?
Thanks.
March 1, 2011 at 7:52 pm
We added a synonyms table that cross referenced common abbreviations, common misspellings, and plural forms. We also built our own table of stop words to strip from the list of...
February 28, 2011 at 12:07 pm
#1 This will be faster than full text search for large loads (hundreds of queries per minute) on a db with millions of records/documents to search.
I did this exact thing...
February 28, 2011 at 11:16 am
Save this to a text file called test.bat then execute on the command line:
@echo off
FOR /F "usebackq tokens=1,2,3 delims=~" %%i IN (`sqlcmd -w200 -h-1 -E -Q"set nocount on; select convert(varchar(10),getdate())...
November 19, 2010 at 12:55 pm
Viewing 11 posts - 1 through 11 (of 11 total)