Viewing 15 posts - 1,156 through 1,170 (of 6,486 total)
He's doing a statistical analysis based on a normal distribution. he's looking for the point in a normal distibution with an average and standard deviation commensurate with his set...
September 12, 2011 at 7:18 pm
Tom.Thomson (9/7/2011)
Matt Miller (#4) (9/6/2011)
Tom.Thomson (9/6/2011)
September 7, 2011 at 9:46 am
Tom.Thomson (9/6/2011)
September 6, 2011 at 2:33 pm
Evil Kraig F (6/2/2011)
mister.magoo (6/2/2011)
Does PI (3.14159 etc ) which never...
September 6, 2011 at 11:00 am
jbalbo (9/2/2011)
and I stink at this for a lack of better words..
but when I run it with data CUST_RID = ^ and wondeing...
September 6, 2011 at 10:40 am
Keep in mind that an index will be highly efficient for your query if it can "cover" all columns you actually need to have (i.e. if the index definition contains...
August 31, 2011 at 1:15 pm
It will probably use the composite index if the single column passed in is the leading part of the composite index (i.e. the first column in the composite).
Otherwise, the composite...
August 31, 2011 at 12:08 pm
ZZartin (8/31/2011)
What aboutSELECT TOP 1 * FROM #JobOrder WHERE Complete = 0 ORDER BY Operation ASC
This will work only if the #jobOrder table ever hold one single job at...
August 31, 2011 at 11:25 am
Since I'm assuming you might want to be able to pull up the firdt incomplete operation for any number of orders at the same time, you might care to leverage...
August 31, 2011 at 10:31 am
Sean Lange (8/30/2011)
August 30, 2011 at 3:28 pm
Sean Lange (8/30/2011)
August 30, 2011 at 3:23 pm
Then go back to your original statement and try this:
SELECT ISNUMERIC(DataValue) ,'DataValue' =
CASE
WHEN ltrim(rtrim(DataValue)) in('.', '-', '-.', '+', '+.') OR ltrim(rtrim(DataValue)) like '%[^-+.0-9]%'
THEN
cast(CAST(DataValue as varchar(25)) AS SQL_VARIANT)
ELSE...
August 30, 2011 at 3:11 pm
I have to ask - why is it so important to reseed at all?
I am a little concerned that you are trying to reuse the ID's, which may...
August 30, 2011 at 2:57 pm
harry.sh16 (8/30/2011)
August 30, 2011 at 11:39 am
Be careful with floor. Depending on how you understand the requirement, it will return the expected answer for positive numbers, but NOT for negatives.
It you're going from float or...
August 30, 2011 at 10:52 am
Viewing 15 posts - 1,156 through 1,170 (of 6,486 total)