Viewing 15 posts - 1,966 through 1,980 (of 15,381 total)
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...
December 9, 2015 at 10:23 am
Luis Cazares (12/9/2015)
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)...
December 9, 2015 at 10:23 am
info 58414 (12/9/2015)
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...
December 9, 2015 at 9:41 am
Jeff Moden (12/9/2015)
December 9, 2015 at 9:24 am
skilly2 (12/8/2015)
SQLBill (12/8/2015)
Someone posts code that works but might not be the best way (me) and then others follow-up with their suggestions. ...
December 9, 2015 at 9:23 am
Here is the syntax for that.
exec spG_Update_EDPS_Staging_Status @Group, @NumRows OUTPUT
December 8, 2015 at 12:37 pm
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...
December 8, 2015 at 10:45 am
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...
December 8, 2015 at 10:18 am
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...
December 8, 2015 at 9:40 am
SQLBill (12/8/2015)
Someone posts code that works but might not be the best way (me) and then others follow-up with their suggestions. No...
December 8, 2015 at 9:32 am
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...
December 8, 2015 at 9:12 am
ScottPletcher (12/8/2015)
Sean Lange (12/8/2015)
ScottPletcher (12/7/2015)
SELECT
COALESCE(t1.PRODUCTID, t2.PRODUCTID, t3.PRODUCTID) AS PRODUCTID,
...
December 8, 2015 at 9:07 am
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)
December 8, 2015 at 7:43 am
ScottPletcher (12/7/2015)
SELECT
COALESCE(t1.PRODUCTID, t2.PRODUCTID, t3.PRODUCTID) AS PRODUCTID,
...
December 8, 2015 at 7:23 am
Viewing 15 posts - 1,966 through 1,980 (of 15,381 total)