Sean's Blog
A place where I record bits and pieces :)
Sunday, June 25, 2023
SQL Server set databases online
select 'ALTER DATABASE [' + A.Name + '] SET ONLINE;'
from sys.databases a
where a.database_id > 4
and state_desc ='OFFLINE'
and a.name not in ('SSISDB')
order by a.name
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment