Viewing 15 posts - 12,211 through 12,225 (of 15,381 total)
You should read the article in my signature about splitting strings. It will blow this away for performance and it will explain how to use it.
April 27, 2012 at 7:51 am
Great question!!! Glad to see some of the more obscure stuff from 2012. Makes the research more challenging since there is not much coverage of this stuff. Keep them coming...
April 27, 2012 at 7:34 am
If you need help with the sql for this you are going to have to provide ddl, sample data and desired output. Take a look at the first link in...
April 26, 2012 at 2:25 pm
If your correct result set is found by running:
select system_id, name
from Validate
where system_id not in (23,24,25,26);
Then to find all the ones from the table that are not in that...
April 26, 2012 at 1:20 pm
Lynn Pettis
Actually, what I was laughing at is the mixed terms for the boolean. True and No. I always thought it was True/False, or Yes/No, or 0/1...
April 26, 2012 at 12:49 pm
But, of course a bit is not boolean in SQL Server unless declared with NOT NULL
It can work as a boolean but only for significantly large values of NULL. :w00t:
April 26, 2012 at 12:47 pm
drew.allen (4/26/2012)
Sean Lange (4/26/2012)
bpowers (4/26/2012)
Not yet, but I am working on it. It didn't like the P.USED.
Not sure what you mean by "It didn't like". 😛
I should be the same...
April 26, 2012 at 12:22 pm
bpowers (4/26/2012)
Not yet, but I am working on it. It didn't like the P.USED.
Not sure what you mean by "It didn't like". 😛
I should be the same as you did...
April 26, 2012 at 12:04 pm
This is most likely do to precision differences between Oracle and SQL. Instead of the generic FLOAT type it is recommended you specify the scale and precision is both DBMS.
http://msdn.microsoft.com/en-us/library/ms151817%28v=sql.105%29.aspx
April 26, 2012 at 10:21 am
And why are you adding a space and then replacing it with a '0'?
April 26, 2012 at 8:19 am
Viewing 15 posts - 12,211 through 12,225 (of 15,381 total)