If you are receiving this error in your output file, It is because of the value in the text qualifier property (Text Qualifier = <none>). When you export the data in a file, you might see the _x003C_none_x003E_ (x003C = "<" and none and x003E = ">") with your original field value. • Do not open the connection manager editor once you finalize everything and just clear out the <none> value from the property window on the right side (Do not open show editor) and save it. You’re done. • Other way around, You can also define the Expression value for the text qualifier and provide (“”) as a value in the expression. Go to the property --> Expression --> Select the Text qualifier from the drop down list --> provide the expression value (“”)
Let’s say your manager wants you to send summary information of the package (not just a one line message) that you’re running or even if there’s an error occurred during the package run. What will you do? I’m sure BI Express is a good option for this task, also you can create your custom message string and send it through send mail task and execute sql task by passing variable value. I want to see summary of the package run in email msg, please include following information: 1) Package Start Time 2) Package Completed with Success/Failure 3) Look up Match Records 4) Look up Not Match Records 5) Package End Time You can use the execute sql task in your package and create custom string using the sql code. After this step store the result set value as a single row and use the variable (SendMail) SELECT 'SSIS Started: ' + CAST ( ? AS VARCHAR ( 50 )) + char ( 10 ) + char ( 13 ) + 'Package Completed Succssfully' + char ( 10 ) + char...