Viewing 15 posts - 7,006 through 7,020 (of 8,731 total)
Evil Kraig F (2/6/2014)
Jeff, do you have SSIS 2k8 available to you or do you need said examples in 2k5?
That's just mean 😀
February 6, 2014 at 5:31 pm
Sean Lange (2/6/2014)
And I can even mark my own response as the solution. 😛
Sometimes the OP finds the solution a couple of minutes after posting the question and posts the...
February 6, 2014 at 3:00 pm
Could you mark all of them?
This could be called as the green thread 😀
February 6, 2014 at 2:51 pm
Koen Verbeeck (2/6/2014)
SQLRNNR (2/6/2014)
This is the best most absolutely accurate answer so far.I tend to disagree.
I agree that we should disagree. :hehe:
February 6, 2014 at 2:47 pm
There seems to be a new feature in the forums to mark answers that worked for the OP.
What do you think about this? I'm not sure if it's only possible...
February 6, 2014 at 2:26 pm
jayoub (2/6/2014)
The rollback tran works perfectly for me. Thank you very much.Not sure why you guys call me OP but not concerned.
OP stands for Original Poster. That's...
February 6, 2014 at 1:16 pm
Sean Lange (2/6/2014)
ChrisM@home (2/6/2014)
February 6, 2014 at 1:10 pm
This is an old thread but I would suggest a different approach. It might get give better results performance wise.
/*
Example:
SELECT dbo.CHARINDEX2('a', 'abbabba', 3)
returns the location of the third occurrence of...
February 6, 2014 at 1:08 pm
I added some comments to the original code that might help you to understand what's going on.
February 6, 2014 at 12:41 pm
I've been thinking on what to answer here. It seems that you haven't understood the query. I could get the result, but I want you to try harder and research...
February 6, 2014 at 11:47 am
Please don't post in several forums, you'll just divide the possible help given to you.
All answers should go in: http://www.sqlservercentral.com/Forums/Topic1538780-391-1.aspx
February 6, 2014 at 11:45 am
You're welcome.
But, do you understand how does it work?
February 6, 2014 at 11:43 am
Even if the article is not related directly with this problem, it gave me the idea for the CHAR(7) option. 🙂
February 6, 2014 at 11:39 am
Sean Lange (2/6/2014)
Another option would be to use Dwain Camps' pattern based splitter.
That splitter is made to split string when the delimiter is not a constant, because it won't perform...
February 6, 2014 at 11:31 am
Maybe something like this could work.
WITH cteTally AS(
--Use TOP to return only the number of rows needed for all ranges
SELECT TOP((SELECT MAX([End]) FROM @ranges) - (SELECT MIN([Start]) FROM @ranges) +...
February 6, 2014 at 11:06 am
Viewing 15 posts - 7,006 through 7,020 (of 8,731 total)