Viewing 15 posts - 16 through 30 (of 135 total)
You need to change the connection properties of Excel connection to support mixed types.
Modify the excel connection string and add IMEX=1 to the extended properties.
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Book1.xls;Extended Properties="EXCEL 8.0;HDR=NO;IMEX=1";
May 11, 2009 at 12:03 pm
Task option is available at Database level, so if you right click on the database you will see task and then you can go through the wizard to load data...
May 8, 2009 at 5:14 pm
Put you string in double quotes inside the expression builder
"Data Source=cost3;User ID=userABC;Provider=MSDAORA.1;Password=password;"
HTH
~Mukti
May 6, 2009 at 3:16 pm
Text Qualifiers are only availble for flat files. Try tying the following syntax for replacing
REPLACE([Column 1],"\"","")
you just need to escape the double quote with a backslash
HTH
Mukti
April 22, 2009 at 12:43 pm
Not sure what you want to do exactly but this might help http://msdn.microsoft.com/en-us/library/ms141214.aspx
Please post more details about what exactly you are trying to do?
April 17, 2009 at 2:23 pm
Are you using environment variable (indirect configuration) to point to your config table? If yes, then it might be possible the value is not reflecting and still pointing to your...
April 9, 2009 at 4:57 pm
You can add multiple address to 'To', 'CC' or 'BCC' by using following code:
myHtmlMessage.To.Add("test1@test.com")
myHtmlMessage.To.Add("test2@test.com")")
myHtmlMessage.CC.Add("test3@test.com")")
myHtmlMessage.CC.Add("test4@test.com")")
myHtmlMessage.Bcc.Add("test5@test.com")")
myHtmlMessage.Bcc.Add("test6@test.com")")
Useful link: http://www.systemnetmail.com/faq/3.2.3.aspx
You may write code to populate these values from your DB too.
HTH
~Mukti
March 30, 2009 at 2:23 pm
Try the following expression:
"trial_bal_by_currency_11_SOD_1_LON_" + (DT_WSTR, 4) DATEPART( "yyyy", getdate() )
+ RIGHT("00" + (DT_WSTR, 2) DATEPART( "mm", getdate() ),2) +
RIGHT("00" + (DT_WSTR, 2) DATEPART(...
January 23, 2009 at 1:02 pm
You don't need a variable to be able to set the file path in configuration. While setting up the configuration select Connection Managers-> Connectionstring(select this).
This will make the path configurable.
But...
January 22, 2009 at 11:19 am
If you are trying to run this package as job make sure that the SQL Server Agent has permission the folder where the config file is present. This is Jobs...
January 21, 2009 at 2:05 pm
January 21, 2009 at 12:02 pm
Can you do a simple test? Logon to the machince using the SQL Server Agent account and from the command line try to test run the psftp.exe see if it...
January 21, 2009 at 11:57 am
You need to create package configurations for this. If you are not familiar with the concept first go through http://msdn.microsoft.com/en-us/library/ms141682.aspx
For setting up package configs follwoing article is a good start:
January 21, 2009 at 11:50 am
When you run manually its using your credentials and when run as a job it runs under the SQL Server Agent credentials. Make sure the user under which the agent...
January 21, 2009 at 11:24 am
You can set the task result to failure and
Dts.TaskResult = Dts.Results.Failure
Then add Onerror event handler from the Event Handler tab in BIDS.
This might be helpful info for you
http://techyfreak.blogspot.com/2007/08/exception-handling-in-ssis-script-task.html
January 20, 2009 at 12:10 pm
Viewing 15 posts - 16 through 30 (of 135 total)