Forum Replies Created

Viewing 15 posts - 13,981 through 13,995 (of 18,923 total)

  • RE: Count Commas in field

    Sorry... I've just seen one too many users who ditch the solution before even trying it... Glad you're not one of them.

  • RE: Permissions

    Glad to see I'm not completly clusless in that departement .

  • RE: Count Commas in field

    Select Len('some,commas,') - len(replace('some,commas,',',','')) as NumberOfCommas is large????????

    Select OneField from dbo.Split('String', 'separator') is large?????

  • RE: threaded forum style ''''order by''''

    Should be simple with the right design >>

    Select threadInfo from dbo.Table order by ThreadStartDate, MessageDateInput

  • RE: Decimal Separator

    ... as we all should .

  • RE: Count Commas in field

    What's wrong with this??

    Select Len('some,commas,') - len(replace('some,commas,',',','')) as NumberOfCommas

  • RE: select / join query?

    --use the datetime here.. assuming that you don't always change at the minute exactly

    Declare @Types table (DateStart datetime not null, name varchar(25) not null, primary key clustered (DateStart, name))

    Declare @Production...

  • RE: Decimal Separator

    I'll withdraw my wohh!!! then. Still was a funny 15 minutes .

  • RE: threaded forum style ''''order by''''

    Seems to me like you need more of a recursive algorithmn... Are you planning to load all the message in one shot anyways?

  • RE: Decimal Separator

    How do you call it when actors start using lines to be able to throw in a joke a few lines later???

  • RE: Why is article rated so low?

    Probabely 2 things make this a low rating >>

    1 - Formatting should always be done at the client if possible

    2 - This doesn't need a function to be accomplished,...

  • RE: Permissions

    I'm not the security expert here... I'll let someone else pick this one up.

  • RE: Question on SQL sp getting correct results back

    First off... why are you using dynamic sql for this??

  • RE: Count Commas in field

    count >>

    Select Len('some,commas,') - len(replace('some,commas,',',','')) as NumberOfCommas

    Maybe this split function can be of some use :

    IF Object_id('fnSplit_Set') > 0

    DROP FUNCTION dbo.fnSplit_Set

    GO

    IF Object_id('Numbers') > 0

    DROP TABLE dbo.Numbers

    GO

    CREATE TABLE dbo.Numbers (PkNumber...

  • RE: Formatting numeric collumn

    This is a foramtting task.. Do that with the app, not the server.

Viewing 15 posts - 13,981 through 13,995 (of 18,923 total)