Does SQL Server Integration Services (SSIS) re-compile C# code every time it's run? -
We have a process that is receiving data in real time and adding the database to the record. We can add our Extract Transform Using SQL Server 2008 Integration Services to run the Load (ETL) process. We download about 50 files from the FTP site, process them and then store the files.
The problem is that processing is taking approximately 17 ss per file, even though the files are actually small (approximately 10 lines) and the processing code is quite simple, looking at the load on the machine This CPU is bound and there are not many traffic on the network, disk, or memory.
I suspect that SSIS can be compiled every time the C # code is compiled. Has anybody participated in similar problems? Or have you used the same process without any problem?
Is there any device that can allow us to profile a DTSX package?
Since you are using SSIS 2008, your script work is always precompiled.
Comments
Post a Comment