dbTalk Databases Forums  

Trying to Copy Data in Text Column

microsoft.public.sqlserver.dts microsoft.public.sqlserver.dts


Discuss Trying to Copy Data in Text Column in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Kevin Doyle
 
Posts: n/a

Default Trying to Copy Data in Text Column - 07-31-2008 , 09:39 AM






Hi,

I have a table from which I would like to extract 3 text columns in a copy
column data transformation task. I am getting an error: Unspecified Error.
The max error count is set to 0. The SQL version is SS2000 SP4. The relevant
column schema follows.

CREATE TABLE [dbo].[FSCOTraveler] (
[DivisionCode] [varchar] (4) COLLATE Latin1_General_CS_AS NOT NULL ,
[CoNumber] [varchar] (15) COLLATE Latin1_General_CS_AS NOT NULL ,
[CaRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PcRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PdRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PoDate] [datetime] NULL ,
CONSTRAINT [pkFSCOTraveler] PRIMARY KEY CLUSTERED
(
[DivisionCode],
[CoNumber]
) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

the simple select statement to load the data matches the table schema. Are
there special considerations to copy tables with text columns?

Any help would be greatly appreciated.

kd




Reply With Quote
  #2  
Old   
Kevin Doyle
 
Posts: n/a

Default Re: Trying to Copy Data in Text Column - 07-31-2008 , 12:36 PM






I got it to work using an ActiveX transformation.


"Kevin Doyle" <nomail@ nomail.com> wrote

Quote:
Hi,

I have a table from which I would like to extract 3 text columns in a copy
column data transformation task. I am getting an error: Unspecified Error.
The max error count is set to 0. The SQL version is SS2000 SP4. The
relevant column schema follows.

CREATE TABLE [dbo].[FSCOTraveler] (
[DivisionCode] [varchar] (4) COLLATE Latin1_General_CS_AS NOT NULL ,
[CoNumber] [varchar] (15) COLLATE Latin1_General_CS_AS NOT NULL ,
[CaRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PcRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PdRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PoDate] [datetime] NULL ,
CONSTRAINT [pkFSCOTraveler] PRIMARY KEY CLUSTERED
(
[DivisionCode],
[CoNumber]
) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

the simple select statement to load the data matches the table schema. Are
there special considerations to copy tables with text columns?

Any help would be greatly appreciated.

kd






Reply With Quote
  #3  
Old   
Kevin Doyle
 
Posts: n/a

Default Re: Trying to Copy Data in Text Column - 07-31-2008 , 12:36 PM



I got it to work using an ActiveX transformation.


"Kevin Doyle" <nomail@ nomail.com> wrote

Quote:
Hi,

I have a table from which I would like to extract 3 text columns in a copy
column data transformation task. I am getting an error: Unspecified Error.
The max error count is set to 0. The SQL version is SS2000 SP4. The
relevant column schema follows.

CREATE TABLE [dbo].[FSCOTraveler] (
[DivisionCode] [varchar] (4) COLLATE Latin1_General_CS_AS NOT NULL ,
[CoNumber] [varchar] (15) COLLATE Latin1_General_CS_AS NOT NULL ,
[CaRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PcRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PdRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PoDate] [datetime] NULL ,
CONSTRAINT [pkFSCOTraveler] PRIMARY KEY CLUSTERED
(
[DivisionCode],
[CoNumber]
) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

the simple select statement to load the data matches the table schema. Are
there special considerations to copy tables with text columns?

Any help would be greatly appreciated.

kd






Reply With Quote
  #4  
Old   
Kevin Doyle
 
Posts: n/a

Default Re: Trying to Copy Data in Text Column - 07-31-2008 , 12:36 PM



I got it to work using an ActiveX transformation.


"Kevin Doyle" <nomail@ nomail.com> wrote

Quote:
Hi,

I have a table from which I would like to extract 3 text columns in a copy
column data transformation task. I am getting an error: Unspecified Error.
The max error count is set to 0. The SQL version is SS2000 SP4. The
relevant column schema follows.

CREATE TABLE [dbo].[FSCOTraveler] (
[DivisionCode] [varchar] (4) COLLATE Latin1_General_CS_AS NOT NULL ,
[CoNumber] [varchar] (15) COLLATE Latin1_General_CS_AS NOT NULL ,
[CaRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PcRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PdRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PoDate] [datetime] NULL ,
CONSTRAINT [pkFSCOTraveler] PRIMARY KEY CLUSTERED
(
[DivisionCode],
[CoNumber]
) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

the simple select statement to load the data matches the table schema. Are
there special considerations to copy tables with text columns?

Any help would be greatly appreciated.

kd






Reply With Quote
  #5  
Old   
Kevin Doyle
 
Posts: n/a

Default Re: Trying to Copy Data in Text Column - 07-31-2008 , 12:36 PM



I got it to work using an ActiveX transformation.


"Kevin Doyle" <nomail@ nomail.com> wrote

Quote:
Hi,

I have a table from which I would like to extract 3 text columns in a copy
column data transformation task. I am getting an error: Unspecified Error.
The max error count is set to 0. The SQL version is SS2000 SP4. The
relevant column schema follows.

CREATE TABLE [dbo].[FSCOTraveler] (
[DivisionCode] [varchar] (4) COLLATE Latin1_General_CS_AS NOT NULL ,
[CoNumber] [varchar] (15) COLLATE Latin1_General_CS_AS NOT NULL ,
[CaRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PcRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PdRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PoDate] [datetime] NULL ,
CONSTRAINT [pkFSCOTraveler] PRIMARY KEY CLUSTERED
(
[DivisionCode],
[CoNumber]
) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

the simple select statement to load the data matches the table schema. Are
there special considerations to copy tables with text columns?

Any help would be greatly appreciated.

kd






Reply With Quote
  #6  
Old   
Kevin Doyle
 
Posts: n/a

Default Re: Trying to Copy Data in Text Column - 07-31-2008 , 12:36 PM



I got it to work using an ActiveX transformation.


"Kevin Doyle" <nomail@ nomail.com> wrote

Quote:
Hi,

I have a table from which I would like to extract 3 text columns in a copy
column data transformation task. I am getting an error: Unspecified Error.
The max error count is set to 0. The SQL version is SS2000 SP4. The
relevant column schema follows.

CREATE TABLE [dbo].[FSCOTraveler] (
[DivisionCode] [varchar] (4) COLLATE Latin1_General_CS_AS NOT NULL ,
[CoNumber] [varchar] (15) COLLATE Latin1_General_CS_AS NOT NULL ,
[CaRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PcRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PdRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PoDate] [datetime] NULL ,
CONSTRAINT [pkFSCOTraveler] PRIMARY KEY CLUSTERED
(
[DivisionCode],
[CoNumber]
) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

the simple select statement to load the data matches the table schema. Are
there special considerations to copy tables with text columns?

Any help would be greatly appreciated.

kd






Reply With Quote
  #7  
Old   
Kevin Doyle
 
Posts: n/a

Default Re: Trying to Copy Data in Text Column - 07-31-2008 , 12:36 PM



I got it to work using an ActiveX transformation.


"Kevin Doyle" <nomail@ nomail.com> wrote

Quote:
Hi,

I have a table from which I would like to extract 3 text columns in a copy
column data transformation task. I am getting an error: Unspecified Error.
The max error count is set to 0. The SQL version is SS2000 SP4. The
relevant column schema follows.

CREATE TABLE [dbo].[FSCOTraveler] (
[DivisionCode] [varchar] (4) COLLATE Latin1_General_CS_AS NOT NULL ,
[CoNumber] [varchar] (15) COLLATE Latin1_General_CS_AS NOT NULL ,
[CaRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PcRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PdRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PoDate] [datetime] NULL ,
CONSTRAINT [pkFSCOTraveler] PRIMARY KEY CLUSTERED
(
[DivisionCode],
[CoNumber]
) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

the simple select statement to load the data matches the table schema. Are
there special considerations to copy tables with text columns?

Any help would be greatly appreciated.

kd






Reply With Quote
  #8  
Old   
Kevin Doyle
 
Posts: n/a

Default Re: Trying to Copy Data in Text Column - 07-31-2008 , 12:36 PM



I got it to work using an ActiveX transformation.


"Kevin Doyle" <nomail@ nomail.com> wrote

Quote:
Hi,

I have a table from which I would like to extract 3 text columns in a copy
column data transformation task. I am getting an error: Unspecified Error.
The max error count is set to 0. The SQL version is SS2000 SP4. The
relevant column schema follows.

CREATE TABLE [dbo].[FSCOTraveler] (
[DivisionCode] [varchar] (4) COLLATE Latin1_General_CS_AS NOT NULL ,
[CoNumber] [varchar] (15) COLLATE Latin1_General_CS_AS NOT NULL ,
[CaRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PcRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PdRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PoDate] [datetime] NULL ,
CONSTRAINT [pkFSCOTraveler] PRIMARY KEY CLUSTERED
(
[DivisionCode],
[CoNumber]
) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

the simple select statement to load the data matches the table schema. Are
there special considerations to copy tables with text columns?

Any help would be greatly appreciated.

kd






Reply With Quote
  #9  
Old   
Kevin Doyle
 
Posts: n/a

Default Re: Trying to Copy Data in Text Column - 07-31-2008 , 12:36 PM



I got it to work using an ActiveX transformation.


"Kevin Doyle" <nomail@ nomail.com> wrote

Quote:
Hi,

I have a table from which I would like to extract 3 text columns in a copy
column data transformation task. I am getting an error: Unspecified Error.
The max error count is set to 0. The SQL version is SS2000 SP4. The
relevant column schema follows.

CREATE TABLE [dbo].[FSCOTraveler] (
[DivisionCode] [varchar] (4) COLLATE Latin1_General_CS_AS NOT NULL ,
[CoNumber] [varchar] (15) COLLATE Latin1_General_CS_AS NOT NULL ,
[CaRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PcRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PdRemarks] [text] COLLATE Latin1_General_CS_AS NULL ,
[PoDate] [datetime] NULL ,
CONSTRAINT [pkFSCOTraveler] PRIMARY KEY CLUSTERED
(
[DivisionCode],
[CoNumber]
) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO

the simple select statement to load the data matches the table schema. Are
there special considerations to copy tables with text columns?

Any help would be greatly appreciated.

kd






Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.