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,208 reads
Script database and object level permissions for all database users
2022-01-12 (first published: 2021-06-11)
19,208 reads
Script database and object level permissions for all database users
2017-07-25 (first published: 2016-02-26)
15,291 reads
2015-08-06 (first published: 2010-11-02)
27,105 reads
Use SSIS to pull data from multiple instances. Combine with powershell to run multiple instances simultaneously.
2015-02-23
8,515 reads
Easily register SQL Servers in your inventory to your CMS for easy multi-server queries.
2014-08-18
5,649 reads
Automate patch installations using the task scheduler and command line hotfix options for SQL.
2011-05-03
4,702 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,763 reads
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
By SQLPals
Beware of Generic SQL Server License Keys (What to Use Instead) ...
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
Comments posted to this topic are about the item Every Database Has Problems
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams;See possible answers