Viewing 15 posts - 1 through 15 (of 5,986 total)
Thanks to DevOps tools like DbUp and Octopus, less of my day is spent running "DBA, can you please deploy ..." type scripts.
Also, scripts for doing things like checking disk...
November 20, 2024 at 6:50 pm
When I think of a data-warehouse, I'm thinking OLAP, meaning data is updated on a schedule, contains versioned history of changes, and probably summarized as well for fast reporting and...
October 7, 2024 at 5:29 pm
".. For very large deletions, consider disabling indexes and constraints before deleting, then rebuilding them after: .."
Dropping non-clustered indexes and constraints can improve performance of bulk deletes - but you...
October 7, 2024 at 12:58 pm
For years, I've been getting that same error every time I submit, but it still creates the post.
Because it wasn't being...
September 30, 2024 at 1:32 pm
...
The last one is VB6. Microsoft came up with Visual Basic to help those developers who had a hard time grokking C++ for Windows development. I don't know what...
September 27, 2024 at 4:06 pm
If you are designing a new object with DML triggers, especially nested or recursive enabled triggers, then you should take a step back and consider if there is a better...
September 27, 2024 at 2:26 pm
Yeah, automatic touchless transactions can make your life easy - until you have to deal with fraud. It could spoil someone's vacation or holiday.
Perhaps we could design tap cards in...
September 25, 2024 at 1:16 pm
Historians in the future, who look at archival copies of today's "news" websites, will laugh at all the stupid memes and click bait ads appearing in the margins. Also, what's...
September 23, 2024 at 6:06 pm
The fact that most input parameters are defined as NVARCHAR (4000) is evidence that the original code was generated by an ORM.
My guess is that the developers were instructed to...
September 20, 2024 at 1:33 pm
We have about 900 Point Of Sale locations across the US running SQL Server Express on workstations and SSD drives. So, the disks are not invisible. If the event of...
September 9, 2024 at 2:46 pm
This thing about asking for an improbable mix of skills seems far more common for third party recruiters. Not only do these shops pad job descriptions, but they pad resumes...
September 5, 2024 at 5:40 pm
Another suggestion is: don't the table accumulate 10s or 100s of millions of rows. Use a job to truncate off-hours on a daily or weekly schedule.
For example, on some servers,...
September 3, 2024 at 2:29 pm
when you already have partitions, you could simply do a
TRUNCATE TABLE dbo.big_stuff WITH (PARTITION(1 TO $partition.pf_big_stuff_function(date_key)));
I leverage partitions to truncate data on large tables as well,...
September 3, 2024 at 2:21 pm
Steve, I was just thinking yesterday that I want to know more about Kafka. It's leveraged by one of the application teams to replicate a subset of tables, columns, and...
August 28, 2024 at 1:46 pm
Even with the rise of cloud hosting and AI, my belief is that junior level developers and database/server administrators will always be in demand - but just not in the...
August 27, 2024 at 3:12 pm
Viewing 15 posts - 1 through 15 (of 5,986 total)