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,415 reads
Script database and object level permissions for all database users
2022-01-12 (first published: 2021-06-11)
18,415 reads
Script database and object level permissions for all database users
2017-07-25 (first published: 2016-02-26)
14,991 reads
2015-08-06 (first published: 2010-11-02)
26,892 reads
Use SSIS to pull data from multiple instances. Combine with powershell to run multiple instances simultaneously.
2015-02-23
8,483 reads
Easily register SQL Servers in your inventory to your CMS for easy multi-server queries.
2014-08-18
5,602 reads
Automate patch installations using the task scheduler and command line hotfix options for SQL.
2011-05-03
4,686 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,494 reads
A way to handle application releases involving multiple scripts and/or multiple databases.
2010-08-23
6,744 reads
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
By DataOnWheels
It has been a while since my last T-SQL Tuesday blog. When I saw...
The last T-SQL Tuesday of the year is hosted by my good friend Mike...
Comments posted to this topic are about the item What is the PRODUCT
Comments posted to this topic are about the item Metadata Driven Pipelines (Incremental Load):...
Comments posted to this topic are about the item Metadata Driven Pipelines (Incremental Load):...
In SQL Server 2025, what does this return?
CREATE TABLE Numbers ( n INT) GO INSERT dbo.Numbers ( n ) VALUES (1), (2), (3) GO SELECT PRODUCT(n) FROM dbo.NumbersSee possible answers