Viewing 15 posts - 1,501 through 1,515 (of 2,171 total)
Sergyi, you are a whiner.
I quote OP first post " From this string, I need to extract the first occurence of a non zero value, and everything to the right...
July 16, 2007 at 11:42 pm
@@ROWCOUNT is highly volatile. Once referenced, it is reset.
IF @@ROWCOUNT = 0 -- Checked and reset.
INSERT ... VALUES (@@ROWCOUNT)
July 16, 2007 at 2:56 pm
I just love people who take the effort to post feedback to their problems and the suggestions they get!
July 16, 2007 at 12:18 pm
I just love people who take the effort to post feedback to their problems and the suggestions they get!
July 16, 2007 at 12:17 pm
I just love people who take the effort to post feedback to their problems and the suggestions they get!
July 16, 2007 at 12:17 pm
Why so complicated queries?
select
testid,
val,
substring(val, patindex('%[^0]%',
July 16, 2007 at 12:14 pm
FOR XML PATH is available in SQL Server 2000?
July 16, 2007 at 9:37 am
Asked and answered here http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=86434
July 16, 2007 at 9:35 am
Vamshi, you can omit the LEFT JOIN part and the WHERE ... IS NULL part, if there are some contraints prohibiting circular reference in your table.
July 15, 2007 at 3:47 pm
Here is a valid solution, Sergiy, so you have evidence that I not only suggest better alternatives and that I can produce the wanted result as well according to OP...
July 15, 2007 at 3:40 pm
And I also have answered this question before, so OP would be able to GOOGLE and find what he want.
July 15, 2007 at 9:09 am
I tried to fit in your shoes for once, and I didn't like it.
July 15, 2007 at 9:06 am
Yes, I know. But I have never understood the idea of calculating the depth every time over and over again...
July 15, 2007 at 2:49 am
I am more interested in why the query returns a different number of records between each execution!
I can't see the point on returning 200k rows to the client.
July 14, 2007 at 4:16 pm
Viewing 15 posts - 1,501 through 1,515 (of 2,171 total)