1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

  2. Anuncie Aqui ! Entre em contato fdantas@4each.com.br

Wrong values when pulling data from MariaDB into SQL server using SSIS

Discussão em 'Outras Linguagens' iniciado por Stack, Janeiro 24, 2021.

  1. Stack

    Stack Membro Participativo

    I have been strugling with this since a couple of days ago...

    I hava a MariaDB database which I am pulling data from using ODBC connection from SSIS. The thing is that I have the following on the MariaDB table:

    MariaDB query:

    select
    name, creation, base_grand_total, total_taxes_and_charges, base_total_taxes_and_charges
    from _1bd3e0294da19198.`tabSales Order` so
    where so.name IN ('SO-01195','SO-01196')


    [​IMG]

    Then using a simple DATA FLOW task to copy that data into MS SQL SERVER the query result in the resultinga table in SQL SERVER looks like

    SQL Server query:

    select
    name, creation, base_grand_total, total_taxes_and_charges, base_total_taxes_and_charges
    from DestinationSQL


    [​IMG]

    As you can see, the last 2 columns has wrong results for the FIRST Sales order

    any ideas?

    Continue reading...

Compartilhe esta Página