Viewing 15 posts - 106 through 120 (of 135 total)
The ForEach loop will return the file name when the file matches the pattern given in Files field (e.g. *.txt will search all txt files in the given folder). You...
August 21, 2008 at 11:30 am
On the SSIS (BIDS top Menu item), you can find 'Package Configuration'. You can add config files here. Personally i go with XML files for configuration, there are other options...
August 20, 2008 at 11:41 am
Yes you can connect to SQL Server 2000 using SSIS. In you dataflow use OLEDB Destination or SQL Server Destination.
And for connectiing to Excel you can use the Excel Connection.
This...
August 18, 2008 at 2:16 pm
I am still not sure if you are using this variable to set connection string of the file or you are just using this variable to build your xm_cmdshell command.
Either...
August 15, 2008 at 2:52 pm
Are you using this variable to set connection string to a file connection? (I didn't understand your question properly, What exaclty is the issue?)
If you are trying to do this..it...
August 14, 2008 at 3:34 pm
In Execute SQL Task you will have to use parameters to return values from your table. I guess you are using ODBC driver to connect to MySQL.
Your query should look...
August 14, 2008 at 11:28 am
It was my mistake i thought that you were loading data from flatfile. Please check the sql server destination data type for Quantity field. You mentioned that its Numeric (38,0),...
August 13, 2008 at 7:51 pm
Is it possible that the any of the parameters for this procedure EXEC DBO.ProcOne ?,?,?,? is geting Null values sometimes that it can't handle? The datatypes for OLEDB connection...
August 13, 2008 at 5:49 pm
If you are doing it programmatically then you can follow (i have never done it programmatically)
http://msdn.microsoft.com/en-us/library/ms136009.aspx
Otherwise, you can go the Advance Editor->Input and Output Properties(tab)->Output Columns->(select the column...
August 13, 2008 at 10:39 am
Try redirecting the error rows to see the value of 'Quantity', this might help you identify the problem further.
Also what is the datatype for your SQL server destination?
August 12, 2008 at 6:00 pm
Yes its possible if the user under which the package executes has appropriate permission (to read or write) on that server.
August 8, 2008 at 10:48 am
What exactly are you trying to do with this flat file?
If you are just loading from this file it shouldn't be a problem as the comment column is your...
August 6, 2008 at 5:24 pm
Is your varible InsurerID of type int? If it is then you need to convert it to string type for concatination.
"SET FMTONLY OFF EXEC PROVIDER_DIRECTORIES " + (DT_WSTR, 15) @[User::InsurerID]
HTH
~Mukti
August 6, 2008 at 3:32 pm
Try setting the DelayValidation = True on Send Mail Item. I think its trying to validate it before the variables are set.
HTH
~Mukti
August 6, 2008 at 10:41 am
That sounds really very wierd. Could you please tell more about the loop, what else goes on there?
Is it possible that when you run the packages the connection changes...
August 5, 2008 at 6:23 pm
Viewing 15 posts - 106 through 120 (of 135 total)