Click here to Skip to main content
15,885,032 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi there,

i am transferring data from ms access 2013 to sql server 2012 using ssis package the problem i am facing is my access data contain point values but when my packaged transferred to sql server it won't count decimal point value . for ex value in my accesss database is like 19.32 but value in sql database is 19 only that different makes my data wrong.

datatype im using in sql table is numeric(18,0) allow null

datatype in access database is number

What I have tried:

change sql data type to decimal(18,0)
Posted
Updated 10-Jul-16 6:11am

1 solution

Quote:
datatype im using in sql table is numeric(18,0) allow null

In numeric(18,0), the 0 means no decimal, thus your problem, try with 2.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900