MSDE DB problem
aperregatturv
Posts: 67
Hi
I am trying to update a MSDE database with file size almost close to 2 GB and the SQL Toolkit fails saying the filegroup is full..
Please let me know how to update.
Thanks
Arun
I am trying to update a MSDE database with file size almost close to 2 GB and the SQL Toolkit fails saying the filegroup is full..
Please let me know how to update.
Thanks
Arun
Comments
I think I've been talking to you on email as well. My suspicion is that the database is not set to auto-grow. Either that or your hard disk doesn't have enough free space on it to allow the database to grow by the specified percentage (or megabytes) that is set in the database properties.
Doesn't MSDE have a limit of 2GB?
check out
http://msdn2.microsoft.com/en-US/library/ms165672.aspx
for more information...
Regards
David
Just a thought
Project Manager
Red Gate Software Ltd
I have to use case scenarios that this does not work:
@RowCount = 0.
2) Control data update on a table containing large XML content, (> 700MB and right at 1GB). When inserting 500MB+ of new data or updating the previous 1,000,000 rows . This use case could benefit from a better method of batching than row-by-row.
In both use cases SqlOptions.UseTransactions and/or CanRollBackOnFailure would be set to false. Giving up this feature is acceptable during a release update when proper business continuity processes are in place and disk space is limited or msde limits are approached.