zoukankan      html  css  js  c++  java
  • Shrinking a SQL Server database not working(转载)


    I'm not a DBA but I need to shrink a DB, I tried using the SSMS interface to shrink and it didn't work.
    The stats are as follows:

    • Size: 235,013.00 MB
    • Space Available: 65,587.59 MB

    I have also tried the DBCC SHRINKDATABASE ... TRUNCATEONLY command and didn't change anything either.
    How can I shrink this DB (free up the unused space to the OS) without losing data?

    答1


    By the way also check the initial size. If your initial size is 235,013 MB then you need to reduce your initial size first.
    Secondly, shrinking is one of the worst things your could do to a data file. If you shrink a tlog file its okay, because tlogs dont use the data page structure. If you shrink your database data file, you can make a perfectly de-fragmented database into a perfectly fragmented database. It will mess the performance beyond recognition. Why do you want to shrink by the way? The db is 200 something GB and has 60 something free.... that's like around 30% free. Don't you think in the matter of some time, that space can be utilized?
    If you still need to shrink the db, you can create a file group and move the data to that file group and delete the current file group or in case of primary file group you can reduce the size to the bare minimum.

    答2


    1. In SSMS try using Right Click on DB->Tasks->Shrink->Files to see how much space is used by data and transaction log files.
    2. It's likely that the Recovery Model for your DB is set to FULL in which case you'll not be able to shrink the transaction log unless you do a full db backup. If it's not a concern, just change the Recovery Model to Simple and try to shrink the transaction log and data files again.

    原文链接

  • 相关阅读:
    团队作业3--需求改进&系统设计
    团队作业2-《帮帮-需求规格说明书》
    团队作业1——团队展示&选题
    动态规划计算文本相似度项目—第一次个人编程作业(软件工程)
    Self Introduction&5 Questions
    团队作业6——复审与事后分析
    事后诸葛亮
    Alpha阶段项目复审
    团队作业1—团队展示&选题
    自我介绍+软工五问
  • 原文地址:https://www.cnblogs.com/OpenCoder/p/12404477.html
Copyright © 2011-2022 走看看