Viewing 15 posts - 7,531 through 7,545 (of 7,602 total)
Look at this in the execution plan...
USE AdventureWorks
GO
SELECT *
FROM HumanResources.Employee
WHERE EmployeeID BETWEEN 100 AND 200
Notice how it rewrote the code? Is that what you're talking about?...
January 16, 2009 at 2:36 pm
Excellent point about DISTINCT. I see it all the time.
Also, using HAVING to check for conditions that should be in a WHERE. That can have a serious impact...
January 15, 2009 at 3:11 pm
Again, this code does work:
select isdate(col1), *
from #t
where isdate(col1) = 0
or datepart(year, col1) = 2001 --sql treats yr "1" as "2001"
SQL will definitely short circuit when it knows it...
January 15, 2009 at 2:30 pm
If SQL Server evaluated left to right, in the above query, it wouldn't have to evaluate the second condition if the first was false (short circuit) because it would not...
January 15, 2009 at 2:10 pm
The sample temp table code posted doesn't prove what order SQL evaluated the expressions in. With "and" specified, it always has to evaluate both expressions.
Note that this code does...
January 15, 2009 at 1:56 pm
As I said, it was my understanding that the SQL optimizer did not do that for simple (non-query) expressions connected by boolean operators, that it evaluated left-to-right.
January 15, 2009 at 1:25 pm
Hmm, don't see much wrong, except maybe:
WHERE ID = @liMaxMaxID + 1
You're checking for a specific ID value, not just the first value greater than the prev max. Is...
January 15, 2009 at 1:06 pm
Forgetting that the order that AND clauses are evaluated in at run-time has nothing to do with the order that they are written.
I thought SQL Server did always...
January 15, 2009 at 12:59 pm
I prefer to say that the log should not be truncated at all.
That's not practical in this type of situation.
If the log is already bloated because it previously wasn't backed...
December 3, 2008 at 9:29 am
What about an approach that used a generic stored proc to dynamically create static code for a specific table?
That is, the code could handle any table name passed to it,...
December 2, 2008 at 2:40 pm
How many rows are in the temp table?
How many average duplicates are there of each ID, roughly, in each table? That is, what is the value of:
SELECT COUNT(DISTINCT ID)...
May 13, 2008 at 3:53 pm
why does it make more sense for the birthday to be after their birthday than it does to have it be before?
Because then the exact same check that works...
March 11, 2008 at 8:35 am
I don't know the laws for Los Angeles, CA, regarding this ... California law says, "on non-Leap Years, your birthday is official Feb 28"
Wouldn't L.A. fall under CA law?
Where...
March 10, 2008 at 3:26 pm
But even your own "timeanddate.com" link makes it clear that the official birthdate is Mar 1 in non-leap years:
while others celebrate their birthday on March 1 because they do...
March 10, 2008 at 2:05 pm
Viewing 15 posts - 7,531 through 7,545 (of 7,602 total)