• the t-log file is the problem, the error clearly states this!

    Please post results of the following;

    PowerShell query

    Get-Volume | ?{$_.drivetype -EQ "Fixed"} | ft DriveLetter,FileSystemLabel,HealthStatus,SizeRemaining,Size

    TSQL query

    SELECTname

    , size / 128 AS SizeMBs

    , max_size / 128 AS MaxSize

    , case is_percent_growth

    WHEN 0 THEN CAST(growth / 128 AS VARCHAR(20)) + 'MBs'

    ELSE CAST(growth AS VARCHAR(20)) + '%'

    END AS Growth

    FROM sys.master_files

    WHERE database_id = DB_ID('tempdb')

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉