Viewing 15 posts - 1 through 15 (of 67 total)
Thank you All,
we did similar to Daz.. suggession
Cheers
RB
October 31, 2010 at 10:10 pm
ignore warnings, there is no harm, even msoft gave the same ans 🙂
September 22, 2010 at 11:48 am
you have to use excel interop name space to interact with excel and change the text to number format,
or
use activeX script task to change the text to number...
September 22, 2010 at 11:37 am
divyanth (8/4/2010)
August 4, 2010 at 9:38 pm
Thnx. So you used the approach 1 for the solution. I thought you used in built function similar to substring to get this done. Hope there is no method to...
August 4, 2010 at 1:17 pm
Baskar B.V (8/3/2010)
Thanks for your reply, option 1 is an alternative solution, however my issue was resolved...:-)
Please let us know how you resolved this issue so that it would be...
August 4, 2010 at 12:34 pm
I would do the following ...
1. use computer name environment variable at starting point of the tasks based on that assign set of variables from config to actual variables for...
August 3, 2010 at 10:04 pm
Andrew,
for quick dislay
in script task use : msgbox Dts.variables("VariableName").Value.Tostring()
in Active-X scrit task use : msgbox DTSGlovalVariables("VariableName").Value
if you are not familier with Breakpoint ...
August 3, 2010 at 9:44 pm
Baskar B.V (8/3/2010)
Substring is not returning more than 8000 chars, i wanted to read 30000 chars data. tks
Is it possible to push the data value to a .txt file...
August 3, 2010 at 12:27 pm
Baskar B.V (8/2/2010)
Did you try Substring function?
Substring is not returning more than 8000 chars, i wanted to read 30000 chars data. tks
August 2, 2010 at 10:04 pm
Catch ex As Exception
Dts.Events.FireError(1, ex.TargetSite.ToString(), ex.Message.ToString(), String.Empty, 0)
Dts.TaskResult = Dts.Results.Failure
means, move failure line to end of statement i.e before end catch...
July 28, 2010 at 12:09 pm
Build ConnectionString proptery of DB source connection via expression with full details like Server, instance (if you have) and Database name, user id and pwd(if u r using), dynamically,...
July 27, 2010 at 11:38 am
I'm running using DTEXEC command, dtsx file is stored in structured file format in a folder
1. getting set of files from ftp
2. running my dtsx pkg for every 4 seconds,...
July 22, 2010 at 9:55 pm
get all files using system.io
compare modified date, take latest file into variable
loop thru all files..
import that file..
OR
Each time you process a file, save the file name in database
loop thru all...
July 22, 2010 at 12:50 pm
I ran(still running), 1 package with 15 instances per minute, 1 run for every 4 seconds, execution will last about 10 seconds
this is about.. moving files to different folder based...
July 22, 2010 at 12:40 pm
Viewing 15 posts - 1 through 15 (of 67 total)