Forum Replies Created

Viewing 15 posts - 8,251 through 8,265 (of 13,877 total)

  • RE: TSQL PatIndex

    mohammed.mazahr (7/17/2015)


    Thanks any pointers on how to split by multiple space delimiters

    Give me some examples please.


  • RE: Numeric/Negative Check

    Simplified version.

    select *

    from

    where try_parse(Capacity as int) < 0;


  • RE: Numeric/Negative Check

    nidhi.naina (7/17/2015)


    Gosh... I am sorry i am not ignoring... i trying to find some simpler way if any else i have your suggestion in store. Looking for something easier as...


  • RE: Numeric/Negative Check

    Srikanth vathsala (7/17/2015)


    Hi Nidhi,

    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)...


  • RE: SQL Agent job running SSIS package

    --removed


  • RE: SQL Agent job running SSIS package

    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.


  • RE: TSQL PatIndex

    mohammed.mazahr (7/17/2015)


    Dear All,

    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...


  • RE: Numeric/Negative Check

    nidhi.naina (7/17/2015)


    Then how about Left(Capacity,1) = '-'

    Why are you ignoring my suggestion?


  • RE: Numeric/Negative Check

    nidhi.naina (7/17/2015)


    I was trying to get a solution and came up with this -

    select * from table WHERE ISNUMERIC(LTRIM(RTRIM(Capacity))) = 1 AND Capacity < '0'

    It is working fine...


  • RE: Numeric/Negative Check

    nidhi.naina (7/17/2015)


    i Have a table with a column Capacity which is char(10) and gets populated from user files. I want to check records which have negative Capacity value. So i...


  • RE: Update my post?

    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...


  • RE: Update my post?

    Hit Edit again.


  • RE: SSIS package getting failed

    sqlnaive (7/16/2015)


    Apart from the above got the two following errors as well

    Error: 2015-07-16 10:15:40.57

    Code: 0x80004005

    Source: Generate Sales Data File

    Description:

    End Error

    Error: 2015-07-16...


  • RE: SSIS package getting failed

    Can you get a more comprehensive set of errors from the 'All Executions' report in SSISDB?


  • RE: Are the posted questions getting worse?

    .... up to and including the "F" word

    Foxbase?


Viewing 15 posts - 8,251 through 8,265 (of 13,877 total)