SQL Server DTS/SSIS decimals dot instead of comma

Patrick Honorez

A view is exported weekly by a job, into a text file, using a DTS package. I created the DTS package using the Import Export Wizard.
The decimal separator in the output file is a comma (,).
How can I make it a dot (.) ?


I tried changing the LocaleId property of the Dataflow box to English (United States), with no result.
I tried the same on destination table's LocalId property, no result.
What else, George ??

Tab Alleman

You can convert the column to a varchar, making it locale-agnostic, and use string functions to replace the comma with a dot.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

SQL Server DTS/SSIS decimals dot instead of comma

From Dev

Use comma instead of dot for decimals when saving as text

From Dev

Dot instead of comma on numerical keyboard

From Dev

dot instead of comma as thousand separator

From Dev

SSRS: show comma instead of dot

From Dev

How to change the decimal separator from a comma to a dot in SQL Server

From Dev

Python regex for number with or without decimals using a dot or comma as separator?

From Dev

If decimal value, convert to two decimals AND dot separated value to comma separated

From Dev

Converting a number from a string to an int with decimals separated by comma or dot

From Dev

JavaScript regex to accept numbers with comma separator (thousands) and dot separator (decimals)

From Dev

SQL Server and repeating decimals

From Dev

C++ %f dot instead of comma

From Dev

Java BigDecimal can have comma instead dot?

From Dev

String to decimal conversion: dot separation instead of comma

From Dev

Regex for decimal number dot instead of comma (.NET)

From Dev

Java floating point number in comma instead of dot

From Dev

Make numpad comma key type dot instead of comma through registry

From Dev

SQL insert dot or comma into varchar (accounting, money)

From Dev

UITextField's numerical pad: dot instead of comma for float values

From Dev

Magento: Decimal Price in spanish language display Dot instead comma

From Dev

jquery validator.methods.number and comma instead of dot in number

From Dev

Formatting doubles to two decimal places in Java produces a comma instead of a dot

From Dev

Values over plot– one decimal place, a comma instead of a dot

From Dev

asp.net RangeValidator, accept MinimumValue and MaximumValue with comma instead of dot

From Dev

Replace ,(comma) by .(dot) and .(dot) by ,(comma)

From Dev

how to remove certain amount of decimals in sql server

From Dev

SQL Server - How to round up or down decimals?

From Dev

SQL Server compare two decimals is not exact

From Dev

SQL Server compare two decimals is not exact

Related Related

  1. 1

    SQL Server DTS/SSIS decimals dot instead of comma

  2. 2

    Use comma instead of dot for decimals when saving as text

  3. 3

    Dot instead of comma on numerical keyboard

  4. 4

    dot instead of comma as thousand separator

  5. 5

    SSRS: show comma instead of dot

  6. 6

    How to change the decimal separator from a comma to a dot in SQL Server

  7. 7

    Python regex for number with or without decimals using a dot or comma as separator?

  8. 8

    If decimal value, convert to two decimals AND dot separated value to comma separated

  9. 9

    Converting a number from a string to an int with decimals separated by comma or dot

  10. 10

    JavaScript regex to accept numbers with comma separator (thousands) and dot separator (decimals)

  11. 11

    SQL Server and repeating decimals

  12. 12

    C++ %f dot instead of comma

  13. 13

    Java BigDecimal can have comma instead dot?

  14. 14

    String to decimal conversion: dot separation instead of comma

  15. 15

    Regex for decimal number dot instead of comma (.NET)

  16. 16

    Java floating point number in comma instead of dot

  17. 17

    Make numpad comma key type dot instead of comma through registry

  18. 18

    SQL insert dot or comma into varchar (accounting, money)

  19. 19

    UITextField's numerical pad: dot instead of comma for float values

  20. 20

    Magento: Decimal Price in spanish language display Dot instead comma

  21. 21

    jquery validator.methods.number and comma instead of dot in number

  22. 22

    Formatting doubles to two decimal places in Java produces a comma instead of a dot

  23. 23

    Values over plot– one decimal place, a comma instead of a dot

  24. 24

    asp.net RangeValidator, accept MinimumValue and MaximumValue with comma instead of dot

  25. 25

    Replace ,(comma) by .(dot) and .(dot) by ,(comma)

  26. 26

    how to remove certain amount of decimals in sql server

  27. 27

    SQL Server - How to round up or down decimals?

  28. 28

    SQL Server compare two decimals is not exact

  29. 29

    SQL Server compare two decimals is not exact

HotTag

Archive