tags:

views:

28

answers:

1

Hello All!!!

I have a situation, I am trying to run almost 100 update statement on a table say 'XX'

In SQL Server database. But it is giving me an error tat goes something like this...

"Could not allocate space for object 'dbo.XX'.'PK_XX_3489AE06' in database 'MYDATABASE' because the 'PRIMARY' filegroup is full. Create disk space by deleting unneeded files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup."

Please advice me what to do... Thankx in advance

+1  A: 
  1. Check to see if your database has auto growth enabled.

  2. Make sure you have available space on disk where your database file is located.

Bob Palmer
@@BOB..it has been set to unrestricted growth and moreover my drive has over 60gb of free space
Rajdeep
@@BOB my drive has NTFS and not FAT32
Rajdeep
Have you tried to manually grow your database? Also, have you checked both data and log file size? And have you run a DBCC to make sure everything is in order? Hope one of these items helps!
Bob Palmer