I'm using SQL Server 2008 Express.
The properties of my database say the DB size is 4GB.
My DB has 2 main tables, each with about 2GB.
I'm getting the following Error when I try to insert a new record:
[Microsoft][ODBC SQL Server Driver][SQL Server]
Could not allocate space for object 'dbo.Futures_Tick'.'IX_Futures_Tick' in database 'Prices_Live' 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.
I'm not sure what to do. I don't see how to free up space in the primary filegroup as the error message is telling me (I'm not even sure what the primary filegroup is).
I'm a little new to DB admin things... I just know the basic SQL commands (Insert, Update, Delete).
help??