Viewing 15 posts - 1 through 15 (of 295 total)
As well as the items mentioned in your article, I think it would be useful if the training could include input from people at the coal-face in various departments so...
November 20, 2025 at 9:56 am
You often need a bigger team to build a system than you do to keep it running once implemented, so it makes sense for some of that team to be...
November 13, 2025 at 10:31 am
I frequently get asked for one-off extracts from our data warehouse which I save as spreadsheets with meaningful names like Reconciliation Failures. Then, inevitably, the "one-off" gets requested repeatedly (often...
November 10, 2025 at 1:21 pm
I once worked at a company where HR was referred to as "Human Remains". I think that says a lot about that company's culture.
October 24, 2025 at 1:54 pm
First, create a table-valued function that can be re-used elsewhere such as the one below which I originally found somewhere on this site. Then use the function to remove any...
August 21, 2025 at 9:44 am
Interesting article, but TRUNCATE TABLE can be rolled back.
DROP TABLE IF EXISTS dbo.bob;
CREATE TABLE dbo.bob (bob_id INT IDENTITY(1, 1), bob_code VARCHAR(10) NOT NULL);
INSERT dbo.bob
(
...
July 23, 2025 at 10:46 am
When I was doing technical support for a mainframe package at a software house we had one customer where the IT director was absolutely obsessed with his new toy. He...
July 15, 2025 at 7:56 am
I've spent 2 weeks (so far) testing and tweaking a "minor" change to automate a manual process that provides month-end data for use in reporting. If I get this wrong,...
July 9, 2025 at 8:47 am
We've been stuck on 2016 for a long time and the thing I'm looking forward to most is not specific to 2025. It's the change to the "string or binary...
June 18, 2025 at 8:00 am
Ah yes, Shadow IT. I've had several cases where a solution has been built in a combination of Access, Excel and Word. It works fine until the data volume reaches...
May 2, 2025 at 2:55 pm
I spent all the first 36 years of my career working in the office and didn't think twice about the commute. When we all had to WFH in 2020, I...
April 23, 2025 at 2:29 pm
I think using deployment frequency as a metric is a bit like measuring programmer productivity by counting key strokes. You'd need a means of subtracting deployments that were necessary to...
April 3, 2025 at 8:04 am
This looks similar to a problem I posted a few years back (link below). It appears that there are some situations where data conversion is attempted before the filters are...
April 2, 2025 at 10:04 am
Going down to a 2 day week sounds lovely in theory. In practice, will our employers pay us the same for 2 days as they do now for 5? I...
April 2, 2025 at 9:35 am
This query will list the foreign keys defined in the database.
SELECT fk.name AS fk_name, ts.name AS sub_table, cs.name sub_table_column, tm.name AS master_table, cm.name AS master_table_column
FROM sys.foreign_keys fk
INNER...
February 25, 2025 at 2:19 pm
Viewing 15 posts - 1 through 15 (of 295 total)