No. It just gives you more room to store data. My database expands on a weekly (sometimes daily basis). In six months my main database has gone from a beginning size of 10GB to 165 GB.
Cant allocate space for object "GLbalance" in database TMMSQL because the default segment is full. If you ran out of space in syslogs, dump the transaction log. Otherwise, use AlTER DATABASE or sp_extendsegment to increase the size of the segment.
If you're not familiar with SQL, you are likely going to get into trouble unless you spend the time to read the manuals.
In SQL 6.5 databses cannot grow or expand automatically as they do in SQL 7 and higher. The physical file is called a device and is created in segments. If the last segment is full, you must add segments to the physical file before you can expand the database.
The message tells you what to do. Run sp_extendsegment. See the SQL documentation for details. I haven't used SQL 6.5 for years so I can't remember the syntax or other details.
If you want to get the best answer for your question read faq183-874 and faq183-3179. Terry L. Broadbent - DBA
SQL Server Page:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.