Viewing 13 posts - 16 through 28 (of 28 total)
Btw, one of the columns of XML type if it helps you.
September 27, 2010 at 2:40 pm
CirquedeSQLeil (9/27/2010)
Run a dbcc checktable and determine if there is any corruption.
It's when you don't like good news :crazy:
CHECKDB found 0 allocation errors and 0 consistency errors in database 'MyDatabase'.
September 27, 2010 at 2:37 pm
CirquedeSQLeil (9/27/2010)
Is this table replicated?
Yes but not on stage where I currently do testing.
September 27, 2010 at 2:35 pm
CirquedeSQLeil (9/27/2010)
raistlinx (9/27/2010)
getoffmyfoot (9/27/2010)
Yea, the drop/create table is brutal...Maybe I am missing something here, could someone elaborate on why this is not good in this situation?
There used to be...
September 27, 2010 at 2:34 pm
Derrick Smith (9/27/2010)
Just for kicks, try this:Delete from tablename ( with tablock )
see if it changes the data size, which should be 0.
Will do a little later after running DBCC...
September 27, 2010 at 2:33 pm
Hmm... even TRUNCATE didn't work! Any suggestions before I re-created the table?
September 27, 2010 at 2:19 pm
Derrick Smith (9/27/2010)
Have you tried doing ALTER TABLE tablename REBUILD ?
ALTER TABLE tablename REBUILD did not change any table size returned by sp_spaceused
September 27, 2010 at 2:17 pm
miksh (9/27/2010)
September 27, 2010 at 2:14 pm
Derrick Smith (9/27/2010)
select
'['+DB_NAME(database_id)+'].['+c.name+'].['+d.name+']' as [DB.Table]
,b.name as [Index...
September 27, 2010 at 1:44 pm
getoffmyfoot (9/27/2010)
September 27, 2010 at 1:41 pm
CirquedeSQLeil (9/27/2010)
Update statistics and DBCC updateusage.
Well, it didn't help.
September 27, 2010 at 1:33 pm
CirquedeSQLeil (9/27/2010)
Did you recently perform a delete operation on this table that removed all records? Or ever?
Yes we did. Recently we kept data allocating ~1.5GB and now decided to...
September 27, 2010 at 1:13 pm
Hmm.... very brutal solution. Anything else possible for SQL 2005?
Btw, Shrink Dtabase/File Task dialog in Mgmt Studio shows that the only 3GB could be freed but that table has 8GB...
September 27, 2010 at 12:46 pm
Viewing 13 posts - 16 through 28 (of 28 total)