Forum Replies Created

Viewing 15 posts - 1,966 through 1,980 (of 15,381 total)

  • RE: Parse string from URL between...

    info 58414 (12/9/2015)


    cool, but the final delimiter is not always the &. It must be the End of num Values.

    thanks

    How about some more sample data then that more closely represents...

  • RE: Parse string from URL between...

    Luis Cazares (12/9/2015)


    This should be safer.

    declare @URL varchar(100) = 'http://www.mydomain.info/Customer.aspx?dcc=EUR&h_hmid=2907831&mobiredirect=no&cpn=3790'

    SELECT *, LEFT( initial.pos, CHARINDEX( '&', initial.pos + '&') - 1)

    FROM (VALUES (@URL)) AS x(url)

    CROSS APPLY (SELECT SUBSTRING( x.url, CHARINDEX('h_hmid=', x.url)...

  • RE: Parse string from URL between...

    info 58414 (12/9/2015)


    Hi,

    i want to get the num-Value between the 2 Delimiters (h_hmid - and the End of the numeric Value)

    in this case: 2907831 (var...

  • RE: http://deal4supplements.com/cerebrrin/

    spam reported

  • RE: Are the posted questions getting worse?

    Jeff Moden (12/9/2015)


    Just making sure that I can post here. They had some major problems with my account. I couldn't even see this forum never mind post anything...

  • RE: UNION Query with Filtered Results

    skilly2 (12/8/2015)


    SQLBill (12/8/2015)


    Now this is why I like these forums.....

    Someone posts code that works but might not be the best way (me) and then others follow-up with their suggestions. ...

  • RE: Sproc with output parameter not returning the output parameter

    Here is the syntax for that.

    exec spG_Update_EDPS_Staging_Status @Group, @NumRows OUTPUT

  • RE: Using convert function in create table statement

    pwalter83 (12/8/2015)


    Sean Lange (12/8/2015)


    pwalter83 (12/8/2015)


    Sean Lange (12/8/2015)


    pwalter83 (12/8/2015)


    Sean Lange (12/8/2015)


    pwalter83 (12/8/2015)


    ben.brugman (12/8/2015)


    pwalter83 (12/8/2015)

    Thanks for your suggestion. However, it still doesn't help with my basic requirement. I have to convert the...

  • RE: Using convert function in create table statement

    pwalter83 (12/8/2015)


    Sean Lange (12/8/2015)


    pwalter83 (12/8/2015)


    Sean Lange (12/8/2015)


    pwalter83 (12/8/2015)


    ben.brugman (12/8/2015)


    pwalter83 (12/8/2015)

    Thanks for your suggestion. However, it still doesn't help with my basic requirement. I have to convert the time duration column...

  • RE: Using convert function in create table statement

    pwalter83 (12/8/2015)


    Sean Lange (12/8/2015)


    pwalter83 (12/8/2015)


    ben.brugman (12/8/2015)


    pwalter83 (12/8/2015)

    Thanks for your suggestion. However, it still doesn't help with my basic requirement. I have to convert the time duration column in excel specifically...

  • RE: UNION Query with Filtered Results

    SQLBill (12/8/2015)


    Now this is why I like these forums.....

    Someone posts code that works but might not be the best way (me) and then others follow-up with their suggestions. No...

  • RE: Using convert function in create table statement

    pwalter83 (12/8/2015)


    ben.brugman (12/8/2015)


    pwalter83 (12/8/2015)

    Thanks for your suggestion. However, it still doesn't help with my basic requirement. I have to convert the time duration column in excel specifically where values like...

  • RE: UNION Query with Filtered Results

    ScottPletcher (12/8/2015)


    Sean Lange (12/8/2015)


    ScottPletcher (12/7/2015)


    In this case, there's no real need for CTEs or UNIONs either, just standard FULL joins:

    SELECT

    COALESCE(t1.PRODUCTID, t2.PRODUCTID, t3.PRODUCTID) AS PRODUCTID,

    ...

  • RE: Are the posted questions getting worse?

    Ed Wagner (12/8/2015)


    Sean Lange (12/8/2015)


    Ed Wagner (12/8/2015)


    Sean Lange (12/7/2015)


    Alan.B (12/7/2015)


    Sean Lange (12/7/2015)


    As of today I have only taken 4 days of PTO this year. REALLY looking forward to taking the...

  • RE: UNION Query with Filtered Results

    ScottPletcher (12/7/2015)


    In this case, there's no real need for CTEs or UNIONs either, just standard FULL joins:

    SELECT

    COALESCE(t1.PRODUCTID, t2.PRODUCTID, t3.PRODUCTID) AS PRODUCTID,

    ...

Viewing 15 posts - 1,966 through 1,980 (of 15,381 total)