Viewing 15 posts - 16 through 30 (of 201 total)
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.
God is real, unless declared integer.
December 16, 2025 at 5:12 pm
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.
November 11, 2025 at 10:29 am
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...
God is real, unless declared integer.
October 6, 2025 at 8:42 am
When you need to change an old procedure for the first time and decide to format it or make some other cosmetic changes, to this stuff first and check it...
God is real, unless declared integer.
October 1, 2025 at 8:52 am
IS DISTINCT FROM or its counterpart IS NOT DISTINCT FROM are added in SQL 2022 and are very handy when comparing columns that may contain NULL
So instead of a slow
WHERE...
God is real, unless declared integer.
September 10, 2025 at 11:10 am
I doubt that anybody (besides some old, long retired boomer nerds that implented it decades ago) are using COLUMNS_UPDATED(), particularly since
God is real, unless declared integer.
August 27, 2025 at 8:26 am
Seems to be an article based primary on the output of an AI - and even the caption of the article is wrong, since SSMS is just the GUI but...
God is real, unless declared integer.
August 7, 2025 at 8:10 am
The question is incorrectly formulated.
An INSERT on the end of a table (as with a clustered identity column) would usually just add new pages, while inserting into a table with...
God is real, unless declared integer.
August 6, 2025 at 8:00 am
I wonder, if someone is really using the COLUMNS_UPDATED() function - it is way to complex for 99% of the scenarios particularly when you need to shuffle bits and had...
God is real, unless declared integer.
June 11, 2025 at 9:52 am
How about having SQL Server analyse and intelligently propose new indexes, based on missing indexes information in the plan cache or Query Store.
No, you really don't want this...
God is real, unless declared integer.
April 30, 2025 at 7:59 am
In a world with changing requirements, something is only feature complete until someone finds new use-cases.
I really wonder, why nobody ever has tried (or better was sucessfull) of running...
God is real, unless declared integer.
April 29, 2025 at 5:17 pm
How can something be called feature complete, when it has a feature, but it is still clumsy? Is a person with a crippled limb "feature complete"?
Examples: see Brent Ozars 1st...
God is real, unless declared integer.
April 28, 2025 at 11:38 am
Vote for DB-First too - as long it are additions to the database, e.g. new columns or tables etc. As long you provide good default values (for new columns), the...
God is real, unless declared integer.
April 16, 2025 at 2:06 pm
I think this is an AI generated article that contains lots of failures posted by a person with no real knowledge that was not even willing to test the results...
God is real, unless declared integer.
March 26, 2025 at 9:05 am
you can speed your WHILE loops up, when you simply do
WHILE 1 = 1 -- endless loop
BEGIN
UPDATE TOP (@batchsize) ... WHERE ...
...
God is real, unless declared integer.
March 26, 2025 at 8:56 am
Viewing 15 posts - 16 through 30 (of 201 total)