Tagged Questions
The dbcc tag has no wiki summary.
15
votes
1answer
589 views
ODBC problems in SQL 2000 --> 2005 Upgrade
This wiki post outlines both a problem and a solution. I wanted to post this for others that may be having similar problems, as I couldn't find anything specifically to solve this problem elsewhere.
...
4
votes
5answers
3k views
Reduce SQL Server table fragmentation without adding/dropping a clustered index?
I have a large database (90GB data, 70GB indexes) that's been slowly growing for the past year, and the growth/changes has caused a large amount of internal fragmentation not only of the indexes, but ...
3
votes
1answer
291 views
SQL Server: Hidden risks of using DBCC SHRINKFILE
We're getting a huge LDF file by using a full recovery mode in a SQL Server DB. so we're planning to shrink the log file.
Is there any performance penalty for using DBCC SHRINKFILE to reduce the ...
2
votes
2answers
456 views
tsql to know when dbcc checkdb was run on a database last time
Using Tsql, how can i know when DBCC checkdb was last run on SQL server (2000, 2005 or 2008)?
Regards
2
votes
4answers
847 views
DBCC shrinkfile gives error
I am trying to shrink my log file using DBCC SHRINKFILE(db_2.ldf), which is the name for log file
It gives me error every time:
8985, Level 16, State 1, Line 1
Could not locate file 'FIelD' for ...
1
vote
1answer
92 views
Error on sql server database shrink command
I'm executing these commands from a Console Application
DBCC SHRINKFILE (@FILE_NAME_MDF, 0) WITH NO_INFOMSGS
DBCC SHRINKFILE (@FILE_NAME_LDF, 0) WITH NO_INFOMSGS
and getting this error
Could ...
1
vote
1answer
2k views
How to get table name from database id, file id, page id in MS SQL 2008?
I've deadlock graph in which the locked resource is mentioned by these three fields DB ID, File ID, Page ID. There is also some associated objectid.
All I want to know is what table this page belongs.
...
1
vote
1answer
339 views
Can parameterized queries be fully captured using DBCC INPUTBUFFER?
In SQL Server 2008, I am using triggers to capture all changes made to a specific table in my database. My goal is to capture the entire change. That is, to capture what data is being inserted, not ...
1
vote
1answer
546 views
Executing DBCC Command From ADO.Net
I am trying to execute DBCC CHECK DB('MyDB) using ADO.Net, but how can I get the text returned by the command?
I have tried the following:
SqlCommand sqlCom = new SqlCommand("DBCC CHECKDB ('MyDB')", ...
1
vote
1answer
198 views
How can I increment an identity column without inserting a value?
First, I'm aware of this question which didn't get answered because what the OP was really trying to do was'nt incrementing an identity column
I've got an identity column with a current seed value ...
1
vote
2answers
640 views
Help interpreting DBCC CHECKDB output related to Torn Pages
I've been asked to look at a SQL 2005 database that is reporting 'torn page' errors.
I can look up the MsgIDs and so on, but I just need a few pointers interpreting the DBCC CHECKDB output in a more ...
0
votes
1answer
363 views
DBCC SHRINKFILE on log file not reducing size even after BACKUP LOG TO DISK
I've got a database, [My DB], that has the following info:
SQL Server 2008
MDF size: 30 GB
LDF size: 67 GB
I wanted to shrink the log file as much as possible and so I started my quest to figure ...
0
votes
0answers
25 views
How do I find out the last time DBCC Checkstorage was run on Sybase ASE?
I'm working with my DBAs and asking them to execute a number of steps in sequence.
What command do I run to out the last time DBCC Checkstorage was run on Sybase ASE?
0
votes
1answer
51 views
Why Row Locks Exist on An Completely Empty Partition in SQL Server?
I made a partitioned table with range left func. I then insert some rows into just one partition. Result:
select partition_id, partition_number, rows from sys.partitions where object_id = ...
0
votes
0answers
165 views
Can a backup of a SQL Server database with allocation errors be restored without the errors? [closed]
I have recently resolved an issue which I will describe below. It has left me with a burning desire to ask "What happens when you restore a SQL Server 2005 database ?"
Scenario:
Users call to say ...
0
votes
1answer
40 views
can i cleanup buffer for some specified database instead of the entire sql server
from what i know, if i execute 'DBCC FREEPROCCACHE' and 'DBCC DROPCLEANBUFFERS', the buffer of entire server will be cleanup.
i wonder if there's anyway to cleanup buffer of specified database only. ...
0
votes
3answers
301 views
SQL SERVER 2008 R2 DBCC PAGE PUZZLED
i did a test about DBCC IND and DBCC page .
Engine: SQL Server 2008
Script:
CREATE TABLE dbo.t2
(
ID int,
Col1 varchar(10),
Col2 varchar(20)
);
INSERT INTO dbo.t2 SELECT ...
0
votes
1answer
108 views
DBCC SHRINKFILE operation increases data usage instead
First of all, I know it's better not shrink database. But in our situation we had to shrink the data file to claim more space back.
Environment: SQL Server 2005 x64 SP3 Ent running on Windows Server ...
0
votes
1answer
117 views
Bulkcopy inserts with DBCC CheckIdent
Our team needs to insert a cruel amount of data into our SQL Server 2008 database. We're looking for a good solution. Now we came up with one, but I have doubts with it, simply because it doesn't feel ...
0
votes
1answer
101 views
Which DBCC commands do I need to run to make sure SQL Server's caches are totally clean?
I want to do some SQL Server performance testing and I want to establish a good baseline. I want to flush all the caches each time so that I know between each test it hasn't cached something so it ...
0
votes
1answer
52 views
Is there an application that works as DBCC wizard?
DBCC (DB Consistency Check) commands are powerful tools but they don,t have a graphical user interface. now Is there a application that works like DBCC wizard?
0
votes
2answers
78 views
DBCC SQL Server 2000 sysindexkeys
I have a SQL Server 2000 database. When I run the following command
select * from sysindexkeys
This display the appropriate records.
I then do a DBCC command for the sysindexkeys. It doesn't ...
0
votes
2answers
122 views
did DBCC CHECKDB
Help getting crushed by this
i did DBCC CHECKDB and one of the DB gave Msg 823, Level 24, State 2, Line 2 I/O error 21(The device is not ready.) detected during read at offset 0x0000000001c000 in ...