Forum Replies Created

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

  • RE: combination of data between two tables

    Thanks for reply!

    Sorry for the inconvenience

    This is script

    USE [Example]

    GO

    /****** Object: Table [dbo].[TB_Result] Script Date: 05/25/2016 08:30:23 ******/

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE TABLE [dbo].[TB_Result](

    [idCV] [int] IDENTITY(1,1) NOT...

  • RE: Split string and insert to table

    Thanks for repply

    I've used function dbo.DelimitedSplit8K

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE FUNCTION dbo.DelimitedSplit8K

    --===== Define I/O parameters

    (@pString VARCHAR(8000), @pDelimiter CHAR(1))

    RETURNS TABLE WITH SCHEMABINDING AS

    RETURN

    --===== "Inline" CTE...

  • RE: Split string and insert to table

    You can provide details

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