Viewing 15 posts - 16 through 30 (of 1,246 total)
Insightful , thank you for the information. One comment I do have
"If the database is accessible, take the backup. The backup might be used to restore the data which is...
----------------------------------------------------
December 1, 2025 at 8:15 am
MSSQL has a similar function, but at the DB level, so we have an associated database to the main one, which contains something like logs and performance monitor data....
----------------------------------------------------
November 22, 2025 at 9:33 am
Simple and to the point, thank you. Another interesting exercise would be where you have a table partitioned across file groups. It would be interesting to see how restoring (for...
----------------------------------------------------
November 1, 2025 at 3:47 pm
Thank you for the good point you make. Indeed indexes do help with isolating transactions and avoiding contention on a common resource.
I do want to note some areas where I...
----------------------------------------------------
October 22, 2025 at 7:15 am
One would be wise to consider that a HR survey may be a backdoor to find people who are not content in their job, instead of a genuine opportunity for...
----------------------------------------------------
October 22, 2025 at 6:17 am
Thank you, this is helpful information. If the data values of a column are more evenly distributed then the idea is that the three plans will be similar if not...
----------------------------------------------------
September 19, 2025 at 4:39 am
You posted "After you create the Availability Group, SQL Server automatically adds two additional system databases—SQLAG-2022_master and SQLAG-2022_msdb". However, in the picture the new system databases are not in the...
----------------------------------------------------
September 1, 2025 at 8:52 am
Here is an illustration of the basic commands, from here you can learn what each means. You probably will only need to use a few.

----------------------------------------------------
August 29, 2025 at 7:51 pm
Thank you for the informative article. I think a diagram of the work flow would provide a better understanding.
----------------------------------------------------
August 29, 2025 at 7:43 pm
I would guess the answer lies in upgrading the design of the database so less of the values you are after need to be calculated with an inner select that...
----------------------------------------------------
August 14, 2025 at 7:21 pm
It would be good to see the actual SELECT from that table. As mentioned before there could be function(s) there. Another possibility is a cartersian join.
----------------------------------------------------
August 14, 2025 at 7:16 pm
"The maintenance installation script that creates all of the stored procedures is over 9000 lines. I am not going to spend the hours reviewing that "
I dont review the 9000 lines...
----------------------------------------------------
August 14, 2025 at 5:18 am
Thank you for taking the time to experiment and share your findings. This is important to note. I wonder though, if you would temporary switch the recovery_model to bulk_insert ,...
----------------------------------------------------
July 21, 2025 at 5:14 am
"determine whether the query optimizer chose to use a primary key index"
The execution plan will definitely provide that information. However so would sys.dm_db_index_usage_stats in controlled cases where you know...
----------------------------------------------------
July 10, 2025 at 7:18 am
The functions look quite standard. I could port these from SQL Server (not sure about the agg function though).
----------------------------------------------------
July 10, 2025 at 7:01 am
Viewing 15 posts - 16 through 30 (of 1,246 total)