Script DB Level Permissions v4.6
Script database and object level permissions for all database users
2022-01-12 (first published: 2021-06-11)
16,709 reads
Script database and object level permissions for all database users
2022-01-12 (first published: 2021-06-11)
16,709 reads
Script database and object level permissions for all database users
2017-07-25 (first published: 2016-02-26)
14,084 reads
2015-08-06 (first published: 2010-11-02)
26,172 reads
Use SSIS to pull data from multiple instances. Combine with powershell to run multiple instances simultaneously.
2015-02-23
8,363 reads
Easily register SQL Servers in your inventory to your CMS for easy multi-server queries.
2014-08-18
5,481 reads
Automate patch installations using the task scheduler and command line hotfix options for SQL.
2011-05-03
4,653 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,449 reads
A way to handle application releases involving multiple scripts and/or multiple databases.
2010-08-23
6,695 reads
By Kevin3NF
Does skipping a DBA save money? Wait until your system grinds to a halt,...
By Brian Kelley
I admit that until I read the article, Who are you as a Leader?,...
Suppose you want to call a certain Microsoft Fabric REST API endpoint from Azure...
I am in the process of migrating from MySQL to SQL Server. I have...
I have the following select statement --#1 Select supplier, s.refnum, desc from supplier as...
Good morning to all. I am a novice when it comes to SQL so...
What is returned from this code in SQL Server 2022?
DECLARE @value INT = NULL , @value2 VARCHAR(20) = NULL; SELECT COALESCE (@value, @value2, 100.5) AS Result; GOSee possible answers