Viewing 15 posts - 11,266 through 11,280 (of 11,678 total)
You are trying to set the wrong property.
With the expression that you created you should set the ExcelFilePath property.
The connection string has the following form:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source="\\myServer\myExcelfile.xls";Extended Properties="EXCEL 8.0;HDR=NO;IMEX=1";
which is a...
July 12, 2010 at 5:26 am
A simple question, but a usefull one nonetheless, especially if you use the function with variables as input parameters.
July 12, 2010 at 5:20 am
To give some sort of general definition of SSIS:
SSIS is an ETL tool. If you don't know what ETL is, search it on wikipedia.
It reads data from a source, then...
July 9, 2010 at 8:36 am
Well, the problem is quite obvious and the error message is quite clear:
no excel support for 64-bit. So it is not an error, it is by design 🙂
Luckily, the solution...
July 9, 2010 at 8:32 am
You can't dynamically assign tables to a data flow. SSIS will mess up the metadata, which results in the errors that you saw. A data flow has to be static...
July 8, 2010 at 8:28 am
Hugo Kornelis (7/7/2010)
UMG Developer (7/6/2010)
I'm a little surprised that so many people have gotten it correct so far, but that may be because of the copy, paste, F5...
July 7, 2010 at 2:41 am
Nice question to point out the difference between temp table and table variable, but a little more explanation would be helpful (such as a link to a BOL article).
July 7, 2010 at 12:45 am
As a junior BI consultant I'm still in the learning curve for SQL Server.
A few months back I was preparing a deployment of an ETL project that I wrote. I...
July 7, 2010 at 12:23 am
Elliot is right, you can't do it with out-of-the-box components.
However, you can achieve it with smart T-SQL scripting.
Create a transfer list of all the tables that you want to load....
July 6, 2010 at 8:55 am
Sanjay-940444 (7/6/2010)
this question seems to be contradictory...
Can you elaborate?
July 6, 2010 at 4:06 am
Theo-929802 (7/5/2010)
I actually gave up the excel solution.I switched to .csv and altering the package a bit made it work immediately. 🙂
I gave up finding a solution for the excel.
Going...
July 5, 2010 at 7:51 am
Theo-929802 (7/5/2010)
Unfortunately, that's not the case. My server is 32bit and the 64bit Runtime value is already set to false.Any other solutions?
I was thinking the same thing. As your package...
July 5, 2010 at 7:44 am
GilaMonster (7/4/2010)
'No backups' is not a position that any sensible company should ever be in, so, as an interview question it's a bit stupid.
Sometimes they ask stupid questions, just...
July 5, 2010 at 7:39 am
You could write the exception stream to a temp/staging table.
Then, check the rowcount of this table and store the result in a variable. Use this variable in a precedence constraint...
July 5, 2010 at 7:32 am
That simply means that the column with ID 6493 contains data that is larger than the length you specified.
You can either solve the issue by making sure that your source...
July 1, 2010 at 2:22 pm
Viewing 15 posts - 11,266 through 11,280 (of 11,678 total)