Viewing 15 posts - 3,991 through 4,005 (of 6,036 total)
Firewall.
June 18, 2007 at 1:13 am
You may create INSTEAD OF triggers on crucial tables and/or add application validation into your stores procedures:
IF suser_sname() IN (-list of logins-)
AND APP_NAME() 'Your Application Name'
RETURN
Of course the users...
June 17, 2007 at 11:12 pm
You're right about table variables.
Temp tables behave exactly the same way.
While they are small they are in memory.
June 17, 2007 at 2:52 pm
Yes, David, I see, you getting frustrated, because you've got nothing to say.
Sorry for you. I warned you.
Now, instead of admitting you're wrong you just making stupid lies:
1) It's your...
June 16, 2007 at 6:51 am
Everything is much simpler.
SELECT Datediff(wk, @WeekDay1, @WeekDay2)
will always return number of weekends between 2 weekdays.
Multiply it by 48 and get number of hours.
June 15, 2007 at 5:34 pm
DELETE T
FROM Table T
INNER JOIN (SELECT TOP 10 PERCENT KeyCol
FROM Table ORDER BY DelteT ASC) T1 ON T.KeyCol = T1.KeyCol
INNER JOIN (SELECT TOP 10 PERCENT KeyCol
FROM Table ORDER BY DelteT...
June 15, 2007 at 5:26 pm
No need for much of investigation.
Just a bit.
"There are two reasons why a real number might not be exactly representable as a floating-point number. "
One reason would be enough.
Function which...
June 15, 2007 at 5:09 pm
I'm thrilled to see that "programmer thing" which changes data type of incoming parameter depending on the value supplied.
David? I tried to stop you, but you continue to expose your...
June 15, 2007 at 3:06 am
So, which version of BR you suggest to use?
Which one will return consistently right results?
June 14, 2007 at 11:34 pm
But I need to round 612.945!
Is it impossible task for your BR implementation?
June 14, 2007 at 11:08 pm
I hope you have BR function running on that computer?
June 14, 2007 at 11:02 pm
Top by what?
DeltaT?
What if 50% of lines have DeltaT = 1?
What if there are 25 lines? How many to cut off?
June 14, 2007 at 10:19 pm
I wonder how 2/3 would be stored in THAT computer?
Cutting out a piece of finger?
How precise you must be doing this cutting?
![]()
June 14, 2007 at 10:05 pm
I know how 612.945 should be rounded by BR.
But it's not.
Can you get right result from your BR function for value 612.945?
Is your implementation valid?
I guess this topic is...
June 14, 2007 at 10:01 pm
Viewing 15 posts - 3,991 through 4,005 (of 6,036 total)