Viewing 15 posts - 1 through 15 (of 325 total)
This topic is described in the documentation in Use index rebuild to recover from data corruption
August 8, 2025 at 2:31 pm
Implicit conversions generally do not prevent an index seek. If a VARCHAR procedure parameter were to be compared to an NVARCHAR column, SQL Server must implicitly convert the column...
July 13, 2025 at 2:10 pm
It is also possible to use the DMV sys.dm_db_index_usage_stats, e.g. like this:
Run the following query to see how often each index in the current database
has been used...
July 9, 2025 at 4:38 pm
Quoting from the reference given in the explanation:
"The SQL Server Browser service lets users connect to instances of the Database Engine that aren't listening on port 1433 without knowing the...
April 15, 2025 at 9:09 pm
Thanks for this question Steve, I had to at least find a link to the SQL Server previous versions documentation. By the way, the link to SQL...
April 16, 2024 at 12:48 pm
Yes, me too. Using XE takes a lot more work.
December 17, 2023 at 8:44 pm
Thanks for this question. I learned how to Find File Growths with Extended Events. Both references: system health session, and Finding File Growths mentioned in the explanation prove that it...
December 17, 2023 at 6:10 pm
The question is asked clearly: "What is the limit for rows in a Table Valued Constructor?". The documentation states that there is a limit. So there is nothing left to...
November 15, 2022 at 2:31 pm
I agree with Mark. QotD's explanation is incorrect. Both the reference attached to the explanation and the reference given by Mark clearly state that...
October 15, 2022 at 7:02 pm
I had some time, so "I had fun" and put together another way to find the part name from the CTE.
The query below displays the text of the part name...
April 19, 2022 at 1:42 am
In SQL Server 2017 (14.x) and later, it is possible to use the TRIM (Transact-SQL) function:
;WITH ctePC
AS ( SELECT expression
...
April 12, 2022 at 12:19 am
The question is irrelevant to the possible answers and to the explanation given. The question asks about the type of database, not what Amazon Redshift is.
According to Docs AWS "
December 27, 2021 at 3:12 pm
Very weird Qotd. The QotD title is "Azure MariaDB", but the question is about MongoDB workload. MondoDB is probably a typo. Possible answers are more for MongoDB.
December 20, 2021 at 2:09 pm
Thanks Steve for your work. Yes, time seems to be running faster and faster, sometimes I have a hard time catching up ...: -
November 13, 2021 at 1:21 pm
Viewing 15 posts - 1 through 15 (of 325 total)