T-SQL query to check SQL Server min server memory(MB) and max server memory(MB)
T-SQL query to check SQL Server min server memory(MB) and max server memory(MB)
2022-01-12
32 reads
T-SQL query to check SQL Server min server memory(MB) and max server memory(MB)
2022-01-12
32 reads
This article explores the process modify SQL Server Analysis Services Modes between Tabular, Multidimensional and SharePoint.
2022-01-11
36 reads
Learn how to use PowerShell to restart a SQL service. Learn how to use PowerShell to restart an instance of SQL Server.
2022-01-11
49 reads
One of the first things to do for securing your SQL Server is to change its default TCP port. Read more to configure it.
2022-01-10
1,406 reads
Read the article to use a PowerShell Script for configuring SQL Server static Port
2022-01-10
29 reads
By Steve Jones
I had an idea for an animated view of a sales tool, and started...
Next Monday, February 9, 2026, my one-day live online training SQL Server Query Tuning...
By Steve Jones
One of the features we advocates have been advocating for is a better way...
Comments posted to this topic are about the item Tame Those Strings (Series)
I am creating shared datasets that our executive staff can use for creating reports...
I am creating shared datasets that our executive staff can use for creating reports...
In SQL Server 2025, what is returned from this code:
DECLARE @message VARCHAR(50) = 'Hello SQL Server 2025!'; DECLARE @encoded VARCHAR(MAX); SET @encoded = BASE64_ENCODE(CAST(@message AS VARBINARY(1000))); SELECT BASE64_DECODE(@encoded)See possible answers