Viewing 9 posts - 16 through 24 (of 24 total)
Thanks for the quick reply!
By downtime I meant must I stop all my insert adapters so that there is no activity on my principal for the time it takes me...
October 10, 2012 at 12:31 am
Joe R. Rodriguez (1/7/2011)
Got around error by not specifing storage location.
Me too! (WEIRD)
October 4, 2012 at 4:48 am
BRACKETS! 🙂
Thank you!
October 4, 2012 at 12:46 am
It does run longer yes.. but it's a very small db and the report only runs once a week..
Thanks again for the help!!
January 16, 2009 at 1:06 am
Thanks for all the help!! you pointed
me in the right direction with the substring and charindex..
The following code worked for me...
DECLARE eRA_Report CURSOR FOR
SELECT originalmessageid
FROM AM
WHERE Messagetype...
January 15, 2009 at 11:11 pm
This is what I used but it returns everything AFTER the word Industry as well..
SELECT SUBSTRING(routingheader, charindex('funder',routingheader), charindex('industry',routingheader)) AS ROUTINGHEADER
All I need is what is between the two words: funder...
January 14, 2009 at 5:39 am
This is what I did but it returns more than what I need...
SELECT SUBSTRING(routingheader, charindex('funder',routingheader), charindex('funder',routingheader)) AS ROUTINGHEADER
January 14, 2009 at 5:35 am
Viewing 9 posts - 16 through 24 (of 24 total)