Forum Replies Created

Viewing 15 posts - 10,951 through 10,965 (of 13,872 total)

  • RE: ETL Magic with SSIS – Part I

    My comment relates to this sentence:

    1) to fail the package if the file is not available, then execute the package again at a later time, or 2) we can...

  • RE: filter conditions based on condition..

    Your selection logic is flawed. You should read Gail's article, but I think that this would be closer to what you need:

    select * from test_data

    where Eid = (case when...

  • RE: Group by clause on partial select

    You are responding to a thread which is 2 years old!

  • RE: Update with except conditon

    SKYBVI (1/4/2012)


    I want to update a column in a table.

    I am using:-

    update table

    set column name =....

    except (sub query giving other COLUMN VALUES as output)

    I dont want the sub query resulted...

  • RE: choose a random record

    How will the query know that the first result should be excluded the second time it runs? It's no longer random at that point, unless you put the selected names...

  • RE: choose a random record

    xRafo (12/29/2011)


    I just Need 1 row.

    The table have around 2000 records.

    I've been testing the above query but sometimes give 2 times return the same value,

    I need not repeat random...

  • RE: Why Build?

    CHANDRASHEKHAR SINGH (12/29/2011)


    Hi,

    Building a package is a standard Practice. When you deploye your package from Dev environment to Production environement, you should build your package, which will craete the .msi...

  • RE: Assign value of variable based on value in another variable?

    CHANDRASHEKHAR SINGH (12/29/2011)


    Hi,

    If the file is in the same folder, you can give the extension as *.* while configuring your Foreach Loop container.

    Regards,

    Chandrashekhar

    How does this help in determining whether the...

  • RE: timestamp

    Not all millisecond values can be stored by a SQL Server datetime column and perhaps this is causing issues?

    For example

    select CAST('2011-12-21 14:29:54:304' as datetime)

    will return 2011-12-21 14:29:54.303 - showing that...

  • RE: Help with SSIS expression

    ankita.patel01 81294 (12/27/2011)


    that is how we're receiving the data as text. and, need to use ssis to convert this data to proper data type and transform with these scenarios to...

  • RE: Help with SSIS expression

    ankita.patel01 81294 (12/27/2011)


    hello,

    I need to write something in SSIS that will say if my percentages does not equal 100 % then add the total, and whatever the difference is +/-...

  • RE: Can SSIS import a CSV and update a table all in one Data Flow process?

    Capt. Sigerson (12/21/2011)


    It's a good point about how to manage the volume of files in that folder. These are files that can be discarded after upload, but it's a problem...

  • RE: Can SSIS import a CSV and update a table all in one Data Flow process?

    I don't think that the solution proposed is necessarily the best one, as it depends heavily on you being able to derive the name of the file.

    What I would do...

  • RE: Can SSIS import a CSV and update a table all in one Data Flow process?

    I particularly like this sentence:

    ... which means the rows flow in almost as fast as they flow out.

    presumably creating some sort of data vacuum which may implode the pipeline?

    😀

  • RE: Sql Query Whats wrong?

    Slightly unusual syntax. Try this

    SELECT a.TransactionNumber ,

    a.StoreID ,

    a.Transaction_Date ,

    ...

Viewing 15 posts - 10,951 through 10,965 (of 13,872 total)