Share via

Offload DBCC CHECKDB on Developer Edition

Håkan Ekman 0 Reputation points
2024-04-08T12:41:27.4866667+00:00

Hi

is it allowed to restore a database and run DBCC CHECKDB on a Developer Edition?

SQL Server | Other

2 answers

Sort by: Most helpful
  1. MikeyQiaoMSFT-0444 3,310 Reputation points
    2024-04-09T06:13:05.9333333+00:00

    Hi,Håkan Ekman

    DBCC means Database Console Commands for SQL Server.DBCC command relies on the SQL Server database engine.

    Most basic DBCC commands are available across all versions, but commands related to specific advanced features may only be available in certain editions. For example, DBCC TRACEON for Trace Flags.

    Certainly, the DBCC CHECKDB command is available in all mainstream versions of SQL Server.

    However, you need to be mindful of whether you have sysadmin and db_owner permissions, the impact of DBCC CHECKDB on overall database performance, and the methods for handling corresponding errors.

    Best regards,

    Mikey Qiao


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Was this answer helpful?

    0 comments No comments

  2. RahulRandive 10,506 Reputation points
    2024-04-08T13:01:11.8433333+00:00

    Hi @Håkan Ekman

    As per the Microsoft document, SQL Server Developer edition lets developers build any kind of application on top of SQL Server. It includes all the functionality of Enterprise edition, but is licensed for use as a development and test system, not as a production server.

    Hence it should allow restore a database and run DBCC CHECKDB.

    Thank You!

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.