Script DB Level Permissions v4.6
Script database and object level permissions for all database users
2022-01-12 (first published: 2021-06-11)
19,158 reads
Script database and object level permissions for all database users
2022-01-12 (first published: 2021-06-11)
19,158 reads
Script database and object level permissions for all database users
2017-07-25 (first published: 2016-02-26)
15,273 reads
2015-08-06 (first published: 2010-11-02)
27,096 reads
Use SSIS to pull data from multiple instances. Combine with powershell to run multiple instances simultaneously.
2015-02-23
8,513 reads
Easily register SQL Servers in your inventory to your CMS for easy multi-server queries.
2014-08-18
5,648 reads
Automate patch installations using the task scheduler and command line hotfix options for SQL.
2011-05-03
4,700 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,762 reads
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
By Steve Jones
One of the things a customer asked recently about Redgate Data Modeler was how...
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
Comments posted to this topic are about the item Removing TDE
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers