Viewing 15 posts - 16 through 30 (of 32 total)
I would like to point out that my little proc has not been shown to be wrong... 🙂
(I was hoping for some sort of feedback.)
March 10, 2008 at 8:53 am
Everyone saying the third option is correct if the case is switched needs to look at what is being checked.
What does the current day of the month have to do...
March 7, 2008 at 12:16 pm
I think the linked servers are not the only culprit here. I actually cringed when I saw these queries.
The first query is JOINing and WHEREing using fuctions. And ...
March 7, 2008 at 8:57 am
declare @DoB datetime
declare @Today datetime
declare @YearsOld tinyint
set @DoB = '3/5/1985 6pm'
-- Tests.
set @Today = '3/5/2008 2am'
set @Today = '3/5/2008 5:59pm'
set @Today = '3/5/2008 6:00pm'
--set @Today = '3/5/2008 6:01pm'
--set @Today =...
March 6, 2008 at 8:35 am
I think a few blocks may be missing.. I would guess "RELATIONSHIP".
December 21, 2007 at 2:09 pm
If you want the answers, just brute every word found on SQLServerCentral.com through the hash function on this page:
http://www.flashfocus.nl/forum/archive/index.php/t-11371.html
until you match up the 21 hashes of 15829,...
December 21, 2007 at 9:00 am
The programmer needs to find a different hammer.
August 29, 2007 at 9:01 am
I thought distributed queries were multi-server queries?
I've been wondering how the joins work across servers also....
Just an FYI: Proper table design will do more for performance than any index could.
May 3, 2007 at 9:57 am
Good article, but I disagree with the DATEDIFF/DATEADD statement "The first query can't possibly use an index and performs the DATEDIFF on every row in the table." used on the...
July 13, 2006 at 9:25 am
Whoa.. we're all tryin' to help you here. Prozac anyone?
All Scott was saying is that the most basic stuff seems to have not...
April 26, 2006 at 12:49 pm
I've had this problem in the past and at random times in QA and .Net(C#).
It seems to have been avoided by turning off Named Pipes (by using the Client Network Utility)...
April 26, 2006 at 8:43 am
I believe the char(1) is what to convert to, not a character.
0x0a is a Linefeed (could also use char # 10).
0x0d is a carriage return (same as your char #13).
Next time...
April 26, 2006 at 8:36 am
Viewing 15 posts - 16 through 30 (of 32 total)