Viewing 15 posts - 46 through 60 (of 135 total)
If i understand it correctly. You have files for multiple clients that needs to be loaded on defined date and timings. If these timings are fixed then you can store...
December 22, 2008 at 10:42 am
What pattern are you using to search for the files? If its just .txt then i don't see any issue. but if you are using any pattern search then it...
December 19, 2008 at 2:07 pm
You need to create a flat file connection. Specify [b],[/b] as your column delimiter and {CR}{LF} as your row delimiter. You actully don't need to set all this. If you...
December 19, 2008 at 12:10 pm
What exactly are you trying to do in your OnError event handler? How are you checking that its not working?
December 19, 2008 at 12:01 pm
You can use Foreach loop with ADO enumerator to loop through your table and get the path for each file. If you have not used ADO enumerator befor this will...
December 19, 2008 at 11:37 am
Try
Dts.Variables.Item("StartDate").Value.ToString()
HTH
December 19, 2008 at 11:29 am
I am not sure why you wanna use SSIS when Reporting Services can do this via Subscriptions?
Reporting Services Subscriptions will allow you to send the report in any format HTML/EXCEL/PDF...
December 18, 2008 at 6:29 pm
You can use derived colum to format the balance colum in desired way
RIGHT([Balance_Col],1) == "-" ? "-" + SUBSTRING([Balance_Col],1,LEN([Balance_Col]) - 1) : [Balance_Col]
HTH
~Mukti
December 18, 2008 at 6:22 pm
You would need licenced version of Cozyroc to deploy on your servers.
December 18, 2008 at 6:10 pm
I would just use a Execute SQL task with full resultset before the Script task to store the result set in an object type variable and then use something like...
December 8, 2008 at 11:39 am
You can use T-SQL type step at the end of your job to call the other job
e.g. exec sp_start_job @job_name = 'job name '
Else you can create a SSIS package...
December 1, 2008 at 4:43 pm
Make sure that you have specified these variables in the ReadWrite varible list under Script tab in Script Task Editor. The list should be comma seperated - e.g. gvRunDt,gvPdDt,gvFileName
November 24, 2008 at 3:04 pm
Yes you need to put these variable in Expressions for FromLine and ToLine property. But note that it Send Mail will keep warning you about no receipient etc. Try to...
October 13, 2008 at 3:16 pm
At present there is no way to change the scope of the variable once its created from the UI. The only way is to delete and recreate the varaible with...
October 13, 2008 at 12:45 pm
Try
"Enc_Unison_" + RIGHT("00" + (DT_WSTR, 10) DATEPART( "mm", GETDATE()) ,2) + RIGHT("00" + (DT_WSTR, 10) DATEPART( "dd", GETDATE()) ,2) + (DT_WSTR, 10) DATEPART( "yyyy", GETDATE()) + ".txt"
HTH
October 10, 2008 at 10:59 am
Viewing 15 posts - 46 through 60 (of 135 total)