Script DB Level Permissions v4.6
Script database and object level permissions for all database users
2022-01-12 (first published: 2021-06-11)
18,667 reads
Script database and object level permissions for all database users
2022-01-12 (first published: 2021-06-11)
18,667 reads
Script database and object level permissions for all database users
2017-07-25 (first published: 2016-02-26)
15,115 reads
2015-08-06 (first published: 2010-11-02)
26,978 reads
Use SSIS to pull data from multiple instances. Combine with powershell to run multiple instances simultaneously.
2015-02-23
8,497 reads
Easily register SQL Servers in your inventory to your CMS for easy multi-server queries.
2014-08-18
5,618 reads
Automate patch installations using the task scheduler and command line hotfix options for SQL.
2011-05-03
4,689 reads
Simple script formatting the date and naming a backup file path for a t-log and restoring those logs.
2010-12-29 (first published: 2010-12-15)
1,498 reads
A way to handle application releases involving multiple scripts and/or multiple databases.
2010-08-23
6,755 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 Delta Lake: The Definitive Guide:...
Comments posted to this topic are about the item Databricks Data Intelligence Platform: Unlocking...
Comments posted to this topic are about the item Storytelling with Data: Let's Practice!
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