Forum Replies Created

Viewing 15 posts - 10,981 through 10,995 (of 11,678 total)

  • RE: real time in ssis etl developer

    krishna.msbi2008 (10/22/2010)


    ...

    in that institute ...

    Institute. That explains a lot. 😉

    (how come this thread is already 5 pages long and yet contains so little value?)

  • RE: real time in ssis etl developer

    Alvin Ramard (10/22/2010)


    krishna.msbi2008 (10/22/2010)


    hiiii frds..

    After deploy the package in filesystem.

    how the client can extract the package

    What do you mean by: "extract the package"?

    I can't help but wonder what the client...

  • RE: How Truncate statement ?

    Nice question, learned something.

  • RE: SQL Server 2008 R2

    Nice and easy. Thanks.

  • RE: SSIS Mapping documentation

    No. Powerdesigner is more a data modeling tool for databases. You can document ETL (and thus generate mapping information), but it can certainly not read SSIS packages or replace them....

  • RE: SSIS Mapping documentation

    Well, it can be done in Powerdesigner, but not that easily.

    (and Powerdesigner isn't actually a documenting tool).

    I'm going to work with Powerdesigner in the following days, I'll let you know...

  • RE: SSIS Mapping documentation

    Brandie Tarvin (10/20/2010)


    I'd still like the OP to answer. Assumptions about this sort of thing are dangerous.

    Well, that's why I added "normally".

  • RE: Script Task Carraige Return

    If you really can't get rid of those final characters (because apparently some "inverse-thief" puts them there), you can always try to put some bogus data in there and then...

  • RE: SSIS Mapping documentation

    Normally the mapping of an ETL flow is some sort of matrix where you "map" the input columns with the output columns.

    E.g.: Input_Street + Input_StreetNumber = Output_Address

  • RE: Dervied Column conversion from DT_Str to DT_DBTimestamp

    Brandie Tarvin (10/20/2010)


    ...except I may have just figured out why the Bulk Insert Task isn't working... More experimentation needed. WHOO.

    Great, it seems that you are getting there 😀

  • RE: Dervied Column conversion from DT_Str to DT_DBTimestamp

    I never use the == TRUE(/FALSE) with the ISNULL function. There is not really a point comparing a boolean value with another boolean value, so I just take the original...

  • RE: SSIS Data Flow Error - Global\DTSQLIMPORT

    I guess SSIS does some validation first before it starts running and that this validation fails. You can see in the output window in what stadium the package threw an...

  • RE: Dervied Column conversion from DT_Str to DT_DBTimestamp

    This is the expression from Steve in "derived column language" (aka put everything on one stupid line language):

    (ISNULL(effDt) || LEN(TRIM(effDt)) < 8) ? NULL(DT_DATE) : (DT_DATE)(SUBSTRING(effDt,5,2) + "/" + SUBSTRING(effDt,7,2)...

  • RE: Cube Process Failed

    Check if the record also exist in your dsv, not just in your database. Use the queries that you use in your dsv to locate the record. Also make sure...

  • RE: Best Way to Learn SSIS 2008 Scripting

    I used the following book to get up to speed with VB.NET:

    Programming Visual Basic 2008 by Tim Patrick, published by O'Reilly.

    You don't need to read every chapter in the book...

Viewing 15 posts - 10,981 through 10,995 (of 11,678 total)