Forum Replies Created

Viewing 15 posts - 226 through 240 (of 1,248 total)

  • Reply To: How to filter non-existing records in SQL

    Thank you for the article. The NOT IN operation > I would steer clear of this for performance and the potential for it to blow up if there is an...

    • This reply was modified 6 years, 10 months ago by MMartin1. Reason: less wording

    ----------------------------------------------------

  • Reply To: Some of my greatest mistakes

    I know about the hesitation with open transactions, but hard to be too careful when it comes to ensuring the data manipulation is done correctly.

    ----------------------------------------------------

  • Reply To: Some of my greatest mistakes

    You can use something like the below to indicate a total failure somewhere. At least in the testing phase.

    begin transaction 

    declare @rowcount int
    Select @rowcount = count(*) from...

    ----------------------------------------------------

  • RE: How can I update original Ole DB Source after Multicast?

    I can imagine :). I get those as well on posts I did a long time ago. Surprise.!

    ----------------------------------------------------

  • RE: Column names on INNER JOINS

    michael.leach2015 - Sunday, November 11, 2018 6:01 PM

    Jeff Moden - Sunday, November 11, 2018 1:59 PM

    ----------------------------------------------------

  • RE: How can I update original Ole DB Source after Multicast?

    Note this is a ten year old post 🙂

    timestamp (basically confirming the extract was completed)

     

    I dont see the difficulty here though in theory....

    ----------------------------------------------------

  • RE: Column names on INNER JOINS

    InvoiceTotals.InvoiceID

    is what the message indicates the problem is. If this is a table the column name could have been changed or dropped. Or if a view...

    ----------------------------------------------------

  • RE: Function Information

    Jeff Moden - Friday, November 2, 2018 3:16 PM

    MMartin1 - Friday, November 2, 2018 12:25 PM

    ----------------------------------------------------

  • RE: Function Information

    People have mentioned about formatting and casing consistency in code for readability. To me readability starts with knowing what each piece is doing to check for logic and not just...

    ----------------------------------------------------

  • RE: Update and Calculate FIFO

    If it reasonably takes an employee months to learn how a business unit works, it is not reasonable to expect a forum helper to pickup all details in one shot....

    ----------------------------------------------------

  • RE: string to DATE failing when appending to a table.

    Glad to know that it worked for you. 
    Cheers.

    ----------------------------------------------------

  • RE: string to DATE failing when appending to a table.

    Using your data, I was able to successfully import to a table with date data type. Ahead of the import, I specified the three columns shown as [DT_dbDAte] types. I...

    ----------------------------------------------------

  • RE: Help with ETL

    lbrigham - Thursday, October 25, 2018 8:26 AM

    Forgive the ETL portion of the title. This is overall part of a larger ETL...

    ----------------------------------------------------

  • RE: Help with ETL

    One thing I would add is instead of having a paycheck amount, having a paycheck ID that links to a paychecks table. This normalises the design better. The would be...

    ----------------------------------------------------

  • RE: I need to change the value of two fields as I insert the rows into a table

    I have to wonder why you are changing the column values when copying the data to a new table. It definitely will not help with auditing if you need to...

    ----------------------------------------------------

Viewing 15 posts - 226 through 240 (of 1,248 total)