• Will you post the results of this query

    Declare @DBName varchar(128)

    Set @DBName = 'YourDBHere'

    Select db_name(database_id) as DBName,name as LogicalName,physical_name,type_desc as FileType

    ,Size*8/1024 as FileSizeMB

    From sys.master_files

    Where db_name(database_id) = @DBName

    Just replace YourDBHere with the name of the database in question.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events