Quantcast
Channel: SQL Server Setup & Upgrade forum
Viewing all articles
Browse latest Browse all 7696

enable user connections limit per microsoft sql database

$
0
0
How does one enable sql connections limits for user connections per new and existing databases? Found how to do it on whole server per database but not set a limit per user.

Looks like this must be run on each databases but what if you have 100s of databases:

USE AdventureWorks2012 ;
GO
EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE ;
GO
EXEC sp_configure 'user connections', 325 ;
GO
RECONFIGURE;
GO

Viewing all articles
Browse latest Browse all 7696

Trending Articles