Forum Replies Created

Viewing 15 posts - 1 through 15 (of 198 total)

  • Reply To: Never is Not the Policy

    Fun fact: Auto close can cause your monitoring software to throw several of false alerts when the database is closed after the app closed its connection.

    Took me a while several...

    God is real, unless declared integer.

  • Reply To: CROSS APPLY Fundamentals: Part 1

    One of main problems of the SQL code parser is, that it doesn't save intermediate results for columns that are calculated per CROSS APPLY (or in a CTE or a...

    • This reply was modified 1 weeks, 3 days ago by Thomas Franz.

    God is real, unless declared integer.

  • Reply To: CROSS APPLY Fundamentals: Part 1

    Besides using it to call functions (e.g. CROSS APPLY GENERATE_SERIES() or STRING_SPLIT() or your own ones), I often use it to calculate intermediate results instead of repeating the code multiple...

    God is real, unless declared integer.

  • Reply To: Imagine the Physical World

    A few days ago I explained the concept of an untrusted foreign key constraint to a sales person from a vendor:

    All doctors in a hospital should hold a doctorate. However,...

    God is real, unless declared integer.

  • Reply To: BIT_COUNT() IV

    for the sake of completeness:

    SELECT BIT_COUNT(ASCII('A'))

    will return 2 since ASCII('A') = 65 = 100 0001 = 2 bits set

    God is real, unless declared integer.

  • Reply To: DBCC CHECKDB Limits II

    Disabling an index is the same as dropping it, except that it's meta data are preserved, so that you can rebuild it later without the need to know the exact...

    God is real, unless declared integer.

  • Reply To: A Fun Computer Quote

    To be honest I had choosen Matrix, when it would have been in the list.

    Didn't someone (the Oracle or the "god") said something similar regarding Agent Smith in the 3rd...

    God is real, unless declared integer.

  • Reply To: The Decoded Value

    For the sake of completeness:

    To get the original string, you need to use

    SELECT CONVERT(VARCHAR(100), BASE64_DECODE(@encoded))

    which will return 'Hello SQL Server 2025!'

    God is real, unless declared integer.

  • Reply To: T-SQL in SQL Server 2025: Fuzzy String Search I

    It's nice to have such a tool in the toolbox (just in case), but I find it hard to find a real use case.

    Maybe to compare public names as for...

    God is real, unless declared integer.

  • Reply To: SQL Server 2025 Backup Compression Algorithm

    From the conclusion in the original article:

    Keep in mind to delete all existing target backup files before you launch the next backup statement or backup job using a new compression...

    God is real, unless declared integer.

  • Reply To: The OUTPUT Clause for INSERT and DELETE Statements

    Use the OUTPUT Inserted.* INTO #tmp on an INSERT when you need the IDENTITY / NEW_ID / SEQUENCE values for the new records (e.g. for further processing / creating referencing...

    God is real, unless declared integer.

  • Reply To: A Big PK

    Before you all add now 16 other columns to your PK, please remind that you still must not have more than 900 bytes in a clustered index 🙂

    Clustered Index:

    Msg 1944,...

    God is real, unless declared integer.

  • Reply To: Think LSNs Are Unique? Think Again - Preventing Data Loss in CDC ETL

    I'm not sure, if a check for >= @start_lsn would work, when there are multiple parallel inserts, each within its own session

    E.g.

    • session 1 uses 0x001 and  is very slow...

    God is real, unless declared integer.

  • Reply To: MySQL’s BLACKHOLE Storage Engine: The Odd Feature I Wish SQL Server Shipped With

    Well, MSSQL has several mechanics that can do something similar.

    If you want to run a huge SELECT but don't care about the results open the Query Options  go to Results...

    God is real, unless declared integer.

  • Reply To: Who am I?

    When you want it 100% correct, you should use ORIGINAL_LOGIN().

    A sysadmin has the privilege to inpersonate another account (I use this sometimes to check permissions).

    And only ORIGINAL_LOGIN() would return my...

    • This reply was modified 10 months, 3 weeks ago by Thomas Franz.

    God is real, unless declared integer.

Viewing 15 posts - 1 through 15 (of 198 total)