Forum Replies Created

Viewing 15 posts - 1,501 through 1,515 (of 1,583 total)

  • RE: Best way to check for existing record before an insert

    Sorry to not have mentioned that prior.

    So forigiving my ignorance here...how would I implement it?

    I've got a File data flow source connected directly to my SQL Server Data Flow Destination

    How...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Best way to check for existing record before an insert

    Seems like there would be a lot of overhead with that as I'd be comparing a single record from a flat-file against a table that has 50+ million rows?

    I'll give...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Best way to check for existing record before an insert

    This is basically The situation I have in my Data Flow:

    Flat File

    |

    Derived Column

    |

    Data Conversion

    |

    SQL Server Destination

    Are you saying something like:

    Flat File

    ...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: UPSERT USING SSIS 2005

    I have to ask this question:

    In poorly designed tables that have 400+ columns (but luckily do have a unique guid as a PK), wouldn't it just be easier to check...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: reorg index failed and tempb is full

    In the scripts above, there's just that:

    @MinPages int = 50, (could be any # of course)

    @FragStart int = 10,

    @FragEnd int = 25

    /* Remove records not needed for the Cursor */

    DELETE...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Question about "coalesce"

    ISNULL may still be preferred as ISNULL will cast the result to the datatype of the first expression evaluated.

    Again, just a performance thought - hope it works out either way!

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: reorg index failed and tempb is full

    Just wanted to throw this out there: I don't believe you should never set a maximum for the tempdb files (more specifically the LDF files), it's better to let them...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Question about "coalesce"

    I would reccomend using ISNULL() instead of COALESCE()

    SQL Server will most often interpret COALESCE as a CASE expression which can hinder the query optimizer from generating/choosing an optimal query plan...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: SSIS package variables not visable in Execute SQL Task

    The issue was due to the fact I have 2 ?'s in my Execute SQL task, while they represent the exact same parameter, I had only created 1 parameter -...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: SSIS package variables not visable in Execute SQL Task

    Thanks,

    I have changed the Paramter Name to 0 and still receive:

    SSIS package "F-Tables.dtsx" starting.

    Error: 0xC002F210 at Execute SQL Task, Execute SQL Task: Executing the query "UPDATE _ReadyTables

    SET Loaded = 1

    WHERE...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: datetime => how to have complete date with 00:00:00.000

    But wouldn't that defeat the purpose of getting a date like "2011-04-08 00:00:00.000" in the first place?

    SELECT DATEADD(dd,0,GETDATE()) results in "2011-04-08 09:17:05.080"

    Consider I have a developer who writes...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: SSIS package variables not visable in Execute SQL Task

    I am having a similar issue...but just can't get this too work. Why is SSIS so frustrating? To read about how to do something and then actually trying...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: datetime => how to have complete date with 00:00:00.000

    Jeff, what do you suggest as a best-practice for returning a date with 00:00:00.000?

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: SQL Server running incredibly slow since Friday...

    In our existing architecture I don't know if we have much choice with our linked servers. The tables we have from one of the 3rd party DB systems doesn't...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Disabling the Named Pipe Protocol in SQL Server

    Would there be any performance benefit to disabling the Shared Memory Protocol?

    We have a server that executes some rather large queries then pulls the data back to it...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

Viewing 15 posts - 1,501 through 1,515 (of 1,583 total)