I have a database that seems to change its autogrowth settings every so often. When I initially set this up, I set the autogrowth at 500MB. After some time, I noticed that the autogrowth was set to 645000%. When I tried to change it through Management Studio but recieve the following error
' Value of '645000' is not valid for 'Value'. 'Value should be between 'Minimum and Maximum'.
Parameter name: Value(System.Windows.forms)
This occurs when I try to open it in order to change it. The only way to change it is through Transact.
USE master
GO
ALTER DATABASE mydb
MODIFY FILE
(NAME = mydb_data,
FILEGROWTH = 500MB)
GO
This will work, but for how long I do not know. I have done this twice before.
The first problem is why am I unable to change this value using SQL Management Studio. Second is why is this value being changed and how does such a large value get inputted.
So far, this is only happening with only one of my 2005 database. Any direction would be of great help.
Thanks
Akinja Richards