vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello - I have over 100 MSSQL Databases on my SQL SERVER. How do I restrict all the MSSQL databases and its transaction logs to 100 MB. Can someone help me with any script which will do that. Thanks, Rubal Jain www.Rubal.net |
| ||||
| Hi This will depend on how/what these databases are and what you want to set the sizes to. A start could be the script created by: EXEC master..sp_MSForEachdb 'USE ? SELECT ''ALTER DATABASE '' + db_name() + '' MODIFY FILE ( name= '' + RTRIM(name) + '', MAXSIZE=200)'' FROM sysfiles WHERE status & 0x40 <> 0x40 ' John "Rubal Jain" <rubaljain@yahoo.com> wrote in message news:7a30b199.0407150445.56b2a480@posting.google.c om... > Hello - > > I have over 100 MSSQL Databases on my SQL SERVER. How do I restrict > all the MSSQL databases and its transaction logs to 100 MB. > > Can someone help me with any script which will do that. > > Thanks, > > Rubal Jain > www.Rubal.net |