asked on
ASKER
Microsoft SQL Server is a suite of relational database management system (RDBMS) products providing multi-user database access functionality.SQL Server is available in multiple versions, typically identified by release year, and versions are subdivided into editions to distinguish between product functionality. Component services include integration (SSIS), reporting (SSRS), analysis (SSAS), data quality, master data, T-SQL and performance tuning.
TRUSTED BY
And what part of your database was getting to big
- data (.mdf or .ndf) then maybe index maintenance could solve something
- log (.ldf) look at the recovery model and if a better frequency of transaction log backups can keep them small
Shrinking database will internaly fragment database and while it normaly will grow again (from first actions) also fragment the files on disk.
For the error, no direct indication, but could be caused by not having transactionlog backup and now just crossed the timeout line.