Viewing 15 posts - 7,531 through 7,545 (of 7,597 total)
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
There is only one "best" solution and that is, you must count days.
So when someone asks you how old you are, you count days before you answer? Nonsense.
The best...
March 10, 2008 at 11:00 am
Well, I guess it's nice to see that there are still places where low standards prevail and former govt employees can find actual work.
March 7, 2008 at 2:34 pm
I admit I don't care for all the "uber-geeky" solutions; it's just too hard later for s/o later to verify that the code produces a correct result.
But leap year birthdays...
March 7, 2008 at 12:43 pm
That's for sure. I love "experts" who don't know how to tell what the current SQL activity on the box is.
March 5, 2008 at 9:43 am
Interesting. I guess my concern is that if a (very) large table(s) need updated, you could see a significant hit to your performance from autoupdate of stats. Also,...
March 5, 2008 at 9:20 am
Viewing 15 posts - 7,531 through 7,545 (of 7,597 total)