Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: XML Workshop XII - Parsing a delimited string

    I wrote a function very similar to this. I added some code to catch reserved characters ( ,")

    CREATE FUNCTION [dbo].[split](

    @sInputList VARCHAR(max),

    ...

  • RE: need help with this report

    It could also be done with a table variable joined against itself and some clever grouping.

     

    For example:

     

     

    if exists (select * from tempdb.dbo.sysobjects where [name] = '##t')

     begin

      drop table ##t

     end

    create table ##t...

Viewing 2 posts - 1 through 2 (of 2 total)