Forum Replies Created

Viewing 15 posts - 1 through 15 (of 5,986 total)

  • Reply To: Boring or Scripting

    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...

  • Reply To: The Load of Real Time Data Warehouses

    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...

  • Reply To: How to Delete Large Amounts of Data in Microsoft SQL Server

    ".. 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...

  • Reply To: Unstuck

    Jeff Moden wrote:

    For years, I've been getting that same error every time I submit, but it still creates the post.

    Because it wasn't being...

  • Reply To: Dead to Me

    Rod at work wrote:

    ...

    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...

  • Reply To: Dead to Me

    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...

  • Reply To: AI Is Great and Tech is Failing

    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...

  • Reply To: etaoin shrdlu

    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...

  • Reply To: Bad Stored Procedures

    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...

  • Reply To: The Invisible Disk

    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...

  • Reply To: Fifty Percent

    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...

  • Reply To: How to Delete Large Amounts of Data

    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,...

  • Reply To: How to Delete Large Amounts of Data

    Thomas Franz wrote:

    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,...

  • Reply To: A Kafka Introduction

    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...

  • Reply To: Less Junior Staff

    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...

Viewing 15 posts - 1 through 15 (of 5,986 total)