I have a table in SQL Server 2012 Express with a lot of unused space.
I need to free up space in the database.
| NAME | ROWS | RESERVED | DATA | INDEX_SIZE | UNUSED | |-------------|--------|--------------|--------------|------------|--------------| | MyTableName | 158890 | 8928296 KB | 5760944 KB | 2248 KB | 3165104 KB |
How do I get SQL to release the 3165104KB?
I've already tried:
Alter table MyTableName Rebuild
DBCC CLEANTABLE (MyDbName,"MyTableName ", 0)
ALTER INDEX ALL ON MyTableName REORGANIZE ;
ALTER INDEX PK_Image ON MyTableName REBUILD WITH (ONLINE = OFF)
Here is the table:
CREATE TABLE [dbo].[MyTableName](
[ImageID] [int] IDENTITY(1,1) NOT NULL,
[DateScan] [datetime] NULL,
[ScanImage] [image] NULL,
CONSTRAINT [PK_Image] PRIMARY KEY CLUSTERED
(
[ImageID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 100) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
The only thing we have done is replaced ScanImage on every row with a much smaller image (this is how so much unused space is there).