Viewing 15 posts - 4,201 through 4,215 (of 5,394 total)
It's not very clear to me.
Try posting some sample data and the desired output.
You could also try reading the article linked in my signature line, it will help you rephrasing...
June 14, 2010 at 8:47 am
GilaMonster (6/14/2010)
The Dixie Flatline (6/14/2010)
I'm hearing vuvuzelas in my sleep.Me too.
I haven't seen any matches yet, but tonight they're playing Italy vs. Paraguay.
Vuvuzelas will get soon into my sleep.
June 14, 2010 at 8:42 am
Lynn Pettis (6/11/2010)
I know we have several MVP's here on SSC, but most of you don't advertise it, and perhaps its just...
June 14, 2010 at 8:40 am
scott.pletcher (6/14/2010)
I'm not a pedant like Jeff
I see you decided not to take my advice.
scott.pletcher (6/14/2010)
Many of them were amused by 'studid'.
Object and column names are part of...
June 14, 2010 at 8:38 am
scott.pletcher (6/14/2010)
Sigh. Consistently all you want to offer is pompous air.
Scott, you simply don't know what you're saying. If you have some arguments, go on, but I suggest you...
June 14, 2010 at 8:29 am
Nice article, Jason.
I haven't tried your code yet, but looks very neat.
Well done.
June 14, 2010 at 4:13 am
Can anyone take a look at this one?
I'm sure my solution sucks and I'm pretty sure the OP is lost and clueless.
June 8, 2010 at 4:41 pm
Dare to Fight (6/8/2010)
HiThanks for help but it was giving error.
Msg 156, Level 15, State 1, Procedure fSplitNumeric, Line 36
Incorrect syntax near the keyword 'DECLARE'.
please help me
OK, let's try to...
June 8, 2010 at 4:28 pm
OK, basically it's the same thing. I don't remember the exact syntax and I don't have SSMS here, but you will have to rebuild the clustered index into a new...
June 7, 2010 at 3:14 pm
Steve Jones - Editor (6/5/2010)
What do you guys...
June 6, 2010 at 10:10 am
In my organization we have SAs and one DBA (me).
SAs configure and maintain the OS layer, including patches, and I maintain the SQL layer.
I'm in the Administrators group for the...
June 4, 2010 at 10:06 am
Another assumption: 🙂
CREATE FUNCTION fSplitNumeric(@parameter nvarchar(4000))
RETURNS TABLE
AS
RETURN (
WITH Data AS (
SELECT N,
S = SUBSTRING(@Parameter,N,1),
G = CASE WHEN SUBSTRING(@Parameter,N,1) LIKE '[0-9]' THEN 1 ELSE 0 END
FROM Tally
WHERE...
June 4, 2010 at 9:58 am
You could change the query in the dataset to retrieve the denominator as:
ISNULL(NULLIF(SUM(someField),0),1)
June 4, 2010 at 6:34 am
Raju The Leader (6/4/2010)
sachin123 it can be splitted into sachin one row 123 in other row..
So, you mean splitting a SINGLE char field upon a delimiter?
There's a good split function...
June 4, 2010 at 6:26 am
Viewing 15 posts - 4,201 through 4,215 (of 5,394 total)