Forum Replies Created

Viewing 15 posts - 31 through 45 (of 192 total)

  • Reply To: Comparing Images

    when I cast the values as VARBINARY(MAX) it works too.

    TRUNCATE TABLE dbo.Image_Staging; TRUNCATE TABLE dbo.Images
    INSERT INTO dbo.Images (imageid, imagestatus, imagemodified, imagebinary) VALUES (1, 1, GETDATE(), HASHBYTES('SHA2_512',...

    • This reply was modified 1 years, 7 months ago by Thomas Franz.

    God is real, unless declared integer.

  • Reply To: Using Outer Joins

    Bad style of the query (I know, it is intended here, but you should never write it this way in real code).

    Instead of

    SELECT 
    c.CustomerName, COUNT(oh.OrderID)
    ...

    God is real, unless declared integer.

  • Reply To: Converting Old Running Total Code to Window Functions

    Nice solution.

    Instead of combining LAG() and SUM() OVER you could have used just LAG - at least when it are just a fixed number of the last 4 entries. For...

    • This reply was modified 1 years, 8 months ago by Thomas Franz.

    God is real, unless declared integer.

  • Reply To: etaoin shrdlu

    Producing a Year-2100-problem by setting 31.12.2099 as default valid_to date. Ensures the job for my great-grandkids or their AI.

    God is real, unless declared integer.

  • Reply To: How to Delete Large Amounts of Data

    Sorry, but this script isn't really good in my opionion.

    • why are you counting the numbers of rows to delete, this is a unneccessary big read
    • you could write a...

    God is real, unless declared integer.

  • Reply To: How to Delete Large Amounts of Data

    David.Poole wrote:

    At a previous employer we used partition switching to do massive deletes.

    when you already have partitions, you could simply do a

    TRUNCATE TABLE dbo.big_stuff WITH (PARTITION(1 TO...

    God is real, unless declared integer.

  • Reply To: Planes, Trains, and Automobiles

    I  just wonder how this even could happen. Did all the companies not install the patches on the testing / dev environment before? And do they not have a cluster...

    God is real, unless declared integer.

  • Reply To: Meet the new Google AI Assistant Gemini

    the problem is, that DATETIME is not an exact datatype (similar to float vs. decimal). DATETIME suppots only about 0.003 accuracy, so a DATETIME2 = '20240708 23:59:59.998' would be converted...

    God is real, unless declared integer.

  • Reply To: Meet the new Google AI Assistant Gemini

    The two statements in the chapter More details of JOINs are equal.

    And both are wrong, since you need to put the SUM(o.Amount) > 1000 into the HAVING and not the...

    God is real, unless declared integer.

  • Reply To: An Upgrade Slog

    Can't you use Redgate SQL Backup to do restores that are no longer possible with native SQL backups? I think, I did this some years ago with SQL 2005 to...

    God is real, unless declared integer.

  • Reply To: How Often Do You Update SSMS?

    Still using SSMS 18.x since my second most important Addon (besides Redgate SQL Prompt) with the name SSMSBoost seems to be deprecated and there is no version that works with...

    God is real, unless declared integer.

  • Reply To: Rounding Numerics

    With

    SET ARITHABORT OFF; -- or ON, it doesn't matter 
    SET NUMERIC_ROUNDABORT OFF;

    I will not get a warning (contrary to the explanation). But with NUMERIC_ROUNDABORT ON I will...

    God is real, unless declared integer.

  • Reply To: An In-Depth Look at MIXED_PAGE_ALLOCATION and Changes in Page Allocation

    Parthprajapati wrote:

    Appreciate the feedback! While MIXED extents have limitations, they can still offer performance & storage benefits in specific cases like TEMPDB management. I'm open to further discussion & exploring...

    • This reply was modified 2 years, 5 months ago by Thomas Franz.

    God is real, unless declared integer.

  • Reply To: An In-Depth Look at MIXED_PAGE_ALLOCATION and Changes in Page Allocation

    In my opinion this article was written by ChatGPT or another KI tool with no real knowlegde. Besides the errors mentioned by Uwe Ricken it is not more than a...

    • This reply was modified 2 years, 5 months ago by Thomas Franz.

    God is real, unless declared integer.

  • Reply To: Projects To Showcase Your Skills

    Regarding the fact, that people are fired but other companies can't find candidates:

    Besides the skill mismatch problem it may be a quality problem too. The IT was booming the last...

    God is real, unless declared integer.

Viewing 15 posts - 31 through 45 (of 192 total)