I have a table where I store amount in money. When I used to insert these values from my that table to another table; values changes.
In my first table value of a column 'PRICE' is 130 but when bulk insert was used, it was inserted as 129.60 in another table.
My bulk insert command is:
Insert into InvoiceDetail(InvoiceId,AgentId,ProductCode,BrandId,Qty,Price,ProductType)
Select SCOPE_IDENTITY(),'12736387',ProductCode,BrandId,Qty,M2CPrice,ProductType from
UserPackages where AgentId='12736387'