Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Difference in DTS and SSIS output

Author  Topic 

raghuigate
Starting Member

5 Posts

Posted - 2013-05-21 : 07:12:10
When Im extracting data from a table to text file using DTS and SSIS there is a difference in file format please help.
DTS:
@MN789654 ABCD 5555555,
Å4DD-E.^%~O6D+zó<¿Ví?e-\VYùrïå¿E=DûûO'o,ó }oôO &¿o*Iíî~E"ùÇy"OíO[Iåæ£è@HƒfSL`²«b


SSIS:
@MN789654 ABCD 5555555,Å4DD-E.^%~O6D+zó<¿Ví?e-\VYùrïå¿E=DûûO'o,ó }oôO &¿o*Iíî~E"ùÇy"OíO[Iåæ£è@HƒfSL`²«b

Using DTS data is moving to separate row after column delimite(,).

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-05-21 : 07:16:33
it may be that delimiter is not given correctly.

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/
https://www.facebook.com/VmBlogs
Go to Top of Page

raghuigate
Starting Member

5 Posts

Posted - 2013-05-21 : 07:26:26
DTS:
Vikash please find the setting details
DTS:
File Type: ANSI
Row delimiter : {CR}-{LF}
Column delimiter:Comma
Max characters per delimited column: 255
SSIS:
Format : Delimited
Text qualifier: _x003C_none_x003E_
Header row delimiter :{CR}-{LR}
row delimiter :{CR}-{LR}
Column delimiter: Comma {,}

Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-05-21 : 07:30:00
whats _x003C_none_x003E_? where's qualifier set in DTS?

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/
https://www.facebook.com/VmBlogs
Go to Top of Page

raghuigate
Starting Member

5 Posts

Posted - 2013-05-21 : 08:07:37
We develop SSIS packages on a 32 bit machine. These packages are deployed on a 64 bits system running SQL2008 R2. When we deploy a package and the package contains
a flatfile, it adds a weird text qualifier: _x003C_none_x003E_


There no value set to Text Qualifier in DTS
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-05-21 : 08:15:19
thats can be a reason. DTS might have interpretted it as a part of delimiter causing the rows to skew

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/
https://www.facebook.com/VmBlogs
Go to Top of Page
   

- Advertisement -