Viewing 15 posts - 8,251 through 8,265 (of 13,882 total)
Chelski_blue (7/17/2015)
July 17, 2015 at 9:09 am
nidhi.naina (7/17/2015)
So you think there can be some other options? As i have quite a few checks in where clauses for different tables and columns.
Or should i go with...
July 17, 2015 at 6:22 am
mohammed.mazahr (7/17/2015)
Thanks any pointers on how to split by multiple space delimiters
Give me some examples please.
July 17, 2015 at 5:17 am
Simplified version.
select *
from
where try_parse(Capacity as int) < 0;
July 17, 2015 at 5:15 am
nidhi.naina (7/17/2015)
July 17, 2015 at 5:11 am
Srikanth vathsala (7/17/2015)
Try this,
Declare @k char(10)
Declare @l as Char(10)
Set @k ='-88'
set @L = '88'
Select IIF( ISNUMERIC(@k) = 1,
Case
When Cast(@k as integer) > 0 then 'Positive'
When Cast(@k as integer)...
July 17, 2015 at 5:10 am
This suggests a change to the package has been made.
It suggests that the package protection level (see here) has been set to encrypt sensitive with user key.
July 17, 2015 at 4:59 am
mohammed.mazahr (7/17/2015)
I would like your help in solving the following issue using the Patindex function i cannot retrieve or extract the single numeric value as an example in...
July 17, 2015 at 4:48 am
nidhi.naina (7/17/2015)
Then how about Left(Capacity,1) = '-'
Why are you ignoring my suggestion?
July 17, 2015 at 4:43 am
nidhi.naina (7/17/2015)
select * from table WHERE ISNUMERIC(LTRIM(RTRIM(Capacity))) = 1 AND Capacity < '0'
It is working fine...
July 17, 2015 at 3:45 am
nidhi.naina (7/17/2015)
July 17, 2015 at 3:24 am
TJAYWHY (7/16/2015)
Yes I finally did see that...was looking for something like "update"...Thanks!
You are not alone! This has been raised before and, for reasons which are beyond my comprehension, dismissed as...
July 16, 2015 at 11:56 am
sqlnaive (7/16/2015)
Error: 2015-07-16 10:15:40.57
Code: 0x80004005
Source: Generate Sales Data File
Description:
End Error
Error: 2015-07-16...
July 16, 2015 at 11:34 am
Viewing 15 posts - 8,251 through 8,265 (of 13,882 total)