Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: SSIS and Stored procedures using temp tables

    Would this not work and be a little less wacky?

    Create table #Contact

    (contactID int,

    firstName Nvarchar(50),

    MiddleName Nvarchar(50),

    Lastname Nvarchar(50),

    Suffix Nvarchar(50),

    EmailAddress Nvarchar(50))

    INSERT INTO #Contact

    Select ContactID, Firstname, MiddleName,

    LastName, Suffix,...

  • RE: Identifying Queries Running Slower Than Normal

    I've been playing around with it this morning and have already found it helpful. We run massive matching (fuzzy) and deduping jobs that can run for days so tuning...

Viewing 2 posts - 1 through 2 (of 2 total)