Forum Replies Created

Viewing 15 posts - 11,266 through 11,280 (of 11,678 total)

  • RE: Error in dynamic connection string for Excel

    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...

  • RE: REPLACE() and NULL

    A simple question, but a usefull one nonetheless, especially if you use the function with variables as input parameters.

  • RE: New to SSIS

    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...

  • RE: Some problem in SSIS 2008 when Excel is used

    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...

  • RE: How to loop through different tables with a foreach task

    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...

  • RE: Table Variable :Doesn't care

    Hugo Kornelis (7/7/2010)


    UMG Developer (7/6/2010)


    Nice question, thanks!

    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...

  • RE: Table Variable :Doesn't care

    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).

  • RE: Leanring from Experts

    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...

  • RE: how to do incremental loading for each table

    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....

  • RE: Dimension Tables Got Corrupted

    Sanjay-940444 (7/6/2010)


    this question seems to be contradictory...

    Can you elaborate?

  • RE: Problem Executing For Each File loop (*.xls)

    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...

  • RE: Problem Executing For Each File loop (*.xls)

    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...

  • RE: Dimension Tables Got Corrupted

    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...

  • RE: SSIS - Writing Exceptions to Flat File

    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...

  • RE: How to convert DT_DBTimestamp to DT_I4 using derived column transformation

    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...

Viewing 15 posts - 11,266 through 11,280 (of 11,678 total)