Newbie: DT_I1, DT_STR, etc

Anyone know the origin of sql 2005's datatype naming convention or even why SSIS has defined its own special data types (Before SSIS I had never seem types like DT_UI1 except in programming languages.)

TIA,

barker



Answer this question

Newbie: DT_I1, DT_STR, etc

  • Melvin S. Bernstein

    The reason of having SSIS's own data types is quite obvious, being a ETL tool SSIS pulls data out, as well as sends result to, various systems - It tries to get a best set of types to cover all possible data types that could be encountered during this process.

    Actually you can see UI1/UI2/I1/I2/STR...data types in most OLEDB/ADO/ODBC ...programming references.

    HTH

    wenyang



  • Newbie: DT_I1, DT_STR, etc