Forum Replies Created

Viewing 15 posts - 9,226 through 9,240 (of 13,876 total)

  • RE: Retrieving SubFolder Names in SSIS

    You can capture the current iteration's file path in a user variable.

    Have a look at the Variable Mappings section here[/url] and let us know if you need more info.

  • RE: Copy a file from a server on the internal network to the internal network server outside - DMZ

    antonio.estima 4150 (6/25/2014)


    Hello Guys,

    I have an activity that was created using SSIS 2008 R2, which consists of copying a file from a server within the network to a server...

  • RE: Staging Database Question

    imani_technology (6/24/2014)


    Quick Update:

    I decided that using a simple backup/restore might not be the best idea for staging. Why? Because:

    1) We are backing up from one server on one...

  • RE: Incremental Load

    You have some bizarre looking char dates there.

    Are you looking to do INSERTS, or INSERTS and UPDATES or INSERTs, UPDATEs and DELETEs for your incremental load?

    Do you have such columns...

  • RE: The Last Line of Defense

    Stuart Davies (6/18/2014)


    I am a single point of failure and have been all the time in my current job (5 years) and support in house applications. Apparently we "don't have...

  • RE: True Or False?

    If you script the stored proc as CREATE from SSMS, you will see something like this at the start:

    set ansi_nulls on

    go

    set quoted_identifier on

    go

    If you make sure that your set options...

  • RE: Staging Database Question

    Then the backup/restore idea will be fine.

  • RE: The Last Line of Defense

    Beatrix Kiddo (6/17/2014)


    My Senior DBA likes to be the only one that knows some stuff so (in my opinion) he actively excludes me from situations where I might be able...

  • RE: Staging Database Question

    imani_technology (6/16/2014)


    Thanks for the reply. I think we will need to do the backup/restore once or twice a day. What's the best way to automate this?

    Via a SQL...

  • RE: One SSIS Project or Several?

    imani_technology (6/16/2014)


    We are using SSIS 2012, which has the project deployment model. Will having several packages affect the deployment vs. one package?

    Yes it will. One project = one ispac...

  • RE: dervied box

    ronan.healy (6/16/2014)


    well i way trying to use a dervied column

    Please note: the column is 'derived', not 'dervied' 🙂

  • RE: Continuous hours of missing data

    Anamika (6/15/2014)


    Hi,

    In my ETL feed i need to identify whether the data is missing for continuous 5 hours. What could be the efficient way of doing this in SSIS....

  • RE: Surrounding proc definitions with BEGIN ... END

    May I thank you all for the comments and insight, especially Jeff for the detailed and interesting response.

    I shall continue omitting the superfluous BEGIN/END, though I won't complain too much...

  • RE: Join on different data types

    ChrisM@Work (6/11/2014)


    CREATE TABLE #temp (colint INT, colvarchar VARCHAR(10), colcomputed AS CAST(colvarchar AS INT))

    INSERT INTO #temp (colint, colvarchar) SELECT 1, '10'

    SELECT * FROM #temp

    CREATE INDEX ix_colcomputed ON #temp (colcomputed)

    SELECT colcomputed FROM...

  • RE: Join on different data types

    Add a computed persisted int column, add index and join on that?

Viewing 15 posts - 9,226 through 9,240 (of 13,876 total)