The database is full!

  • Any one can help me, how to manage this situation if the database is full.::D

  • visualserge (3/9/2009)


    Any one can help me, how to manage this situation if the database is full.::D

    What do you mean the database is Full, is this over 4GB or you storage is going bye bye!?

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • Create another database and move some of the data to that.

    - Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC
    Property of The Thread

    "Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon

  • Create a new database or upgrade to SQL standard edition.

  • GSquared (3/9/2009)


    Create another database and move some of the data to that.

    Yes if your DB is 4GB this is one of the solutions, you should know that the SQL Server Express Edition doesn't allow the DB over 4GB!!

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • Try changing the maximum size limitation from the database properties.

  • Can you please tell me which edition you are using??????

    [font="Comic Sans MS"]+++BLADE+++[/font]:cool:

  • SQL SERVER DATABASE FULL HOW DO WE TROUBLESHOOT?

  • Jonathan Mallia (3/11/2009)


    Try changing the maximum size limitation from the database properties.

    I'm pretty sure that's not going to work with SQL Express which has a built in limit of 4GB.

    {Edit} Wow! Didn't see that this was from 2009 until it was too late.

    --Jeff Moden


    RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
    First step towards the paradigm shift of writing Set Based code:
    ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.

    Change is inevitable... Change for the better is not.


    Helpful Links:
    How to post code problems
    How to Post Performance Problems
    Create a Tally Function (fnTally)

  • chandar.sp (9/3/2012)


    SQL SERVER DATABASE FULL HOW DO WE TROUBLESHOOT?

    Just a friendly tip. Most people consider all-caps to be someonne yelling.

    Back to your problem. Troubleshooting is over. You already know what's wrong. You've exceeded the limits of SQL Express.

    First, check the log file and make sure that's not what's hogging all the space. Most people forget to backup SQL Express log files for FULL recovery databases.

    If that's not it, then you really do have a full database and you need to do one of two things... archive some of the data so you can delete it or move some of the data to another database.

    --Jeff Moden


    RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
    First step towards the paradigm shift of writing Set Based code:
    ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.

    Change is inevitable... Change for the better is not.


    Helpful Links:
    How to post code problems
    How to Post Performance Problems
    Create a Tally Function (fnTally)

Viewing 10 posts - 1 through 9 (of 9 total)

You must be logged in to reply to this topic. Login to reply