Wrox Programmer Forums
Go Back   Wrox Programmer Forums > SQL Server > SQL Server DTS
|
SQL Server DTS Discussion specific to Data Transformation Service with SQL Server. General SQL Server discussions should use the general SQL Server forum. Readers of the book Professional SQL Server 2000 DTS with questions specific to that book should post in that book forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server DTS section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 8th, 2005, 02:30 PM
Authorized User
 
Join Date: Dec 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to hemanth_p2p
Default Preserving DataTypes in DTS execution

We have a DB2 database, from which we copy the data to a SQL Server 2000 database using a DTS package. The problem is with the Date Fields.Whenever we try to automatically copy them over, we get an error saying that there was an arithmatic overflow. We tried different stuff and decided to just create the table with the datafields changed to nvarchar. Anyone has any Ideas about how we can resolve this issue, or point me in a direction where I can find some information.

Thanking you in anticipation for your favor.
-----


Distributed computing ->Causality-> EventDriven ->We have the last laugh.!!
__________________
----

Distributed computing ->Causality-> EventDriven ->We have the last laugh.!!
 
Old December 11th, 2005, 02:19 AM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

What does the data look like in the DB2 database. Obviously, it is not compatable with the SQL Server DateTime datatype.

Jim

 
Old December 11th, 2005, 03:58 PM
Authorized User
 
Join Date: Dec 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to hemanth_p2p
Default

The table structure looks like this..
Column Name Type Length Nulls
-------------- -------------- -------
UPDT_USER_ID CHARACTER 8 N
UPDT_TIMESTAMP TIMESTAMP 10 N
ACTVY_STTUS CHARACTER 1 N
ID CHARACTER 9 N
FUND_ACCT CHARACTER 7 N
GIFT_DATEDB DATE 4 N
GIFT_AMT DECIMAL 9 N
.
.
.

Data looks like this...
__________________________________________________ __________
UPDT_USER_ID| UPDT_TIMESTAMP | ACTVY_STTUS| ID |
__________________________________________________ __________
cindyk | 1/2/2004 7:37:21 AM| I | 000632910|
__________________________________________________ __________
FUND_ACCT | GIFT_DATEDB | GIFT_AMT |
__________________________________________________ __________
B17513 | 1/2/2004 | 1007.5 |


----

Distributed computing ->Causality-> EventDriven ->We have the last laugh.!!
 
Old December 11th, 2005, 04:33 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

What is the exact error. Aritmatic overflow ususally refers to a numeric column. Can you also post the structure of the table you are triying to import to?

 
Old December 11th, 2005, 08:51 PM
Authorized User
 
Join Date: Dec 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to hemanth_p2p
Default

This is the structure of the table the data is going into
[GIFT_ACTVY] (
[UPDT_USER_ID] char (8) NOT NULL,
[UPDT_TIMESTAMP] datetime NOT NULL,
[ACTVY_STTUS] char (1) NOT NULL,
[ID] char (9) NOT NULL,
[FUND_ACCT] char (7) NOT NULL,
[GIFT_DATEDB] smalldatetime NOT NULL,
[GIFT_AMT] numeric (11,2) NOT NULL,
[INCM_TYPE] char (1) NOT NULL,
....)
The error says:"Number of failing rows exceeds the maximum specified. DateTime Field overflow."

This error occurs when I use ODBC Source for transformation. If i use OLEDB drivers, it says "Arithmatic overflow converting DataTime field"
I used individual Datetime string field transformations for the fields with DataTime. And rest of the columns were transformed using CopyColumn.

Thank you! Hope this gives you a little more information to help me.

----

Distributed computing ->Causality-> EventDriven ->We have the last laugh.!!
 
Old December 12th, 2005, 01:07 AM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

I am not sure what you mean by you used DateTime string field trnasformations. Try using copy column. Also check the date data. Could some dates be bad and outside the scope of a smalldatetime as opposed to a datetime?

 
Old December 12th, 2005, 04:43 PM
Authorized User
 
Join Date: Dec 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to hemanth_p2p
Default

First of all "Thank you! benson for patiently replying to my posts" :) I appreicate it.

I tried CopyColumn transformation as well. It gives me the same error. Most of the dates we have are with in the last 30yrs. So, I dont think they are out of the scope of either datetime and smalldatetime. The problem I guess is that DB2 and SQL Server2000 datatypes do not match. But, since we all know that. I thought there was some way of getting the date information with having to convet it into character strings.



----

Distributed computing ->Causality-> EventDriven ->We have the last laugh.!!
 
Old December 12th, 2005, 04:48 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

Wish I could be of more help.
The data you showed, looks compatiable with Sql Server. But I guess if you are getting errors, you will have to convert to a VarChar first.

 
Old December 14th, 2005, 05:57 PM
Authorized User
 
Join Date: Dec 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to hemanth_p2p
Default

Hi, this was the error i keep getting.
Error Source: Microsoft OLE DB provider for SQL Server
Error Description : The number of failing rows exceeds the maximun specified.
Insert error, column 26('PLDG_BILLING_DATEDB', DBTYPE_DBTIMESTAMP), status 6: Data overflow
Invalid character value for cast specification.

Changed that field taking your advice. works like a charm. :) thank you! very much Mr.Benson.

----

Distributed computing ->Causality-> EventDriven ->We have the last laugh.!!
 
Old December 15th, 2005, 12:35 AM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

Glad I could help...
Jim






Similar Threads
Thread Thread Starter Forum Replies Last Post
Converting the DTS file execution from vb to vb . ankur.nagdeve .NET Framework 2.0 0 February 27th, 2008 05:12 AM
datatypes of sql server MunishBhatia SQL Server 2005 1 February 25th, 2008 02:36 AM
preserving entity references muki XSLT 6 March 7th, 2006 12:08 PM
Changing Datatypes mattastic SQL Server 2000 2 September 22nd, 2005 06:29 AM
Datatypes in Active Directory urs Classic ASP Databases 0 April 22nd, 2004 02:16 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.