Forum Replies Created

Viewing 15 posts - 541 through 555 (of 5,685 total)

  • RE: Simultaneous loading using ssis

    Kannan Vignesh (1/3/2014)


    i am Kannan.

    Hello, welcome to SSC.

    i need tmplate for loading flat files into staging as well as historical simultaneously.

    You've combined three things here at once.

    First, that...

  • RE: Change SSIS variable with reference in C# ?

    No. Passing in and out of the variables set in SSIS is byVal only. You need to use the long name. If you're going to manipulate it...

  • RE: Rebuilding Indexes very often is good?

    I'd like to add a special case to the general philosophy here. I worked on a BLOB system that was the majority of storage in the DB, and we...

  • RE: Locking App

    LinksUp (12/30/2013)


    First, let me say up front, that 1) I am not a DBA. I am just the application developer and 2) I know this is an open ended question.

    Having...

  • RE: PIVOT on months

    You'll have to go to dynamic SQL to pull this off.

    This article will point you at the generic idea:

    https://www.simple-talk.com/blogs/2007/09/14/pivots-with-dynamic-columns-in-sql-server-2005/

    Also, you'll need to name your columns something like Apr13 and Apr12...

  • RE: Stored procedure taking too long to run

    petr.caslavka (12/30/2013)


    Evil Craig,

    absolutely love your sense of humor and your comments.

    Well, thank you. 🙂

    On the first issue: 1. There is a very distinct reason for this piece of code and...

  • RE: Adding a C# import causes SSIS error ?

    blasto_max (12/30/2013)


    Error at Send Mail: The binary code for the script is not found. Please

    open the script in the designer by clicking Edit Script button and

    make sure it...

  • RE: Stored procedure taking too long to run

    In pieces:

    --If Time Clock Details Table doesn't have the number of columns we're expecting, then abort

    DECLARE @ColumnCount INT

    SET @ColumnCount = (SELECT COUNT(column_name) FROM information_schema.columns WHERE table_name = 'ps_micros_e7_time_clock_details' AND column_name...

  • RE: SSIS - new CDC tasks

    SSIS doesn't like dynamic metadata, so you can't really use the basic tools in SSIS for something like that, you'd have to create source/targets for each table.

    There are some third...

  • RE: Any way to speed up a shrink DB operation?

    I highly recommend putting the DB into single user mode, to avoid possible usage overlaps and concerns. You'll want to take the DB basically offline while you do this,...

  • RE: Dynamic Mapping for XML in SSIS?

    Karthiart,

    If you only have two files like this, I would recommend the above, as it's simpler.

    However, if you have multiple XML files missing attribute tags depending on the source, but...

  • RE: SYNTAX Help please...

    ScottPletcher (12/20/2013)


    The smarmy condescension really isn't justified,

    Wasn't justified either way. My apologies, that was undeserved. It didn't read that way to me when I first wrote it.

    given...

  • RE: SYNTAX Help please...

    Apologies, I missed your split response on this earlier. I scrolled too quickly.

    I wasn't ignoring anything. Me real point was that indexes could be modified in the future in...

  • RE: SYNTAX Help please...

    ScottPletcher (12/20/2013)


    Admittedly the gain is much clearer when the clustering key is the ISNULLed column. So, let's just flip the clustering keys on your original table -- as might...

  • RE: SYNTAX Help please...

    Jeff, neat trick with the a.Field > ''. Was unaware of that.

    ScottPletcher (12/20/2013)


    There could be great harm in it if either (1) SQL could have done seeks on both...

Viewing 15 posts - 541 through 555 (of 5,685 total)