Viewing 3 posts - 1 through 3 (of 3 total)
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...
May 24, 2016 at 7:44 pm
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...
May 11, 2016 at 9:58 pm
Viewing 3 posts - 1 through 3 (of 3 total)