Tag: http://sqldbpool.com/

  • Script to calculate DB size and available size


    SELECT Db_name()                                                           AS
           dbname,
           name                                                                AS
           filename,
           size / 128.0                                                        AS
           currentsizemb,
           size / 128.0 – CAST(Fileproperty(name, ‘SpaceUsed’) AS INT) / 128.0 AS
           freespacemb
    FROM   sys.database_files; 

  • Disconnect Users

    Many times we want to restore the existing database or do DDL operation and often we are getting error Database is in use.


    ALTER DATABASE databasename SET single_user WITH ROLLBACK IMMEDIATE 

    You required only DBO rights on the target database, even you don’t have sysAdmin rights it will work for that particular database.