Viewing 15 posts - 211 through 225 (of 1,233 total)
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...
November 8, 2019 at 9:03 am
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.
July 14, 2019 at 6:36 am
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...
July 14, 2019 at 6:33 am
I can imagine :). I get those as well on posts I did a long time ago. Surprise.!
November 13, 2018 at 10:22 am
Note this is a ten year old post 🙂
timestamp (basically confirming the extract was completed)
I dont see the difficulty here though in theory....
November 9, 2018 at 10:25 pm
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...
November 9, 2018 at 10:16 pm
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...
November 2, 2018 at 12:25 pm
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....
November 2, 2018 at 12:07 pm
Glad to know that it worked for you.
Cheers.
October 26, 2018 at 12:09 pm
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...
October 25, 2018 at 11:13 pm
October 25, 2018 at 10:26 pm
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...
October 25, 2018 at 10:21 pm
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...
October 25, 2018 at 10:12 pm
Viewing 15 posts - 211 through 225 (of 1,233 total)