Viewing 2 posts - 1 through 3 (of 3 total)
RAID5 is good for DWH application for reading operation.
Go through below link
http://database.ca/blog.aspx?blogid=1024
😎
December 22, 2016 at 5:10 am
#1919300
Step1: Create an VIEW for generating the offline DBs command for selected DBs
create view DBOfflineView as
select 'alter database'+ ' '+name+' '+'set offline with rollback immediate' as command
from sys.databases...
March 31, 2016 at 2:06 am
#1868768