Viewing 15 posts - 76 through 90 (of 295 total)
The pattern we use for a similar process is this.
MERGE INTO final_table
USING (SELECT key_column_1
, key_column_2
...
July 28, 2021 at 9:41 am
I've used BEGIN DISTRIBUTED TRANSACTION. I've got a control table in one database that is kept in line with a copy in another database via a linked server.
June 28, 2021 at 3:31 pm
Having looked through the "people that have been fired" article, I can say I agree with the outcome in almost every case.
June 25, 2021 at 10:11 am
I agree with your point about not being too concerned with titles. In my career I've been a programmer, senior programmer, analyst programmer, senior analyst programmer, data engineer and senior...
June 10, 2021 at 10:55 am
Are you able to amend the file layout at all? It may be better to push the problem back to COBOL by adding record no. as a field and getting...
May 7, 2021 at 8:34 am
I would say; take the time to learn what your employer does. Many of us in IT work in the IT department of companies whose business is something else entirely....
May 7, 2021 at 8:23 am
If I've understood correctly, you write the results of a query to a work table and those results are tagged with a GUID. Other screens then work on this data;...
April 28, 2021 at 9:34 am
It seems that standards tend not to be developed until there's already a large body of existing code. You then have a choice of following the standard or following the...
March 25, 2021 at 3:33 pm
I suspect the speaker was using the word snowflake in its meaning of unique rather than the more recent meaning of easily offended. I've not worked in an IT department...
March 18, 2021 at 9:36 am
Turns out our database backups should be reasonably safe - we're still backing up to tape!
February 17, 2021 at 3:18 pm
If you do each iteration in a branch and only merge those Jira items you want to promote into Main prior to deployment, you can generate a script by comparing...
January 20, 2021 at 2:59 pm
I think you need something like this (below). As mentioned by Ratbak, you'll need to drop indexes and foreign keys before making the change and you should definitely run it...
November 11, 2020 at 3:07 pm
When adding the reference to the non-managed database, you should set "Suppress Reference Warnings" to True. I think that will get around your problem.
November 5, 2020 at 9:53 am
Are you able to see whether it's blocked by another transaction? The fact that it returns null on the occasions when it takes a long time suggests some other process...
October 30, 2020 at 2:14 pm
Jeff's comment about the cut-off for 2 digit years reminded me that the millennium bug was "fixed" at one place I worked by using YY>20 as the cutoff to guess...
October 15, 2020 at 11:12 am
Viewing 15 posts - 76 through 90 (of 295 total)