sync: auto-sync from HOWARD-HOME at 2026-05-06 13:46:20
Author: Howard Enos Machine: HOWARD-HOME Timestamp: 2026-05-06 13:46:20
This commit is contained in:
207
clients/instrumental-music-center/scripts/imc1-aimsql-enum.ps1
Normal file
207
clients/instrumental-music-center/scripts/imc1-aimsql-enum.ps1
Normal file
@@ -0,0 +1,207 @@
|
||||
$ErrorActionPreference = 'Continue'
|
||||
$ProgressPreference = 'SilentlyContinue'
|
||||
|
||||
function Section($name) { "`n===== $name =====" }
|
||||
|
||||
# ---------- Resolve sqlcmd up front ----------
|
||||
$sqlcmd = (Get-Command sqlcmd -ErrorAction SilentlyContinue).Source
|
||||
if (-not $sqlcmd) {
|
||||
foreach ($p in @(
|
||||
'C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\sqlcmd.exe',
|
||||
'C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\sqlcmd.exe',
|
||||
'C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\sqlcmd.exe',
|
||||
'C:\Program Files\Microsoft SQL Server\150\Tools\Binn\SQLCMD.EXE',
|
||||
'C:\Program Files\Microsoft SQL Server\140\Tools\Binn\SQLCMD.EXE',
|
||||
'C:\Program Files\Microsoft SQL Server\130\Tools\Binn\SQLCMD.EXE'
|
||||
)) {
|
||||
if (Test-Path $p) { $sqlcmd = $p; break }
|
||||
}
|
||||
}
|
||||
"sqlcmd: $sqlcmd"
|
||||
|
||||
# ---------- TASK 1: AIMSQL ENUMERATION (READ-ONLY) ----------
|
||||
|
||||
Section 'STEP 1: Service + process state'
|
||||
Get-Service 'MSSQL$AIMSQL','SQLAgent$AIMSQL' -ErrorAction SilentlyContinue | Format-Table Name,Status,StartType -AutoSize
|
||||
|
||||
$svcCim = Get-CimInstance Win32_Service -Filter "Name='MSSQL`$AIMSQL'" -ErrorAction SilentlyContinue
|
||||
$aimsqlPid = $null
|
||||
if ($svcCim) { $aimsqlPid = [int]$svcCim.ProcessId }
|
||||
"MSSQL`$AIMSQL PID (live from CIM): $aimsqlPid"
|
||||
"MSSQL`$AIMSQL StartName (service account): $($svcCim.StartName)"
|
||||
|
||||
if ($aimsqlPid) {
|
||||
Get-Process -Id $aimsqlPid -ErrorAction SilentlyContinue |
|
||||
Select-Object Id,StartTime,
|
||||
@{n='WSMB';e={[math]::Round($_.WorkingSet64/1MB,1)}},
|
||||
@{n='VMMB';e={[math]::Round($_.VirtualMemorySize64/1MB,1)}},
|
||||
@{n='PrivateMB';e={[math]::Round($_.PrivateMemorySize64/1MB,1)}},
|
||||
Handles,@{n='Threads';e={$_.Threads.Count}},CPU |
|
||||
Format-List
|
||||
} else {
|
||||
"No live PID for MSSQL`$AIMSQL"
|
||||
}
|
||||
|
||||
Section 'STEP 2: Listening port + active TCP connections to AIMSQL'
|
||||
if ($aimsqlPid) {
|
||||
"--- State summary ---"
|
||||
Get-NetTCPConnection -OwningProcess $aimsqlPid -ErrorAction SilentlyContinue |
|
||||
Group-Object State | Select-Object Name,Count | Format-Table -AutoSize
|
||||
|
||||
"--- Listening sockets ---"
|
||||
Get-NetTCPConnection -OwningProcess $aimsqlPid -State Listen -ErrorAction SilentlyContinue |
|
||||
Select-Object LocalAddress,LocalPort | Format-Table -AutoSize
|
||||
|
||||
"--- Established connections (remote talking to AIMSQL) ---"
|
||||
$est = Get-NetTCPConnection -OwningProcess $aimsqlPid -State Established -ErrorAction SilentlyContinue
|
||||
if ($est) {
|
||||
$est | Select-Object RemoteAddress,RemotePort,LocalAddress,LocalPort,CreationTime |
|
||||
Sort-Object RemoteAddress | Format-Table -AutoSize
|
||||
|
||||
"--- Reverse-resolve unique remote IPs ---"
|
||||
$est.RemoteAddress | Sort-Object -Unique | ForEach-Object {
|
||||
$ip = $_
|
||||
$name = $null
|
||||
try { $name = [System.Net.Dns]::GetHostEntry($ip).HostName } catch {}
|
||||
[PSCustomObject]@{ RemoteIP=$ip; HostName=$name }
|
||||
} | Format-Table -AutoSize
|
||||
} else {
|
||||
"(no established connections to AIMSQL right now)"
|
||||
}
|
||||
|
||||
"--- UDP endpoints for this PID ---"
|
||||
Get-NetUDPEndpoint -OwningProcess $aimsqlPid -ErrorAction SilentlyContinue |
|
||||
Select-Object LocalAddress,LocalPort | Format-Table -AutoSize
|
||||
} else {
|
||||
"No PID — skipping TCP enumeration"
|
||||
}
|
||||
|
||||
Section 'STEP 3: Windows-auth sqlcmd to .\AIMSQL'
|
||||
$loginOk = $false
|
||||
if ($sqlcmd) {
|
||||
$verOut = & $sqlcmd -S '.\AIMSQL' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT @@VERSION;" 2>&1
|
||||
$verOut
|
||||
"---"
|
||||
& $sqlcmd -S '.\AIMSQL' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT @@SERVERNAME AS server_name, SERVERPROPERTY('InstanceName') AS instance, SERVERPROPERTY('Edition') AS edition, SERVERPROPERTY('ProductVersion') AS product_version, SERVERPROPERTY('Collation') AS collation;" 2>&1
|
||||
if ($LASTEXITCODE -eq 0 -and ($verOut -join "`n") -notmatch 'Login failed') { $loginOk = $true }
|
||||
}
|
||||
"loginOk=$loginOk"
|
||||
|
||||
Section 'STEP 4: Databases on AIMSQL (sys.databases + sys.master_files)'
|
||||
if ($loginOk -and $sqlcmd) {
|
||||
"--- sys.databases ---"
|
||||
& $sqlcmd -S '.\AIMSQL' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT name, database_id, state_desc, recovery_model_desc, create_date, compatibility_level FROM sys.databases ORDER BY database_id;" 2>&1
|
||||
|
||||
"--- sys.master_files (user DBs only, database_id > 4) ---"
|
||||
& $sqlcmd -S '.\AIMSQL' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT database_id, type_desc, name AS logical_name, physical_name, size*8/1024 AS size_mb FROM sys.master_files WHERE database_id > 4 ORDER BY database_id, type;" 2>&1
|
||||
} else {
|
||||
"Skipped (login failed) — will rely on file-system fallback below"
|
||||
}
|
||||
|
||||
Section 'STEP 4b: File-system DB enumeration (fallback / cross-check) — AIMSQL DATA dirs'
|
||||
$aimReg = Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\*\Setup' -ErrorAction SilentlyContinue |
|
||||
Where-Object { $_.PSChildName -match '^MSSQL\d+\.' } |
|
||||
ForEach-Object {
|
||||
$instKey = "HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\$($_.PSChildName)"
|
||||
$instName = (Get-ItemProperty -Path $instKey -ErrorAction SilentlyContinue).Name
|
||||
[PSCustomObject]@{ Folder=$_.PSChildName; InstanceName=$instName; SqlDataRoot=$_.SqlDataRoot; SQLBinRoot=$_.SQLBinRoot }
|
||||
} | Where-Object { $_.InstanceName -eq 'AIMSQL' }
|
||||
$aimReg | Format-Table -AutoSize -Wrap
|
||||
|
||||
$dataDirs = @()
|
||||
$dataDirs += $aimReg | Where-Object { $_.SqlDataRoot } | ForEach-Object { Join-Path $_.SqlDataRoot 'MSSQL\DATA' }
|
||||
$dataDirs += 'C:\Program Files\Microsoft SQL Server\MSSQL*.AIMSQL\MSSQL\DATA'
|
||||
$dataDirs += 'C:\Program Files (x86)\Microsoft SQL Server\MSSQL*.AIMSQL\MSSQL\DATA'
|
||||
$dataDirs += 'S:\*AIMSQL*\MSSQL\DATA'
|
||||
$dataDirs = $dataDirs | Where-Object { $_ } | Select-Object -Unique
|
||||
"--- DATA dir candidates ---"
|
||||
$dataDirs
|
||||
|
||||
"--- .mdf / .ldf / .ndf under AIMSQL DATA dirs ---"
|
||||
foreach ($dir in $dataDirs) {
|
||||
Get-ChildItem -Path $dir -Include *.mdf,*.ldf,*.ndf -Recurse -ErrorAction SilentlyContinue |
|
||||
Select-Object FullName,@{n='SizeMB';e={[math]::Round($_.Length/1MB,1)}},LastWriteTime |
|
||||
Format-Table -AutoSize
|
||||
}
|
||||
|
||||
Section 'STEP 5: Active sessions on AIMSQL'
|
||||
if ($loginOk -and $sqlcmd) {
|
||||
& $sqlcmd -S '.\AIMSQL' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT s.session_id, s.login_name, s.host_name, s.program_name, s.client_interface_name, s.login_time, s.last_request_end_time, s.status, c.client_net_address FROM sys.dm_exec_sessions s LEFT JOIN sys.dm_exec_connections c ON s.session_id = c.session_id WHERE s.is_user_process = 1 ORDER BY s.login_time;" 2>&1
|
||||
} else {
|
||||
"Skipped (login failed)"
|
||||
}
|
||||
|
||||
Section 'STEP 6: AIMSQL ERRORLOG location + tail'
|
||||
$el = Get-ChildItem -Path 'C:\Program Files\Microsoft SQL Server\','C:\Program Files (x86)\Microsoft SQL Server\','S:\','D:\','E:\' -Recurse -Filter ERRORLOG -ErrorAction SilentlyContinue |
|
||||
Where-Object { $_.FullName -like '*AIMSQL*MSSQL\Log\ERRORLOG' -and $_.FullName -notlike '*SQLEXPRESS*' } |
|
||||
Select-Object -First 5
|
||||
$el | Select-Object FullName,LastWriteTime,Length | Format-Table -AutoSize
|
||||
|
||||
$primary = $el | Sort-Object LastWriteTime -Descending | Select-Object -First 1
|
||||
if ($primary) {
|
||||
"--- ERRORLOG path: $($primary.FullName) (LastWriteTime: $($primary.LastWriteTime)) ---"
|
||||
"--- Tail 200 lines ---"
|
||||
Get-Content $primary.FullName -Tail 200 -ErrorAction SilentlyContinue
|
||||
} else {
|
||||
"No AIMSQL ERRORLOG located"
|
||||
}
|
||||
|
||||
Section 'STEP 7: Memory cap (sp_configure read-only)'
|
||||
if ($loginOk -and $sqlcmd) {
|
||||
& $sqlcmd -S '.\AIMSQL' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT name, value, value_in_use, minimum, maximum FROM sys.configurations WHERE name IN ('max server memory (MB)','min server memory (MB)','show advanced options') ORDER BY name;" 2>&1
|
||||
} else {
|
||||
"Skipped (login failed)"
|
||||
}
|
||||
|
||||
Section 'STEP 8: Sanity — AIMSQL backup folders + .bak files'
|
||||
"--- AIMSQL-named directories ---"
|
||||
Get-ChildItem -Path 'C:\Program Files\Microsoft SQL Server\','S:\','E:\' -Recurse -Filter '*AIMSQL*' -Directory -ErrorAction SilentlyContinue |
|
||||
Select-Object FullName | Format-Table -AutoSize -Wrap
|
||||
|
||||
"--- .bak files under AIMSQL Backup dirs ---"
|
||||
$bakRoots = @(
|
||||
'C:\Program Files\Microsoft SQL Server\MSSQL*.AIMSQL\MSSQL\Backup',
|
||||
'S:\*AIMSQL*\MSSQL\Backup',
|
||||
'S:\Backup',
|
||||
'S:\Backups'
|
||||
)
|
||||
foreach ($r in $bakRoots) {
|
||||
Get-ChildItem -Path $r -Filter '*.bak' -Recurse -ErrorAction SilentlyContinue |
|
||||
Select-Object FullName,@{n='SizeMB';e={[math]::Round($_.Length/1MB,1)}},LastWriteTime |
|
||||
Format-Table -AutoSize
|
||||
}
|
||||
|
||||
# ---------- TASK 2: UNREGISTER SCHEDULED TASK (AUTHORIZED CHANGE) ----------
|
||||
|
||||
Section 'TASK 2: Unregister AIMSQL_Restart_20260506_0230 scheduled task'
|
||||
$task = Get-ScheduledTask -TaskName 'AIMSQL_Restart_20260506_0230' -ErrorAction SilentlyContinue
|
||||
if ($task) {
|
||||
$info = $task | Get-ScheduledTaskInfo
|
||||
"Found task — last run: $($info.LastRunTime), result: $($info.LastTaskResult), next run: $($info.NextRunTime)"
|
||||
try {
|
||||
Unregister-ScheduledTask -TaskName 'AIMSQL_Restart_20260506_0230' -Confirm:$false -ErrorAction Stop
|
||||
"Unregistered successfully."
|
||||
} catch {
|
||||
"Unregister FAILED: $_"
|
||||
}
|
||||
"--- Confirm gone ---"
|
||||
$check = Get-ScheduledTask -TaskName 'AIMSQL_Restart_20260506_0230' -ErrorAction SilentlyContinue
|
||||
if ($check) {
|
||||
"STILL PRESENT (failure)"
|
||||
} else {
|
||||
"Confirmed: task no longer registered."
|
||||
}
|
||||
} else {
|
||||
"Task not found — already removed?"
|
||||
}
|
||||
|
||||
Section 'TASK 2b: Audit-trail artifacts (do NOT delete)'
|
||||
"--- aimsql-restart.ps1 ---"
|
||||
$ps = Get-Item C:\Windows\Temp\aimsql-restart.ps1 -ErrorAction SilentlyContinue
|
||||
if ($ps) { $ps | Select-Object FullName, Length, LastWriteTime | Format-List } else { "MISSING C:\Windows\Temp\aimsql-restart.ps1" }
|
||||
"--- aimsql-restart.log ---"
|
||||
$lg = Get-Item C:\Windows\Temp\aimsql-restart.log -ErrorAction SilentlyContinue
|
||||
if ($lg) { $lg | Select-Object FullName, Length, LastWriteTime | Format-List } else { "MISSING C:\Windows\Temp\aimsql-restart.log" }
|
||||
|
||||
Section 'DONE'
|
||||
"Completed at: $(Get-Date -Format 'yyyy-MM-dd HH:mm:ss zzz')"
|
||||
@@ -0,0 +1,126 @@
|
||||
$ErrorActionPreference = 'Continue'
|
||||
$ProgressPreference = 'SilentlyContinue'
|
||||
|
||||
function Section($name) { "`n===== $name =====" }
|
||||
|
||||
Section 'STEP 1: Restart task log'
|
||||
if (Test-Path 'C:\Windows\Temp\aimsql-restart.log') {
|
||||
Get-Content 'C:\Windows\Temp\aimsql-restart.log' -ErrorAction SilentlyContinue
|
||||
} else {
|
||||
"MISSING: C:\Windows\Temp\aimsql-restart.log not found"
|
||||
}
|
||||
|
||||
Section 'STEP 1b: Scheduled task info'
|
||||
$task = Get-ScheduledTask -TaskName 'AIMSQL_Restart_20260506_0230' -ErrorAction SilentlyContinue
|
||||
if ($task) {
|
||||
$task | Get-ScheduledTaskInfo | Format-List LastRunTime, LastTaskResult, NextRunTime, NumberOfMissedRuns, TaskName
|
||||
} else {
|
||||
"MISSING: scheduled task AIMSQL_Restart_20260506_0230 not found"
|
||||
}
|
||||
|
||||
Section 'STEP 2: SQL service state + process start times'
|
||||
foreach ($svc in 'MSSQL$AIMSQL','MSSQL$SQLEXPRESS','MSSQL$MICROSOFT##WID') {
|
||||
$w = Get-CimInstance Win32_Service -Filter "Name='$svc'" -ErrorAction SilentlyContinue
|
||||
if ($null -eq $w) { "$svc : NOT FOUND"; continue }
|
||||
$proc = $null
|
||||
if ($w.ProcessId -gt 0) { $proc = Get-Process -Id $w.ProcessId -ErrorAction SilentlyContinue }
|
||||
[PSCustomObject]@{
|
||||
Name = $w.Name
|
||||
State = $w.State
|
||||
StartMode = $w.StartMode
|
||||
PID = $w.ProcessId
|
||||
StartTime = if ($proc) { $proc.StartTime } else { 'n/a' }
|
||||
WorkingMB = if ($proc) { [math]::Round($proc.WorkingSet64/1MB,1) } else { 'n/a' }
|
||||
} | Format-List
|
||||
}
|
||||
|
||||
Section 'STEP 3: MSSQL Application events since 02:00 today'
|
||||
try {
|
||||
$events = Get-WinEvent -FilterHashtable @{
|
||||
LogName='Application'
|
||||
StartTime=(Get-Date '2026-05-06 02:00:00')
|
||||
ProviderName='MSSQL$AIMSQL','MSSQL$SQLEXPRESS','MSSQL$MICROSOFT##WID'
|
||||
} -ErrorAction Stop | Sort-Object TimeCreated
|
||||
"Total events: $($events.Count)"
|
||||
"17890 count: $(($events | Where-Object Id -eq 17890).Count)"
|
||||
$events | Select-Object TimeCreated, ProviderName, Id, LevelDisplayName, @{n='Msg';e={ ($_.Message -split "`n")[0].Substring(0,[Math]::Min(220,($_.Message -split "`n")[0].Length)) }} | Format-Table -AutoSize -Wrap
|
||||
} catch {
|
||||
"No MSSQL Application events since 02:00 today (or query failed: $_)"
|
||||
}
|
||||
|
||||
Section 'STEP 4: System log 10:00-12:50 today (incident window)'
|
||||
try {
|
||||
$sys = Get-WinEvent -FilterHashtable @{
|
||||
LogName='System'
|
||||
StartTime=(Get-Date '2026-05-06 10:00:00')
|
||||
EndTime=(Get-Date '2026-05-06 12:50:00')
|
||||
} -ErrorAction Stop | Where-Object {
|
||||
$_.ProviderName -in @('Service Control Manager','Microsoft-Windows-Resource-Exhaustion-Detector','Microsoft-Windows-Resource-Exhaustion-Resolver','Microsoft-Windows-WER-SystemErrorReporting','Application Popup','Microsoft-Windows-Kernel-General','Microsoft-Windows-Kernel-Power','Microsoft-Windows-WER-Diag') -or $_.LevelDisplayName -in @('Error','Warning','Critical')
|
||||
} | Sort-Object TimeCreated
|
||||
"System events in window: $($sys.Count)"
|
||||
$sys | Select-Object TimeCreated, ProviderName, Id, LevelDisplayName, @{n='Msg';e={ ($_.Message -split "`n")[0].Substring(0,[Math]::Min(200,($_.Message -split "`n")[0].Length)) }} | Format-Table -AutoSize -Wrap
|
||||
} catch {
|
||||
"System log query failed: $_"
|
||||
}
|
||||
|
||||
Section 'STEP 4b: SvcRestartTask runs today'
|
||||
Get-ScheduledTask -TaskName 'SvcRestartTask' -ErrorAction SilentlyContinue | Get-ScheduledTaskInfo | Format-List TaskName, LastRunTime, LastTaskResult, NextRunTime
|
||||
|
||||
Section 'STEP 5: ERRORLOG location + tail'
|
||||
$el = Get-ChildItem -Path 'C:\Program Files\Microsoft SQL Server\','S:\SQL\' -Recurse -Filter ERRORLOG -ErrorAction SilentlyContinue | Where-Object { $_.FullName -match 'AIMSQL' -or $_.Directory.Parent.Name -match 'AIMSQL' } | Select-Object FullName, LastWriteTime, Length
|
||||
if (-not $el) {
|
||||
$el = Get-ChildItem -Path 'C:\Program Files\Microsoft SQL Server\','S:\SQL\' -Recurse -Filter ERRORLOG -ErrorAction SilentlyContinue | Select-Object FullName, LastWriteTime, Length
|
||||
}
|
||||
$el | Format-Table -AutoSize
|
||||
$aimErrLog = ($el | Where-Object FullName -match 'AIMSQL' | Select-Object -First 1).FullName
|
||||
if (-not $aimErrLog) { $aimErrLog = ($el | Sort-Object LastWriteTime -Descending | Select-Object -First 1).FullName }
|
||||
if ($aimErrLog -and (Test-Path $aimErrLog)) {
|
||||
"--- Tail ($aimErrLog) ---"
|
||||
Get-Content $aimErrLog -Tail 200 -ErrorAction SilentlyContinue
|
||||
} else {
|
||||
"No ERRORLOG identified for AIMSQL"
|
||||
}
|
||||
|
||||
Section 'STEP 6: AIMSQL memory snapshot via sqlcmd'
|
||||
$sqlcmd = (Get-Command sqlcmd -ErrorAction SilentlyContinue).Source
|
||||
if (-not $sqlcmd) {
|
||||
foreach ($p in 'C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\sqlcmd.exe','C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\sqlcmd.exe','C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\sqlcmd.exe') {
|
||||
if (Test-Path $p) { $sqlcmd = $p; break }
|
||||
}
|
||||
}
|
||||
"sqlcmd: $sqlcmd"
|
||||
if ($sqlcmd) {
|
||||
"--- memory counters ---"
|
||||
& $sqlcmd -S '.\AIMSQL' -E -d master -h -1 -W -Q "SET NOCOUNT ON; SELECT counter_name + '|' + CAST(cntr_value AS varchar(20)) FROM sys.dm_os_performance_counters WHERE (object_name LIKE '%:Memory Manager%' AND counter_name IN ('Total Server Memory (KB)','Target Server Memory (KB)')) OR (object_name LIKE '%:Buffer Manager%' AND counter_name='Page life expectancy');"
|
||||
"--- process memory ---"
|
||||
& $sqlcmd -S '.\AIMSQL' -E -d master -h -1 -W -Q "SET NOCOUNT ON; SELECT 'page_fault_count|' + CAST(page_fault_count AS varchar(20)) + '|memory_util_pct|' + CAST(memory_utilization_percentage AS varchar(20)) + '|low_mem|' + CAST(process_physical_memory_low AS varchar(20)) FROM sys.dm_os_process_memory;"
|
||||
"--- connection counts ---"
|
||||
& $sqlcmd -S '.\AIMSQL' -E -d master -h -1 -W -Q "SET NOCOUNT ON; SELECT 'active_connections|' + CAST(COUNT(*) AS varchar(20)) FROM sys.dm_exec_connections;"
|
||||
"--- sessions by login ---"
|
||||
& $sqlcmd -S '.\AIMSQL' -E -d master -h -1 -W -Q "SET NOCOUNT ON; SELECT login_name + '|' + CAST(COUNT(*) AS varchar(10)) FROM sys.dm_exec_sessions WHERE is_user_process=1 GROUP BY login_name;"
|
||||
} else {
|
||||
"sqlcmd not located"
|
||||
}
|
||||
|
||||
Section 'STEP 6b: Active RDP sessions (quser)'
|
||||
& quser.exe 2>&1
|
||||
|
||||
Section 'STEP 7: Windows uptime'
|
||||
$os = Get-CimInstance Win32_OperatingSystem
|
||||
$boot = $os.LastBootUpTime
|
||||
$uptime = (Get-Date) - $boot
|
||||
"LastBootUpTime: $boot"
|
||||
"UptimeHours: $([math]::Round($uptime.TotalHours,1))"
|
||||
"Now: $(Get-Date -Format 'yyyy-MM-dd HH:mm:ss zzz')"
|
||||
|
||||
Section 'STEP 8: System memory pressure snapshot (now)'
|
||||
$os = Get-CimInstance Win32_OperatingSystem
|
||||
[PSCustomObject]@{
|
||||
TotalMB = [math]::Round($os.TotalVisibleMemorySize/1024,0)
|
||||
FreeMB = [math]::Round($os.FreePhysicalMemory/1024,0)
|
||||
PctFree = [math]::Round(100*$os.FreePhysicalMemory/$os.TotalVisibleMemorySize,1)
|
||||
CommitTotalMB = [math]::Round(($os.TotalVirtualMemorySize)/1024,0)
|
||||
CommitFreeMB = [math]::Round(($os.FreeVirtualMemory)/1024,0)
|
||||
} | Format-List
|
||||
|
||||
Section 'DONE'
|
||||
@@ -0,0 +1,201 @@
|
||||
$ErrorActionPreference = 'Continue'
|
||||
$ProgressPreference = 'SilentlyContinue'
|
||||
|
||||
function Section($name) { "`n===== $name =====" }
|
||||
|
||||
Section 'STEP 1: Service + process view'
|
||||
Get-Service 'MSSQL$SQLEXPRESS','SQLAgent$SQLEXPRESS','SQLBrowser','SQLWriter' -ErrorAction SilentlyContinue | Format-Table Name,Status,StartType -AutoSize
|
||||
|
||||
$svcCim = Get-CimInstance Win32_Service -Filter "Name='MSSQL$SQLEXPRESS'" -ErrorAction SilentlyContinue
|
||||
$sqlexp_pid = $null
|
||||
if ($svcCim) { $sqlexp_pid = [int]$svcCim.ProcessId }
|
||||
"MSSQL`$SQLEXPRESS PID (live from CIM): $sqlexp_pid"
|
||||
|
||||
if ($sqlexp_pid) {
|
||||
Get-Process -Id $sqlexp_pid -ErrorAction SilentlyContinue | Select-Object Id,StartTime,@{n='WSMB';e={[math]::Round($_.WorkingSet64/1MB,1)}},@{n='VMMB';e={[math]::Round($_.VirtualMemorySize64/1MB,1)}},@{n='PrivateMB';e={[math]::Round($_.PrivateMemorySize64/1MB,1)}},Handles,@{n='Threads';e={$_.Threads.Count}},CPU | Format-List
|
||||
} else {
|
||||
"No live PID for MSSQL`$SQLEXPRESS"
|
||||
}
|
||||
|
||||
Section 'STEP 2: Registry — installed SQL bits'
|
||||
Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\SQL' -ErrorAction SilentlyContinue | Select-Object * -ExcludeProperty PS* | Format-List
|
||||
|
||||
"--- Per-instance Setup keys ---"
|
||||
Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\*\Setup' -ErrorAction SilentlyContinue |
|
||||
Select-Object PSChildName, Edition, Version, PatchLevel, SqlProgramDir, SqlDataRoot, SQLBinRoot |
|
||||
Format-Table -AutoSize -Wrap
|
||||
|
||||
Section 'STEP 3: Locate sqlcmd'
|
||||
$sqlcmd = (Get-Command sqlcmd -ErrorAction SilentlyContinue).Source
|
||||
if (-not $sqlcmd) {
|
||||
foreach ($p in @(
|
||||
'C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\sqlcmd.exe',
|
||||
'C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\sqlcmd.exe',
|
||||
'C:\Program Files (x86)\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\sqlcmd.exe',
|
||||
'C:\Program Files\Microsoft SQL Server\150\Tools\Binn\SQLCMD.EXE',
|
||||
'C:\Program Files\Microsoft SQL Server\140\Tools\Binn\SQLCMD.EXE',
|
||||
'C:\Program Files\Microsoft SQL Server\130\Tools\Binn\SQLCMD.EXE'
|
||||
)) {
|
||||
if (Test-Path $p) { $sqlcmd = $p; break }
|
||||
}
|
||||
}
|
||||
"sqlcmd: $sqlcmd"
|
||||
|
||||
Section 'STEP 3a: @@VERSION / SERVERPROPERTY (Windows auth via .\SQLEXPRESS)'
|
||||
$loginOk = $false
|
||||
if ($sqlcmd) {
|
||||
$verOut = & $sqlcmd -S '.\SQLEXPRESS' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT @@VERSION; SELECT CAST(@@SERVERNAME AS varchar(200)) + '|' + CAST(SERVERPROPERTY('InstanceName') AS varchar(200)) + '|' + CAST(SERVERPROPERTY('Edition') AS varchar(200)) + '|' + CAST(SERVERPROPERTY('ProductVersion') AS varchar(200)) + '|' + CAST(SERVERPROPERTY('Collation') AS varchar(200));" 2>&1
|
||||
$verOut
|
||||
if ($LASTEXITCODE -eq 0 -and ($verOut -join "`n") -notmatch 'Login failed') { $loginOk = $true }
|
||||
}
|
||||
"loginOk=$loginOk"
|
||||
|
||||
Section 'STEP 3b: ERRORLOG location + tail (always run)'
|
||||
$el = Get-ChildItem -Path 'C:\Program Files\Microsoft SQL Server\','C:\Program Files (x86)\Microsoft SQL Server\','S:\','D:\','E:\' -Recurse -Filter 'ERRORLOG' -ErrorAction SilentlyContinue |
|
||||
Where-Object { $_.FullName -like '*SQLEXPRESS*MSSQL\Log\ERRORLOG' -or $_.FullName -like '*MSSQL*SQLEXPRESS*Log*ERRORLOG*' }
|
||||
$el | Select-Object FullName,LastWriteTime,Length | Format-Table -AutoSize
|
||||
|
||||
# Pick most-recently-written one for the tail
|
||||
$primary = $el | Sort-Object LastWriteTime -Descending | Select-Object -First 1
|
||||
if ($primary) {
|
||||
"--- ERRORLOG path: $($primary.FullName) (LastWriteTime: $($primary.LastWriteTime)) ---"
|
||||
"--- Tail 400 lines ---"
|
||||
Get-Content $primary.FullName -Tail 400 -ErrorAction SilentlyContinue
|
||||
} else {
|
||||
"No SQLEXPRESS ERRORLOG located"
|
||||
}
|
||||
|
||||
Section 'STEP 4: sys.databases + sys.master_files (if loginOk)'
|
||||
if ($loginOk -and $sqlcmd) {
|
||||
& $sqlcmd -S '.\SQLEXPRESS' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT CAST(name AS varchar(80)) + '|' + CAST(database_id AS varchar(10)) + '|' + state_desc + '|' + recovery_model_desc + '|' + CAST(create_date AS varchar(30)) + '|' + CAST(compatibility_level AS varchar(10)) FROM sys.databases ORDER BY database_id;" 2>&1
|
||||
"--- master_files (user DBs only) ---"
|
||||
& $sqlcmd -S '.\SQLEXPRESS' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT CAST(DB_NAME(database_id) AS varchar(80)) + '|' + type_desc + '|' + CAST(name AS varchar(80)) + '|' + CAST(physical_name AS varchar(260)) + '|' + CAST(size*8/1024 AS varchar(20)) + 'MB' FROM sys.master_files WHERE database_id > 4 ORDER BY database_id, type;" 2>&1
|
||||
} else {
|
||||
"Skipped (login failed) — will use file-system fallback below"
|
||||
}
|
||||
|
||||
Section 'STEP 4b: File-system DB enumeration (fallback / cross-check)'
|
||||
# Pull SQLDataRoot from registry for SQLEXPRESS
|
||||
$sqlexpReg = Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\*\Setup' -ErrorAction SilentlyContinue |
|
||||
Where-Object { $_.PSChildName -match '^MSSQL\d+\.' } |
|
||||
ForEach-Object {
|
||||
$instKey = "HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\$($_.PSChildName)"
|
||||
$instName = (Get-ItemProperty -Path $instKey -ErrorAction SilentlyContinue).Name
|
||||
[PSCustomObject]@{ Folder=$_.PSChildName; InstanceName=$instName; SqlDataRoot=$_.SqlDataRoot; SQLBinRoot=$_.SQLBinRoot }
|
||||
}
|
||||
$sqlexpReg | Format-Table -AutoSize -Wrap
|
||||
|
||||
$dataDirs = @()
|
||||
$dataDirs += $sqlexpReg | Where-Object { $_.SqlDataRoot } | ForEach-Object { Join-Path $_.SqlDataRoot 'MSSQL\DATA' }
|
||||
$dataDirs += 'C:\Program Files\Microsoft SQL Server\MSSQL*.SQLEXPRESS\MSSQL\DATA'
|
||||
$dataDirs += 'C:\Program Files (x86)\Microsoft SQL Server\MSSQL*.SQLEXPRESS\MSSQL\DATA'
|
||||
$dataDirs = $dataDirs | Where-Object { $_ } | Select-Object -Unique
|
||||
|
||||
"--- DATA dir candidates ---"
|
||||
$dataDirs
|
||||
|
||||
"--- .mdf / .ldf / .ndf under SQLEXPRESS DATA dirs ---"
|
||||
foreach ($dir in $dataDirs) {
|
||||
Get-ChildItem -Path $dir -Include *.mdf,*.ldf,*.ndf -Recurse -ErrorAction SilentlyContinue |
|
||||
Select-Object FullName,@{n='SizeMB';e={[math]::Round($_.Length/1MB,1)}},LastWriteTime |
|
||||
Format-Table -AutoSize
|
||||
}
|
||||
|
||||
Section 'STEP 5: Active sessions (if loginOk)'
|
||||
if ($loginOk -and $sqlcmd) {
|
||||
& $sqlcmd -S '.\SQLEXPRESS' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT CAST(s.session_id AS varchar(10)) + '|' + ISNULL(CAST(s.login_name AS varchar(80)),'-') + '|' + ISNULL(CAST(s.host_name AS varchar(80)),'-') + '|' + ISNULL(CAST(s.program_name AS varchar(120)),'-') + '|' + ISNULL(CAST(s.client_interface_name AS varchar(60)),'-') + '|' + CAST(s.login_time AS varchar(30)) + '|' + CAST(s.last_request_end_time AS varchar(30)) + '|' + ISNULL(CAST(s.status AS varchar(20)),'-') + '|' + ISNULL(CAST(c.client_net_address AS varchar(50)),'-') + '|' + ISNULL(CAST(DB_NAME(s.database_id) AS varchar(80)),'-') FROM sys.dm_exec_sessions s LEFT JOIN sys.dm_exec_connections c ON s.session_id=c.session_id WHERE s.is_user_process=1 ORDER BY s.login_time;" 2>&1
|
||||
} else {
|
||||
"Skipped (login failed) — TCP step below provides remote IP evidence"
|
||||
}
|
||||
|
||||
Section 'STEP 6: TCP — listening port + established connections for SQLEXPRESS PID'
|
||||
if ($sqlexp_pid) {
|
||||
"--- State summary ---"
|
||||
Get-NetTCPConnection -OwningProcess $sqlexp_pid -ErrorAction SilentlyContinue | Group-Object State | Select-Object Name,Count | Format-Table -AutoSize
|
||||
|
||||
"--- Listening sockets ---"
|
||||
Get-NetTCPConnection -OwningProcess $sqlexp_pid -State Listen -ErrorAction SilentlyContinue |
|
||||
Select-Object LocalAddress,LocalPort | Format-Table -AutoSize
|
||||
|
||||
"--- Established connections (remote talking to SQLEXPRESS) ---"
|
||||
$est = Get-NetTCPConnection -OwningProcess $sqlexp_pid -State Established -ErrorAction SilentlyContinue
|
||||
if ($est) {
|
||||
$est | Select-Object RemoteAddress,RemotePort,LocalAddress,LocalPort,CreationTime | Sort-Object RemoteAddress | Format-Table -AutoSize
|
||||
|
||||
"--- Reverse-resolve unique remote IPs ---"
|
||||
$est.RemoteAddress | Sort-Object -Unique | ForEach-Object {
|
||||
$ip = $_
|
||||
$name = $null
|
||||
try { $name = [System.Net.Dns]::GetHostEntry($ip).HostName } catch {}
|
||||
[PSCustomObject]@{ RemoteIP=$ip; HostName=$name }
|
||||
} | Format-Table -AutoSize
|
||||
} else {
|
||||
"(no established connections to SQLEXPRESS right now)"
|
||||
}
|
||||
|
||||
"--- UDP (SQL Browser / instance discovery) for this PID ---"
|
||||
Get-NetUDPEndpoint -OwningProcess $sqlexp_pid -ErrorAction SilentlyContinue |
|
||||
Select-Object LocalAddress,LocalPort | Format-Table -AutoSize
|
||||
} else {
|
||||
"No PID — skipping TCP enumeration"
|
||||
}
|
||||
|
||||
Section 'STEP 7: Installed apps (filtered)'
|
||||
$apps = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*, HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* -ErrorAction SilentlyContinue |
|
||||
Where-Object { $_.DisplayName } |
|
||||
Select-Object DisplayName, Publisher, InstallDate, DisplayVersion |
|
||||
Sort-Object DisplayName -Unique
|
||||
|
||||
"--- Likely SQL-Express-using apps (AIM, Tri-Tech, MSP360, Cloudberry, Syncro, QuickBooks, Sage, Peachtree, Veeam, Backup, Music, POS, Retail, ScreenConnect) ---"
|
||||
$apps | Where-Object { $_.DisplayName -match 'AIM|Tri-Tech|TriTech|MSP360|Cloudberry|Syncro|QuickBooks|Sage|Peachtree|Veeam|Backup|Music|POS|Retail|ScreenConnect|ConnectWise|Datto|N-able|Acronis|StorageCraft|ShadowProtect|Mozy|Carbonite|WSUS|RDS|Reporting Services|SSRS|Telerik|OpenAccess|Crystal' } |
|
||||
Format-Table -AutoSize -Wrap
|
||||
|
||||
"--- Full SQL-related installs ---"
|
||||
$apps | Where-Object { $_.DisplayName -match 'SQL|Express|Database' } | Format-Table -AutoSize -Wrap
|
||||
|
||||
"--- TOTAL apps installed: $($apps.Count) ---"
|
||||
|
||||
Section 'STEP 8: Connection-string grep — find apps with SQLEXPRESS in their config'
|
||||
$paths = @('C:\ProgramData','C:\Program Files\','C:\Program Files (x86)\','C:\inetpub')
|
||||
$hits = @()
|
||||
foreach ($root in $paths) {
|
||||
if (-not (Test-Path $root)) { continue }
|
||||
try {
|
||||
$files = Get-ChildItem -Path $root -Recurse -Include *.config,*.ini,*.xml,*.json,*.udl -ErrorAction SilentlyContinue -Force -File
|
||||
foreach ($f in $files) {
|
||||
try {
|
||||
$m = Select-String -Path $f.FullName -Pattern 'SQLEXPRESS' -List -ErrorAction SilentlyContinue
|
||||
if ($m) {
|
||||
$hits += [PSCustomObject]@{ Path = $f.FullName; LastWriteTime = $f.LastWriteTime }
|
||||
}
|
||||
} catch {}
|
||||
if ($hits.Count -ge 60) { break }
|
||||
}
|
||||
} catch {}
|
||||
if ($hits.Count -ge 60) { break }
|
||||
}
|
||||
"--- Files referencing SQLEXPRESS (first 60) ---"
|
||||
$hits | Format-Table -AutoSize -Wrap
|
||||
|
||||
# For top hits, show the actual matching line
|
||||
"--- Sample matching lines (first 25 hits) ---"
|
||||
foreach ($h in ($hits | Select-Object -First 25)) {
|
||||
try {
|
||||
$line = (Select-String -Path $h.Path -Pattern 'SQLEXPRESS' -ErrorAction SilentlyContinue | Select-Object -First 1).Line
|
||||
if ($line) {
|
||||
$line = $line.Trim()
|
||||
if ($line.Length -gt 240) { $line = $line.Substring(0,240) + '...' }
|
||||
"$($h.Path) :: $line"
|
||||
}
|
||||
} catch {}
|
||||
}
|
||||
|
||||
Section 'STEP 9: Memory cap (read-only — sp_configure show only, NO RECONFIGURE)'
|
||||
if ($loginOk -and $sqlcmd) {
|
||||
& $sqlcmd -S '.\SQLEXPRESS' -E -d master -h-1 -W -l 5 -Q "SET NOCOUNT ON; SELECT CAST(name AS varchar(60)) + '|' + CAST(value AS varchar(20)) + '|' + CAST(value_in_use AS varchar(20)) + '|' + CAST(minimum AS varchar(20)) + '|' + CAST(maximum AS varchar(20)) FROM sys.configurations WHERE name IN ('max server memory (MB)','min server memory (MB)','show advanced options') ORDER BY name;" 2>&1
|
||||
} else {
|
||||
"Skipped (login failed) — sys.configurations needs auth"
|
||||
}
|
||||
|
||||
Section 'DONE'
|
||||
"Completed at: $(Get-Date -Format 'yyyy-MM-dd HH:mm:ss zzz')"
|
||||
@@ -0,0 +1,240 @@
|
||||
sqlcmd: C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\SQLCMD.EXE
|
||||
|
||||
===== STEP 1: Service + process state =====
|
||||
|
||||
Name Status StartType
|
||||
---- ------ ---------
|
||||
MSSQL$AIMSQL Running Automatic
|
||||
SQLAgent$AIMSQL Stopped Automatic
|
||||
|
||||
|
||||
MSSQL$AIMSQL PID (live from CIM): 12772
|
||||
MSSQL$AIMSQL StartName (service account): LocalSystem
|
||||
|
||||
|
||||
Id : 12772
|
||||
StartTime : 5/6/2026 2:30:02 AM
|
||||
WSMB : 172.2
|
||||
VMMB : 42241.5
|
||||
PrivateMB : 528.6
|
||||
Handles : 636
|
||||
Threads : 63
|
||||
CPU : 1888.078125
|
||||
|
||||
|
||||
|
||||
|
||||
===== STEP 2: Listening port + active TCP connections to AIMSQL =====
|
||||
--- State summary ---
|
||||
|
||||
Name Count
|
||||
---- -----
|
||||
Listen 2
|
||||
|
||||
|
||||
--- Listening sockets ---
|
||||
|
||||
LocalAddress LocalPort
|
||||
------------ ---------
|
||||
:: 63116
|
||||
0.0.0.0 63116
|
||||
|
||||
|
||||
--- Established connections (remote talking to AIMSQL) ---
|
||||
(no established connections to AIMSQL right now)
|
||||
--- UDP endpoints for this PID ---
|
||||
|
||||
===== STEP 3: Windows-auth sqlcmd to .\AIMSQL =====
|
||||
Microsoft SQL Server 2019 (RTM-GDR) (KB5084817) - 15.0.2165.1 (X64)
|
||||
Mar 13 2026 19:23:51
|
||||
Copyright (C) 2019 Microsoft Corporation
|
||||
Express Edition (64-bit) on Windows Server 2016 Standard 10.0 <X64> (Build 14393: )
|
||||
|
||||
---
|
||||
IMC1\AIMSQL AIMSQL Express Edition (64-bit) 15.0.2165.1 SQL_Latin1_General_CP1_CI_AS
|
||||
loginOk=True
|
||||
|
||||
===== STEP 4: Databases on AIMSQL (sys.databases + sys.master_files) =====
|
||||
--- sys.databases ---
|
||||
master 1 ONLINE SIMPLE 2003-04-08 09:13:36.390 150
|
||||
tempdb 2 ONLINE SIMPLE 2026-05-06 02:30:04.240 150
|
||||
model 3 ONLINE SIMPLE 2003-04-08 09:13:36.390 150
|
||||
msdb 4 ONLINE SIMPLE 2019-09-24 14:21:42.270 150
|
||||
AIM 5 ONLINE SIMPLE 2023-06-09 10:33:41.147 150
|
||||
TestConv61223 6 ONLINE SIMPLE 2023-06-12 22:31:05.510 150
|
||||
IMC 7 ONLINE SIMPLE 2023-07-03 13:34:40.507 150
|
||||
--- sys.master_files (user DBs only, database_id > 4) ---
|
||||
|
||||
===== STEP 4b: File-system DB enumeration (fallback / cross-check) - AIMSQL DATA dirs =====
|
||||
--- DATA dir candidates ---
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL*.AIMSQL\MSSQL\DATA
|
||||
C:\Program Files (x86)\Microsoft SQL Server\MSSQL*.AIMSQL\MSSQL\DATA
|
||||
S:\*AIMSQL*\MSSQL\DATA
|
||||
--- .mdf / .ldf / .ndf under AIMSQL DATA dirs ---
|
||||
|
||||
FullName
|
||||
--------
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\master.mdf
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\mastlog.ldf
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\model.mdf
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\modellog.ldf
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\model_msdbda...
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\model_msdblo...
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\model_replic...
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\model_replic...
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\MSDBData.mdf
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\MSDBLog.ldf
|
||||
|
||||
|
||||
|
||||
===== STEP 5: Active sessions on AIMSQL =====
|
||||
51 NT SERVICE\SQLTELEMETRY$AIMSQL IMC1 SQLServerCEIP .Net SqlClient Data Provider 2026-05-06 13:32:09.147 2026-05-06 13:32:09.203 sleeping <local machine>
|
||||
52 NT AUTHORITY\SYSTEM IMC1 SQLCMD ODBC 2026-05-06 13:34:14.943 2026-05-06 13:34:14.943 running <local machine>
|
||||
|
||||
===== STEP 6: AIMSQL ERRORLOG location + tail =====
|
||||
|
||||
FullName LastWri
|
||||
teTime
|
||||
-------- -------
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\Log\ERRORLOG 5/6/...
|
||||
|
||||
|
||||
--- ERRORLOG path: C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\Log\ERRORLOG (LastWriteTime: 05/06/2026 02:30:04) ---
|
||||
--- Tail 200 lines ---
|
||||
2026-05-06 02:30:02.62 Server Microsoft SQL Server 2019 (RTM-GDR) (KB5084817) - 15.0.2165.1 (X64)
|
||||
Mar 13 2026 19:23:51
|
||||
Copyright (C) 2019 Microsoft Corporation
|
||||
Express Edition (64-bit) on Windows Server 2016 Standard 10.0 <X64> (Build 14393: )
|
||||
|
||||
2026-05-06 02:30:02.62 Server UTC adjustment: -7:00
|
||||
2026-05-06 02:30:02.62 Server (c) Microsoft Corporation.
|
||||
2026-05-06 02:30:02.62 Server All rights reserved.
|
||||
2026-05-06 02:30:02.62 Server Server process ID is 12772.
|
||||
2026-05-06 02:30:02.62 Server System Manufacturer: 'LENOVO', System Model: 'ThinkServer TS140'.
|
||||
2026-05-06 02:30:02.62 Server Authentication mode is MIXED.
|
||||
2026-05-06 02:30:02.62 Server Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\Log\ERRORLOG'.
|
||||
2026-05-06 02:30:02.62 Server The service account is 'IMC\IMC1$'. This is an informational message; no user action is required.
|
||||
2026-05-06 02:30:02.62 Server Registry startup parameters:
|
||||
-d C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\master.mdf
|
||||
-e C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\Log\ERRORLOG
|
||||
-l C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL\MSSQL\DATA\mastlog.ldf
|
||||
2026-05-06 02:30:02.62 Server Command Line Startup Parameters:
|
||||
-s "AIMSQL"
|
||||
2026-05-06 02:30:02.62 Server SQL Server detected 1 sockets with 4 cores per socket and 4 logical processors per socket, 4 total logical processors; using 4 logical processors based on SQL Server licensing. This is an informational message; no user action is required.
|
||||
2026-05-06 02:30:02.62 Server SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
|
||||
2026-05-06 02:30:02.63 Server Detected 32559 MB of RAM. This is an informational message; no user action is required.
|
||||
2026-05-06 02:30:02.63 Server Using conventional memory in the memory manager.
|
||||
2026-05-06 02:30:02.63 Server Page exclusion bitmap is enabled.
|
||||
2026-05-06 02:30:02.65 Server Buffer Pool: Allocating 8388608 bytes for 5099520 hashPages.
|
||||
2026-05-06 02:30:02.68 Server Default collation: SQL_Latin1_General_CP1_CI_AS (us_english 1033)
|
||||
2026-05-06 02:30:02.77 Server Buffer pool extension is already disabled. No action is necessary.
|
||||
2026-05-06 02:30:02.91 Server Query Store settings initialized with enabled = 1,
|
||||
2026-05-06 02:30:02.92 Server The maximum number of dedicated administrator connections for this instance is '1'
|
||||
2026-05-06 02:30:02.92 Server This instance of SQL Server last reported using a process ID of 34536 at 5/6/2026 2:30:02 AM (local) 5/6/2026 9:30:02 AM (UTC). This is an informational message only; no user action is required.
|
||||
2026-05-06 02:30:02.92 Server Node configuration: node 0: CPU mask: 0x000000000000000f:0 Active CPU mask: 0x000000000000000f:0. This message provides a description of the NUMA configuration for this computer. This is an informational message only. No user action is required.
|
||||
2026-05-06 02:30:02.97 Server Using dynamic lock allocation. Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node. This is an informational message only. No user action is required.
|
||||
2026-05-06 02:30:02.99 Server In-Memory OLTP initialized on lowend machine.
|
||||
2026-05-06 02:30:03.02 Server [INFO] Created Extended Events session 'hkenginexesession'
|
||||
|
||||
2026-05-06 02:30:03.02 Server Database Instant File Initialization: enabled. For security and performance considerations see the topic 'Database Instant File Initialization' in SQL Server Books Online. This is an informational message only. No user action is required.
|
||||
2026-05-06 02:30:03.03 Server Total Log Writer threads: 2. This is an informational message; no user action is required.
|
||||
2026-05-06 02:30:03.04 Server clflush is selected for pmem flush operation.
|
||||
2026-05-06 02:30:03.05 Server CLR version v4.0.30319 loaded.
|
||||
2026-05-06 02:30:03.05 Server Software Usage Metrics is disabled.
|
||||
2026-05-06 02:30:03.05 spid10s Starting up database 'master'.
|
||||
2026-05-06 02:30:03.17 Server Common language runtime (CLR) functionality initialized using CLR version v4.0.30319 from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\.
|
||||
2026-05-06 02:30:03.34 spid10s SQL Server Audit is starting the audits. This is an informational message. No user action is required.
|
||||
2026-05-06 02:30:03.34 spid10s SQL Server Audit has started the audits. This is an informational message. No user action is required.
|
||||
2026-05-06 02:30:03.39 spid10s SQL Trace ID 1 was started by login "sa".
|
||||
2026-05-06 02:30:03.39 spid10s Server name is 'IMC1\AIMSQL'. This is an informational message only. No user action is required.
|
||||
2026-05-06 02:30:03.54 spid20s A self-generated certificate was successfully loaded for encryption.
|
||||
2026-05-06 02:30:03.54 spid20s Server is listening on [ 'any' <ipv6> 63116].
|
||||
2026-05-06 02:30:03.54 spid20s Server is listening on [ 'any' <ipv4> 63116].
|
||||
2026-05-06 02:30:03.54 spid20s Server local connection provider is ready to accept connection on [ \\.\pipe\SQLLocal\AIMSQL ].
|
||||
2026-05-06 02:30:03.54 spid20s Server local connection provider is ready to accept connection on [ \\.\pipe\MSSQL$AIMSQL\sql\query ].
|
||||
2026-05-06 02:30:03.54 spid20s Dedicated administrator connection support was not started because it is disabled on this edition of SQL Server. If you want to use a dedicated administrator connection, restart SQL Server using the trace flag 7806. This is an informational message only. No user action is required.
|
||||
2026-05-06 02:30:03.55 spid20s SQL Server is now ready for client connections. This is an informational message; no user action is required.
|
||||
2026-05-06 02:30:03.55 Server SQL Server is attempting to register a Service Principal Name (SPN) for the SQL Server service. Kerberos authentication will not be possible until a SPN is registered for the SQL Server service. This is an informational message. No user action is required.
|
||||
2026-05-06 02:30:03.57 Server The SQL Server Network Interface library successfully registered the Service Principal Name (SPN) [ MSSQLSvc/IMC1.IMC.local:AIMSQL ] for the SQL Server service.
|
||||
2026-05-06 02:30:03.57 Server The SQL Server Network Interface library successfully registered the Service Principal Name (SPN) [ MSSQLSvc/IMC1.IMC.local:63116 ] for the SQL Server service.
|
||||
2026-05-06 02:30:03.73 spid21s A new instance of the full-text filter daemon host process has been successfully started.
|
||||
2026-05-06 02:30:03.83 spid10s Starting up database 'msdb'.
|
||||
2026-05-06 02:30:03.83 spid14s Starting up database 'mssqlsystemresource'.
|
||||
2026-05-06 02:30:03.85 spid14s The resource database build version is 15.00.2165. This is an informational message only. No user action is required.
|
||||
2026-05-06 02:30:03.94 spid14s Starting up database 'model'.
|
||||
2026-05-06 02:30:04.00 spid14s Clearing tempdb database.
|
||||
2026-05-06 02:30:04.13 spid14s Starting up database 'tempdb'.
|
||||
2026-05-06 02:30:04.24 spid24s The Service Broker endpoint is in disabled or stopped state.
|
||||
2026-05-06 02:30:04.24 spid24s The Database Mirroring endpoint is in disabled or stopped state.
|
||||
2026-05-06 02:30:04.26 spid24s Service Broker manager has started.
|
||||
2026-05-06 02:30:04.26 spid10s Recovery is complete. This is an informational message only. No user action is required.
|
||||
|
||||
===== STEP 7: Memory cap (sp_configure read-only) =====
|
||||
max server memory (MB) 2147483647 2147483647 128 2147483647
|
||||
min server memory (MB) 0 16 0 2147483647
|
||||
show advanced options 1 1 0 1
|
||||
|
||||
===== STEP 8: Sanity - AIMSQL backup folders + .bak files =====
|
||||
--- AIMSQL-named directories ---
|
||||
|
||||
FullName
|
||||
--------
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL15.AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20221005_191710\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20230502_074935\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20240609_182847\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20240709_221338\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20240911_001844\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20241015_064603\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20241201_210046\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20250708_190212\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20250813_063407\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20250910_043435\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20251111_162854\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20260321_220916\AIMSQL
|
||||
C:\Program Files\Microsoft SQL Server\150\Setup
|
||||
Bootstrap\Log\20260425_213421\AIMSQL
|
||||
|
||||
|
||||
--- .bak files under AIMSQL Backup dirs ---
|
||||
|
||||
===== TASK 2: Unregister AIMSQL_Restart_20260506_0230 scheduled task =====
|
||||
Found task - last run: 05/06/2026 02:30:30, result: 0, next run:
|
||||
Unregistered successfully.
|
||||
--- Confirm gone ---
|
||||
Confirmed: task no longer registered.
|
||||
|
||||
===== TASK 2b: Audit-trail artifacts (do NOT delete) =====
|
||||
--- aimsql-restart.ps1 ---
|
||||
|
||||
|
||||
FullName : C:\Windows\Temp\aimsql-restart.ps1
|
||||
Length : 984
|
||||
LastWriteTime : 5/5/2026 6:53:27 PM
|
||||
|
||||
|
||||
|
||||
--- aimsql-restart.log ---
|
||||
|
||||
|
||||
FullName : C:\Windows\Temp\aimsql-restart.log
|
||||
Length : 1150
|
||||
LastWriteTime : 5/6/2026 2:30:19 AM
|
||||
|
||||
|
||||
|
||||
|
||||
===== DONE =====
|
||||
Completed at: 2026-05-06 13:34:21 -07:00
|
||||
@@ -0,0 +1,957 @@
|
||||
|
||||
===== STEP 1: Service + process view =====
|
||||
|
||||
|
||||
|
||||
Name Status StartType
|
||||
|
||||
---- ------ ---------
|
||||
|
||||
MSSQL$SQLEXPRESS Running Automatic
|
||||
|
||||
SQLAgent$SQLEXPRESS Stopped Automatic
|
||||
|
||||
SQLBrowser Running Automatic
|
||||
|
||||
SQLWriter Running Automatic
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
MSSQL$SQLEXPRESS PID (live from CIM):
|
||||
|
||||
No live PID for MSSQL$SQLEXPRESS
|
||||
|
||||
|
||||
===== STEP 2: Registry - installed SQL bits =====
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
SQLEXPRESS : MSSQL15.SQLEXPRESS
|
||||
|
||||
AIMSQL : MSSQL15.AIMSQL
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
--- Per-instance Setup keys ---
|
||||
|
||||
|
||||
|
||||
PSChildName Edition Version PatchLevel SqlProgr
|
||||
|
||||
amDir
|
||||
|
||||
----------- ------- ------- ---------- --------
|
||||
|
||||
Setup
|
||||
|
||||
Setup Express Edition 15.0.2000.5 15.0.2165.1 C:\Progr
|
||||
|
||||
am Files
|
||||
|
||||
\Microso
|
||||
|
||||
ft SQL
|
||||
|
||||
Server\
|
||||
|
||||
Setup Standard Edition 15.0.2000.5 15.0.2165.1 E:\SQL\
|
||||
|
||||
Setup Windows Internal Database (64-bit)
|
||||
|
||||
Setup
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
===== STEP 3: Locate sqlcmd =====
|
||||
|
||||
sqlcmd: C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\130\Tools\Binn\SQLCMD.EXE
|
||||
|
||||
|
||||
===== STEP 3a: @@VERSION / SERVERPROPERTY (Windows auth via .\SQLEXPRESS) =====
|
||||
|
||||
Microsoft SQL Server 2019 (RTM-GDR) (KB5084817) - 15.0.2165.1 (X64)
|
||||
|
||||
Mar 13 2026 19:23:51
|
||||
|
||||
Copyright (C) 2019 Microsoft Corporation
|
||||
|
||||
Standard Edition (64-bit) on Windows Server 2016 Standard 10.0 <X64> (Build 14393: )
|
||||
|
||||
|
||||
|
||||
IMC1\SQLEXPRESS|SQLEXPRESS|Standard Edition (64-bit)|15.0.2165.1|SQL_Latin1_General_CP1_CI_AS
|
||||
|
||||
loginOk=True
|
||||
|
||||
|
||||
===== STEP 3b: ERRORLOG location + tail (always run) =====
|
||||
|
||||
|
||||
|
||||
FullName LastWriteTime Length
|
||||
|
||||
-------- ------------- ------
|
||||
|
||||
E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Log\ERRORLOG 4/25/2026 9:47:53 PM 0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
--- ERRORLOG path: E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Log\ERRORLOG (LastWriteTime: 04/25/2026 21:47:53) ---
|
||||
|
||||
--- Tail 400 lines ---
|
||||
|
||||
2026-04-25 21:47:53.85 Server Microsoft SQL Server 2019 (RTM-GDR) (KB5084817) - 15.0.2165.1 (X64)
|
||||
|
||||
Mar 13 2026 19:23:51
|
||||
|
||||
Copyright (C) 2019 Microsoft Corporation
|
||||
|
||||
Standard Edition (64-bit) on Windows Server 2016 Standard 10.0 <X64> (Build 14393: )
|
||||
|
||||
|
||||
|
||||
2026-04-25 21:47:53.85 Server UTC adjustment: -7:00
|
||||
|
||||
2026-04-25 21:47:53.86 Server (c) Microsoft Corporation.
|
||||
|
||||
2026-04-25 21:47:53.86 Server All rights reserved.
|
||||
|
||||
2026-04-25 21:47:53.86 Server Server process ID is 20756.
|
||||
|
||||
2026-04-25 21:47:53.86 Server System Manufacturer: 'LENOVO', System Model: 'ThinkServer TS140'.
|
||||
|
||||
2026-04-25 21:47:53.86 Server Authentication mode is MIXED.
|
||||
|
||||
2026-04-25 21:47:53.86 Server Logging SQL Server messages in file 'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Log\ERRORLOG'.
|
||||
|
||||
2026-04-25 21:47:53.86 Server The service account is 'IMC\AIM'. This is an informational message; no user action is required.
|
||||
|
||||
2026-04-25 21:47:53.86 Server Registry startup parameters:
|
||||
|
||||
-d E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\DATA\master.mdf
|
||||
|
||||
-e E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Log\ERRORLOG
|
||||
|
||||
-l E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\DATA\mastlog.ldf
|
||||
|
||||
2026-04-25 21:47:53.86 Server Command Line Startup Parameters:
|
||||
|
||||
-s "SQLEXPRESS"
|
||||
|
||||
2026-04-25 21:47:53.86 Server SQL Server detected 1 sockets with 4 cores per socket and 4 logical processors per socket, 4 total logical processors; using 4 logical processors based on SQL Server licensing. This is an informational message; no user action is required.
|
||||
|
||||
2026-04-25 21:47:53.86 Server SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-25 21:47:53.86 Server Detected 32559 MB of RAM. This is an informational message; no user action is required.
|
||||
|
||||
2026-04-25 21:47:53.87 Server Using conventional memory in the memory manager.
|
||||
|
||||
2026-04-25 21:47:53.87 Server Page exclusion bitmap is enabled.
|
||||
|
||||
2026-04-25 21:47:53.94 Server Buffer Pool: Allocating 8388608 bytes for 5209541 hashPages.
|
||||
|
||||
2026-04-25 21:47:53.97 Server Default collation: SQL_Latin1_General_CP1_CI_AS (us_english 1033)
|
||||
|
||||
2026-04-25 21:47:54.03 Server Buffer pool extension is already disabled. No action is necessary.
|
||||
|
||||
2026-04-25 21:47:54.13 Server Query Store settings initialized with enabled = 1,
|
||||
|
||||
2026-04-25 21:47:54.14 Server The maximum number of dedicated administrator connections for this instance is '1'
|
||||
|
||||
2026-04-25 21:47:54.14 Server This instance of SQL Server last reported using a process ID of 39712 at 4/25/2026 9:47:46 PM (local) 4/26/2026 4:47:46 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-04-25 21:47:54.15 Server Node configuration: node 0: CPU mask: 0x000000000000000f:0 Active CPU mask: 0x000000000000000f:0. This message provides a description of the NUMA configuration for this computer. This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-25 21:47:54.20 Server Using dynamic lock allocation. Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node. This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-25 21:47:54.21 Server In-Memory OLTP initialized on lowend machine.
|
||||
|
||||
2026-04-25 21:47:54.23 Server [INFO] Created Extended Events session 'hkenginexesession'
|
||||
|
||||
|
||||
|
||||
2026-04-25 21:47:54.23 Server Database Instant File Initialization: disabled. For security and performance considerations see the topic 'Database Instant File Initialization' in SQL Server Books Online. This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-25 21:47:54.24 Server Total Log Writer threads: 2. This is an informational message; no user action is required.
|
||||
|
||||
2026-04-25 21:47:54.24 Server clflush is selected for pmem flush operation.
|
||||
|
||||
2026-04-25 21:47:54.25 spid8s Starting up database 'master'.
|
||||
|
||||
2026-04-25 21:47:54.27 Server CLR version v4.0.30319 loaded.
|
||||
|
||||
2026-04-25 21:47:54.40 Server Common language runtime (CLR) functionality initialized using CLR version v4.0.30319 from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\.
|
||||
|
||||
2026-04-25 21:47:54.58 spid8s SQL Server Audit is starting the audits. This is an informational message. No user action is required.
|
||||
|
||||
2026-04-25 21:47:54.59 spid8s SQL Server Audit has started the audits. This is an informational message. No user action is required.
|
||||
|
||||
2026-04-25 21:47:54.64 spid8s SQL Trace ID 1 was started by login "sa".
|
||||
|
||||
2026-04-25 21:47:54.64 spid8s Server name is 'IMC1\SQLEXPRESS'. This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-25 21:47:54.84 spid18s A new instance of the full-text filter daemon host process has been successfully started.
|
||||
|
||||
2026-04-25 21:47:54.85 spid17s A self-generated certificate was successfully loaded for encryption.
|
||||
|
||||
2026-04-25 21:47:54.86 spid17s Server is listening on [ 'any' <ipv6> 61151].
|
||||
|
||||
2026-04-25 21:47:54.86 spid17s Server is listening on [ 'any' <ipv4> 61151].
|
||||
|
||||
2026-04-25 21:47:54.86 spid17s Server local connection provider is ready to accept connection on [ \\.\pipe\SQLLocal\SQLEXPRESS ].
|
||||
|
||||
2026-04-25 21:47:54.86 spid17s Server local connection provider is ready to accept connection on [ \\.\pipe\MSSQL$SQLEXPRESS\sql\query ].
|
||||
|
||||
2026-04-25 21:47:54.86 Server Server is listening on [ ::1 <ipv6> 53508].
|
||||
|
||||
2026-04-25 21:47:54.86 Server Server is listening on [ 127.0.0.1 <ipv4> 53508].
|
||||
|
||||
2026-04-25 21:47:54.86 Server Dedicated admin connection support was established for listening locally on port 53508.
|
||||
|
||||
2026-04-25 21:47:54.87 Logon Error: 17187, Severity: 16, State: 1.
|
||||
|
||||
2026-04-25 21:47:54.87 Logon SQL Server is not ready to accept new client connections. Wait a few minutes before trying again. If you have access to the error log, look for the informational message that indicates that SQL Server is ready before trying to connect again. [CLIENT: fe80::39fb:30a8:f621:8cdc%2]
|
||||
|
||||
2026-04-25 21:47:54.87 spid17s SQL Server is now ready for client connections. This is an informational message; no user action is required.
|
||||
|
||||
2026-04-25 21:47:54.87 Server SQL Server is attempting to register a Service Principal Name (SPN) for the SQL Server service. Kerberos authentication will not be possible until a SPN is registered for the SQL Server service. This is an informational message. No user action is required.
|
||||
|
||||
2026-04-25 21:47:54.90 Server The SQL Server Network Interface library could not register the Service Principal Name (SPN) [ MSSQLSvc/IMC1.IMC.local:SQLEXPRESS ] for the SQL Server service. Windows return code: 0x2098, state: 15. Failure to register a SPN might cause integrated authentication to use NTLM instead of Kerberos. This is an informational message. Further action is only required if Kerberos authentication is required by authentication policies and if the SPN has not been manually registered.
|
||||
|
||||
2026-04-25 21:47:54.90 Server The SQL Server Network Interface library could not register the Service Principal Name (SPN) [ MSSQLSvc/IMC1.IMC.local:61151 ] for the SQL Server service. Windows return code: 0x2098, state: 15. Failure to register a SPN might cause integrated authentication to use NTLM instead of Kerberos. This is an informational message. Further action is only required if Kerberos authentication is required by authentication policies and if the SPN has not been manually registered.
|
||||
|
||||
2026-04-25 21:47:54.91 spid51 Starting up database 'IMCAIM'.
|
||||
|
||||
2026-04-25 21:47:54.91 spid20s Starting up database 'msdb'.
|
||||
|
||||
2026-04-25 21:47:54.91 spid21s Starting up database 'AIM'.
|
||||
|
||||
2026-04-25 21:47:54.91 spid11s Starting up database 'mssqlsystemresource'.
|
||||
|
||||
2026-04-25 21:47:54.92 spid25s Starting up database 'IMCAIM_Training'.
|
||||
|
||||
2026-04-25 21:47:54.92 spid23s Starting up database 'IMC'.
|
||||
|
||||
2026-04-25 21:47:54.92 spid11s The resource database build version is 15.00.2165. This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-25 21:47:54.95 spid11s Synchronize Database 'master' (1) with Resource Database.
|
||||
|
||||
2026-04-25 21:47:54.98 spid11s Starting up database 'model'.
|
||||
|
||||
2026-04-25 21:47:54.98 spid23s Parallel redo is started for database 'IMC' with worker pool size [2].
|
||||
|
||||
2026-04-25 21:47:54.99 spid25s Parallel redo is started for database 'IMCAIM_Training' with worker pool size [2].
|
||||
|
||||
2026-04-25 21:47:55.01 spid51 Parallel redo is started for database 'IMCAIM' with worker pool size [2].
|
||||
|
||||
2026-04-25 21:47:55.05 spid21s Parallel redo is started for database 'AIM' with worker pool size [2].
|
||||
|
||||
2026-04-25 21:47:55.06 spid23s Parallel redo is shutdown for database 'IMC' with worker pool size [2].
|
||||
|
||||
2026-04-25 21:47:55.07 spid25s Parallel redo is shutdown for database 'IMCAIM_Training' with worker pool size [2].
|
||||
|
||||
2026-04-25 21:47:55.10 spid51 Parallel redo is shutdown for database 'IMCAIM' with worker pool size [2].
|
||||
|
||||
2026-04-25 21:47:55.11 spid21s Parallel redo is shutdown for database 'AIM' with worker pool size [2].
|
||||
|
||||
2026-04-25 21:47:55.11 spid11s Synchronize Database 'model' (3) with Resource Database.
|
||||
|
||||
2026-04-25 21:47:55.13 spid11s Clearing tempdb database.
|
||||
|
||||
2026-04-25 21:47:55.13 spid51 Synchronize Database 'IMCAIM' (6) with Resource Database.
|
||||
|
||||
2026-04-25 21:47:55.13 spid23s Synchronize Database 'IMC' (7) with Resource Database.
|
||||
|
||||
2026-04-25 21:47:55.13 spid21s Synchronize Database 'AIM' (5) with Resource Database.
|
||||
|
||||
2026-04-25 21:47:55.13 spid25s Synchronize Database 'IMCAIM_Training' (8) with Resource Database.
|
||||
|
||||
2026-04-25 21:47:55.13 spid20s Synchronize Database 'msdb' (4) with Resource Database.
|
||||
|
||||
2026-04-25 21:47:55.32 spid11s Starting up database 'tempdb'.
|
||||
|
||||
2026-04-25 21:47:55.44 spid11s The tempdb database has 1 data file(s).
|
||||
|
||||
2026-04-25 21:47:55.45 spid21s The Service Broker endpoint is in disabled or stopped state.
|
||||
|
||||
2026-04-25 21:47:55.45 spid21s The Database Mirroring endpoint is in disabled or stopped state.
|
||||
|
||||
2026-04-25 21:47:55.46 spid21s Service Broker manager has started.
|
||||
|
||||
2026-04-25 21:48:14.29 Server Software Usage Metrics is enabled.
|
||||
|
||||
2026-04-25 21:48:14.93 spid8s Recovery is complete. This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-25 21:53:40.04 spid56 Attempting to load library 'xplog70.dll' into memory. This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-25 21:53:40.05 spid56 Using 'xplog70.dll' version '2019.150.2000' to execute extended stored procedure 'xp_msver'. This is an informational message only; no user action is required.
|
||||
|
||||
2026-04-25 22:02:33.75 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1586322, first LSN: 6391:69096:1, last LSN: 6391:69120:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-04-25T22.00.26.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-25 22:02:33.78 Backup BACKUP DATABASE successfully processed 1586154 pages in 127.093 seconds (97.502 MB/sec).
|
||||
|
||||
2026-04-26 00:00:06.44 spid52s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-04-26 14:01:06.46 spid55 Attempting to load library 'xpstar.dll' into memory. This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-26 14:01:06.51 spid55 Using 'xpstar.dll' version '2019.150.2000' to execute extended stored procedure 'xp_instance_regread'. This is an informational message only; no user action is required.
|
||||
|
||||
2026-04-26 14:01:12.45 Backup Database differential changes were backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 275, first LSN: 460:1008:1, last LSN: 460:1032:1, full backup LSN: 459:129960:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_diff_20260426210107.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-26 14:01:12.50 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 90 pages in 0.104 seconds (6.723 MB/sec).
|
||||
|
||||
2026-04-26 14:01:17.90 Backup Database differential changes were backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 268, first LSN: 66:24:1, last LSN: 66:48:1, full backup LSN: 65:30696:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_diff_20260426210113.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-26 14:01:17.94 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 74 pages in 0.052 seconds (11.042 MB/sec).
|
||||
|
||||
2026-04-26 14:01:18.65 Backup Database differential changes were backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1170, first LSN: 6391:83944:1, last LSN: 6391:83968:1, full backup LSN: 6391:69096:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_diff_20260426210118.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-26 14:01:18.68 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 978 pages in 0.416 seconds (18.357 MB/sec).
|
||||
|
||||
2026-04-26 14:02:29.07 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1586834, first LSN: 6391:84040:1, last LSN: 6391:84064:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260426210118.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-26 14:02:29.11 Backup BACKUP DATABASE successfully processed 1586738 pages in 70.302 seconds (176.330 MB/sec).
|
||||
|
||||
2026-04-26 14:02:33.95 Backup Database differential changes were backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 273, first LSN: 3778:19016:1, last LSN: 3778:19040:1, full backup LSN: 3778:16888:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_diff_20260426210229.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-26 14:02:33.99 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 154 pages in 0.212 seconds (5.656 MB/sec).
|
||||
|
||||
2026-04-26 14:02:38.21 Backup Database differential changes were backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 68, first LSN: 55:2360:1, last LSN: 55:2384:1, full backup LSN: 55:1976:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_diff_20260426210234.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-26 14:02:38.26 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.032 seconds (14.038 MB/sec).
|
||||
|
||||
2026-04-26 14:02:42.75 Backup Database differential changes were backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 2959, first LSN: 917:1328:1, last LSN: 917:1352:1, full backup LSN: 868:32:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_diff_20260426210238.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-26 14:02:42.80 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 2762 pages in 0.268 seconds (80.500 MB/sec).
|
||||
|
||||
2026-04-26 22:02:39.41 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1586834, first LSN: 6391:86424:1, last LSN: 6391:86448:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-04-26T22.00.36.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-26 22:02:39.45 Backup BACKUP DATABASE successfully processed 1586738 pages in 122.641 seconds (101.078 MB/sec).
|
||||
|
||||
2026-04-27 00:00:19.53 spid36s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-04-27 14:01:25.81 Backup Database differential changes were backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 275, first LSN: 460:1464:1, last LSN: 460:1488:1, full backup LSN: 459:129960:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_diff_20260427210121.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-27 14:01:25.86 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 90 pages in 0.122 seconds (5.731 MB/sec).
|
||||
|
||||
2026-04-27 14:01:31.28 Backup Database differential changes were backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 268, first LSN: 66:480:1, last LSN: 66:504:1, full backup LSN: 65:30696:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_diff_20260427210126.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-27 14:01:31.34 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 74 pages in 0.073 seconds (7.866 MB/sec).
|
||||
|
||||
2026-04-27 14:01:45.04 Backup Database differential changes were backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 16018, first LSN: 6392:67320:12, last LSN: 6392:67344:1, full backup LSN: 6391:86424:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_diff_20260427210131.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-27 14:01:45.09 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 15954 pages in 1.447 seconds (86.134 MB/sec).
|
||||
|
||||
2026-04-27 14:02:48.22 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1590034, first LSN: 6392:68000:25, last LSN: 6392:68032:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260427210131.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-27 14:02:48.26 Backup BACKUP DATABASE successfully processed 1589858 pages in 63.022 seconds (197.086 MB/sec).
|
||||
|
||||
2026-04-27 14:02:53.18 Backup Database differential changes were backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 273, first LSN: 3778:19472:1, last LSN: 3778:19496:1, full backup LSN: 3778:16888:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_diff_20260427210248.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-27 14:02:53.22 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 154 pages in 0.205 seconds (5.849 MB/sec).
|
||||
|
||||
2026-04-27 14:02:58.76 Backup Database differential changes were backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 68, first LSN: 55:2432:1, last LSN: 55:2456:1, full backup LSN: 55:1976:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_diff_20260427210254.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-27 14:02:58.81 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.053 seconds (8.475 MB/sec).
|
||||
|
||||
2026-04-27 14:03:03.65 Backup Database differential changes were backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 2959, first LSN: 917:1560:1, last LSN: 917:1584:1, full backup LSN: 868:32:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_diff_20260427210259.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-27 14:03:03.68 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 2770 pages in 0.286 seconds (75.652 MB/sec).
|
||||
|
||||
2026-04-27 22:02:42.94 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1589778, first LSN: 6397:14504:12, last LSN: 6397:14528:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-04-27T22.00.38.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-27 22:02:42.99 Backup BACKUP DATABASE successfully processed 1589650 pages in 124.195 seconds (99.997 MB/sec).
|
||||
|
||||
2026-04-28 00:00:23.75 spid40s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-04-28 14:02:07.54 Backup Database differential changes were backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 275, first LSN: 460:1920:1, last LSN: 460:1944:1, full backup LSN: 459:129960:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_diff_20260428210202.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-28 14:02:07.59 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 90 pages in 0.127 seconds (5.505 MB/sec).
|
||||
|
||||
2026-04-28 14:02:13.18 Backup Database differential changes were backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 268, first LSN: 66:936:1, last LSN: 66:960:1, full backup LSN: 65:30696:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_diff_20260428210208.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-28 14:02:13.23 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 74 pages in 0.081 seconds (7.089 MB/sec).
|
||||
|
||||
2026-04-28 14:02:16.32 Backup Database differential changes were backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 11410, first LSN: 6398:72512:1, last LSN: 6398:72536:1, full backup LSN: 6397:14504:12, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_diff_20260428210213.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-28 14:02:16.36 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 11298 pages in 1.295 seconds (68.155 MB/sec).
|
||||
|
||||
2026-04-28 14:03:17.68 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1591698, first LSN: 6398:72936:68, last LSN: 6398:72984:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260428210213.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-28 14:03:17.69 Backup BACKUP DATABASE successfully processed 1591531 pages in 61.219 seconds (203.104 MB/sec).
|
||||
|
||||
2026-04-28 14:03:19.20 Backup Database differential changes were backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 273, first LSN: 3778:19928:1, last LSN: 3778:19952:1, full backup LSN: 3778:16888:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_diff_20260428210317.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-28 14:03:19.21 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 154 pages in 0.078 seconds (15.374 MB/sec).
|
||||
|
||||
2026-04-28 14:03:20.59 Backup Database differential changes were backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 68, first LSN: 55:2504:1, last LSN: 55:2528:1, full backup LSN: 55:1976:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_diff_20260428210319.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-28 14:03:20.60 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.039 seconds (11.518 MB/sec).
|
||||
|
||||
2026-04-28 14:03:22.14 Backup Database differential changes were backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 2959, first LSN: 917:1768:1, last LSN: 917:1792:1, full backup LSN: 868:32:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_diff_20260428210320.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-28 14:03:22.15 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 2770 pages in 0.144 seconds (150.254 MB/sec).
|
||||
|
||||
2026-04-28 22:02:40.53 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1591698, first LSN: 6399:23776:21, last LSN: 6399:23808:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-04-28T22.00.37.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-28 22:02:40.58 Backup BACKUP DATABASE successfully processed 1591546 pages in 123.132 seconds (100.980 MB/sec).
|
||||
|
||||
2026-04-29 00:00:21.09 spid44s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-04-29 14:02:21.36 Backup Database backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 743571, first LSN: 460:2400:1, last LSN: 460:2424:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_full_20260429210151.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-29 14:02:21.41 Backup BACKUP DATABASE successfully processed 743402 pages in 25.228 seconds (230.213 MB/sec).
|
||||
|
||||
2026-04-29 14:02:27.31 Backup Database backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 1804, first LSN: 66:1416:1, last LSN: 66:1440:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_full_20260429210222.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-29 14:02:27.36 Backup BACKUP DATABASE successfully processed 1562 pages in 0.205 seconds (59.508 MB/sec).
|
||||
|
||||
2026-04-29 14:03:57.41 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1598738, first LSN: 6402:62056:37, last LSN: 6402:62088:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260429210227.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-29 14:03:57.46 Backup BACKUP DATABASE successfully processed 1598650 pages in 88.717 seconds (140.778 MB/sec).
|
||||
|
||||
2026-04-29 14:06:08.02 Backup Database backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 2194321, first LSN: 3778:20408:1, last LSN: 3778:20432:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_full_20260429210357.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-29 14:06:08.07 Backup BACKUP DATABASE successfully processed 2194194 pages in 125.509 seconds (136.580 MB/sec).
|
||||
|
||||
2026-04-29 14:06:08.49 Backup Database backed up. Database: master, creation date(time): 2026/04/25(21:47:54), pages dumped: 524, first LSN: 62354:216:1, last LSN: 62354:240:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\master_full_20260429210608.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-29 14:06:08.53 Backup BACKUP DATABASE successfully processed 514 pages in 0.193 seconds (20.786 MB/sec).
|
||||
|
||||
2026-04-29 14:06:13.16 Backup Database backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 364, first LSN: 55:2600:1, last LSN: 55:2624:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_full_20260429210608.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-29 14:06:13.20 Backup BACKUP DATABASE successfully processed 354 pages in 0.094 seconds (29.379 MB/sec).
|
||||
|
||||
2026-04-29 14:06:18.80 Backup Database backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 4111, first LSN: 917:2000:1, last LSN: 917:2024:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_full_20260429210613.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-29 14:06:18.84 Backup BACKUP DATABASE successfully processed 3922 pages in 0.337 seconds (90.910 MB/sec).
|
||||
|
||||
2026-04-29 22:02:45.33 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1598610, first LSN: 6402:125320:12, last LSN: 6402:125344:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-04-29T22.00.39.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-29 22:02:45.37 Backup BACKUP DATABASE successfully processed 1598458 pages in 124.876 seconds (100.002 MB/sec).
|
||||
|
||||
2026-04-30 00:00:22.82 spid20s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-04-30 14:02:00.44 Backup Database differential changes were backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 275, first LSN: 460:2888:1, last LSN: 460:2912:1, full backup LSN: 460:2400:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_diff_20260430210156.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-30 14:02:00.46 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 74 pages in 0.065 seconds (8.834 MB/sec).
|
||||
|
||||
2026-04-30 14:02:04.63 Backup Database differential changes were backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 268, first LSN: 66:1904:1, last LSN: 66:1928:1, full backup LSN: 66:1416:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_diff_20260430210201.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-30 14:02:04.67 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.050 seconds (8.984 MB/sec).
|
||||
|
||||
2026-04-30 14:02:08.27 Backup Database differential changes were backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 15762, first LSN: 6403:101560:1, last LSN: 6403:101584:1, full backup LSN: 6402:125320:12, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_diff_20260430210204.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-30 14:02:08.29 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 15562 pages in 1.244 seconds (97.728 MB/sec).
|
||||
|
||||
2026-04-30 14:03:21.66 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1600914, first LSN: 6403:101816:24, last LSN: 6403:101848:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260430210204.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-30 14:03:21.70 Backup BACKUP DATABASE successfully processed 1600826 pages in 73.317 seconds (170.580 MB/sec).
|
||||
|
||||
2026-04-30 14:03:26.77 Backup Database differential changes were backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 273, first LSN: 3778:20896:1, last LSN: 3778:20920:1, full backup LSN: 3778:20408:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_diff_20260430210321.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-30 14:03:26.80 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 122 pages in 0.161 seconds (5.895 MB/sec).
|
||||
|
||||
2026-04-30 14:03:30.08 Backup Database differential changes were backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 68, first LSN: 55:2704:1, last LSN: 55:2728:1, full backup LSN: 55:2600:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_diff_20260430210326.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-30 14:03:30.11 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.071 seconds (6.327 MB/sec).
|
||||
|
||||
2026-04-30 14:03:34.14 Backup Database differential changes were backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 527, first LSN: 917:2256:1, last LSN: 917:2280:1, full backup LSN: 917:2000:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_diff_20260430210330.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-04-30 14:03:34.17 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 290 pages in 0.081 seconds (27.922 MB/sec).
|
||||
|
||||
2026-04-30 22:02:44.01 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1601170, first LSN: 6404:40416:12, last LSN: 6404:40440:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-04-30T22.00.38.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-04-30 22:02:44.05 Backup BACKUP DATABASE successfully processed 1601002 pages in 124.246 seconds (100.669 MB/sec).
|
||||
|
||||
2026-05-01 00:00:42.18 spid46s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-05-01 14:02:02.30 Backup Database differential changes were backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 275, first LSN: 460:3344:1, last LSN: 460:3368:1, full backup LSN: 460:2400:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_diff_20260501210157.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-01 14:02:02.34 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 74 pages in 0.130 seconds (4.417 MB/sec).
|
||||
|
||||
2026-05-01 14:02:07.93 Backup Database differential changes were backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 268, first LSN: 66:2360:1, last LSN: 66:2384:1, full backup LSN: 66:1416:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_diff_20260501210203.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-01 14:02:07.99 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.084 seconds (5.347 MB/sec).
|
||||
|
||||
2026-05-01 14:02:10.48 Backup Database differential changes were backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 15506, first LSN: 6405:13776:1, last LSN: 6405:13800:1, full backup LSN: 6404:40416:12, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_diff_20260501210208.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-01 14:02:10.52 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 15314 pages in 1.565 seconds (76.445 MB/sec).
|
||||
|
||||
2026-05-01 14:03:25.83 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1604242, first LSN: 6405:18080:65, last LSN: 6405:18128:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260501210208.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-01 14:03:25.87 Backup BACKUP DATABASE successfully processed 1604139 pages in 75.215 seconds (166.620 MB/sec).
|
||||
|
||||
2026-05-01 14:03:31.08 Backup Database differential changes were backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 273, first LSN: 3778:21352:1, last LSN: 3778:21376:1, full backup LSN: 3778:20408:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_diff_20260501210325.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-01 14:03:31.12 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 122 pages in 0.230 seconds (4.127 MB/sec).
|
||||
|
||||
2026-05-01 14:03:35.88 Backup Database differential changes were backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 68, first LSN: 55:2776:1, last LSN: 55:2800:1, full backup LSN: 55:2600:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_diff_20260501210331.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-01 14:03:35.94 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.074 seconds (6.070 MB/sec).
|
||||
|
||||
2026-05-01 14:03:41.16 Backup Database differential changes were backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 527, first LSN: 917:2472:1, last LSN: 917:2496:1, full backup LSN: 917:2000:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_diff_20260501210336.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-01 14:03:41.20 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 362 pages in 0.099 seconds (28.527 MB/sec).
|
||||
|
||||
2026-05-01 22:02:44.99 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1602706, first LSN: 6408:552:12, last LSN: 6408:576:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-05-01T22.00.39.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-01 22:02:45.04 Backup BACKUP DATABASE successfully processed 1602618 pages in 125.278 seconds (99.941 MB/sec).
|
||||
|
||||
2026-05-02 00:00:56.38 spid32s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-05-02 14:01:40.71 Backup Database differential changes were backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 275, first LSN: 460:3800:1, last LSN: 460:3824:1, full backup LSN: 460:2400:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_diff_20260502210135.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-02 14:01:40.75 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 74 pages in 0.130 seconds (4.417 MB/sec).
|
||||
|
||||
2026-05-02 14:01:46.11 Backup Database differential changes were backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 268, first LSN: 66:2816:1, last LSN: 66:2840:1, full backup LSN: 66:1416:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_diff_20260502210141.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-02 14:01:46.17 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.080 seconds (5.615 MB/sec).
|
||||
|
||||
2026-05-02 14:01:50.51 Backup Database differential changes were backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 31634, first LSN: 6410:68992:1, last LSN: 6410:69016:1, full backup LSN: 6408:552:12, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_diff_20260502210146.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-02 14:01:50.55 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 31482 pages in 2.731 seconds (90.058 MB/sec).
|
||||
|
||||
2026-05-02 14:03:11.31 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1609874, first LSN: 6410:69768:187, last LSN: 6410:69864:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260502210146.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-02 14:03:11.36 Backup BACKUP DATABASE successfully processed 1609782 pages in 80.674 seconds (155.891 MB/sec).
|
||||
|
||||
2026-05-02 14:03:16.63 Backup Database differential changes were backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 273, first LSN: 3778:21808:1, last LSN: 3778:21832:1, full backup LSN: 3778:20408:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_diff_20260502210311.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-02 14:03:16.66 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 122 pages in 0.195 seconds (4.867 MB/sec).
|
||||
|
||||
2026-05-02 14:03:21.36 Backup Database differential changes were backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 68, first LSN: 55:2848:1, last LSN: 55:2872:1, full backup LSN: 55:2600:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_diff_20260502210316.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-02 14:03:21.40 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.067 seconds (6.704 MB/sec).
|
||||
|
||||
2026-05-02 14:03:26.17 Backup Database differential changes were backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 527, first LSN: 918:272:1, last LSN: 918:296:1, full backup LSN: 917:2000:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_diff_20260502210321.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-02 14:03:26.22 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 402 pages in 0.084 seconds (37.341 MB/sec).
|
||||
|
||||
2026-05-02 22:02:43.93 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1609746, first LSN: 6410:121952:12, last LSN: 6410:121976:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-05-02T22.00.39.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-02 22:02:43.98 Backup BACKUP DATABASE successfully processed 1609626 pages in 123.837 seconds (101.546 MB/sec).
|
||||
|
||||
2026-05-03 00:00:15.52 spid22s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-05-03 14:01:49.30 Backup Database differential changes were backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 275, first LSN: 460:4256:1, last LSN: 460:4280:1, full backup LSN: 460:2400:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_diff_20260503210144.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-03 14:01:49.35 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 74 pages in 0.125 seconds (4.593 MB/sec).
|
||||
|
||||
2026-05-03 14:01:54.72 Backup Database differential changes were backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 268, first LSN: 66:3272:1, last LSN: 66:3296:1, full backup LSN: 66:1416:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_diff_20260503210150.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-03 14:01:54.78 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.086 seconds (5.223 MB/sec).
|
||||
|
||||
2026-05-03 14:01:56.02 Backup Database differential changes were backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 2194, first LSN: 6411:12984:1, last LSN: 6411:13008:1, full backup LSN: 6410:121952:12, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_diff_20260503210155.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-03 14:01:56.07 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 1986 pages in 0.585 seconds (26.515 MB/sec).
|
||||
|
||||
2026-05-03 14:03:16.85 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1610386, first LSN: 6411:13104:12, last LSN: 6411:13128:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260503210155.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-03 14:03:16.89 Backup BACKUP DATABASE successfully processed 1610234 pages in 80.685 seconds (155.914 MB/sec).
|
||||
|
||||
2026-05-03 14:03:22.06 Backup Database differential changes were backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 273, first LSN: 3778:22264:1, last LSN: 3778:22288:1, full backup LSN: 3778:20408:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_diff_20260503210316.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-03 14:03:22.09 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 122 pages in 0.193 seconds (4.918 MB/sec).
|
||||
|
||||
2026-05-03 14:03:26.79 Backup Database differential changes were backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 68, first LSN: 55:2920:1, last LSN: 55:2944:1, full backup LSN: 55:2600:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_diff_20260503210322.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-03 14:03:26.83 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.072 seconds (6.239 MB/sec).
|
||||
|
||||
2026-05-03 14:03:31.79 Backup Database differential changes were backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 527, first LSN: 918:480:1, last LSN: 918:504:1, full backup LSN: 917:2000:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_diff_20260503210327.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-03 14:03:31.85 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 402 pages in 0.115 seconds (27.275 MB/sec).
|
||||
|
||||
2026-05-03 22:02:45.91 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1610386, first LSN: 6411:18752:12, last LSN: 6411:18776:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-05-03T22.00.40.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-03 22:02:45.96 Backup BACKUP DATABASE successfully processed 1610226 pages in 125.587 seconds (100.168 MB/sec).
|
||||
|
||||
2026-05-04 00:00:29.83 spid14s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-05-04 14:01:58.20 Backup Database differential changes were backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 275, first LSN: 460:4712:1, last LSN: 460:4736:1, full backup LSN: 460:2400:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_diff_20260504210153.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-04 14:01:58.22 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 74 pages in 0.073 seconds (7.866 MB/sec).
|
||||
|
||||
2026-05-04 14:02:03.10 Backup Database differential changes were backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 268, first LSN: 66:3728:1, last LSN: 66:3752:1, full backup LSN: 66:1416:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_diff_20260504210158.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-04 14:02:03.14 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.073 seconds (6.153 MB/sec).
|
||||
|
||||
2026-05-04 14:02:04.72 Backup Database differential changes were backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 14610, first LSN: 6413:2592:1, last LSN: 6413:2616:1, full backup LSN: 6411:18752:12, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_diff_20260504210203.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-04 14:02:04.77 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 14410 pages in 1.081 seconds (104.138 MB/sec).
|
||||
|
||||
2026-05-04 14:03:26.05 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1612434, first LSN: 6413:2848:24, last LSN: 6413:2880:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260504210203.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-04 14:03:26.10 Backup BACKUP DATABASE successfully processed 1612322 pages in 81.197 seconds (155.132 MB/sec).
|
||||
|
||||
2026-05-04 14:03:31.61 Backup Database differential changes were backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 273, first LSN: 3778:22720:1, last LSN: 3778:22744:1, full backup LSN: 3778:20408:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_diff_20260504210326.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-04 14:03:31.64 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 122 pages in 0.213 seconds (4.456 MB/sec).
|
||||
|
||||
2026-05-04 14:03:36.64 Backup Database differential changes were backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 68, first LSN: 55:2992:1, last LSN: 55:3016:1, full backup LSN: 55:2600:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_diff_20260504210331.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-04 14:03:36.69 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.075 seconds (5.989 MB/sec).
|
||||
|
||||
2026-05-04 14:03:42.12 Backup Database differential changes were backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 655, first LSN: 918:696:1, last LSN: 918:720:1, full backup LSN: 917:2000:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_diff_20260504210337.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-04 14:03:42.16 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 418 pages in 0.122 seconds (26.735 MB/sec).
|
||||
|
||||
2026-05-04 22:02:47.84 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1613074, first LSN: 6415:20824:12, last LSN: 6415:20848:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-05-04T22.00.40.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-04 22:02:47.89 Backup BACKUP DATABASE successfully processed 1612978 pages in 127.229 seconds (99.044 MB/sec).
|
||||
|
||||
2026-05-05 00:00:49.04 spid13s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
2026-05-05 14:01:46.13 Backup Database differential changes were backed up. Database: AIM, creation date(time): 2021/03/18(10:02:02), pages dumped: 275, first LSN: 460:5168:1, last LSN: 460:5192:1, full backup LSN: 460:2400:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\AIM_diff_20260505210141.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-05 14:01:46.18 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 74 pages in 0.122 seconds (4.706 MB/sec).
|
||||
|
||||
2026-05-05 14:01:51.90 Backup Database differential changes were backed up. Database: IMC, creation date(time): 2023/08/21(07:49:23), pages dumped: 268, first LSN: 66:4184:1, last LSN: 66:4208:1, full backup LSN: 66:1416:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMC_diff_20260505210147.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-05 14:01:51.96 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.091 seconds (4.936 MB/sec).
|
||||
|
||||
2026-05-05 14:01:55.59 Backup Database differential changes were backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 15634, first LSN: 6417:79192:93, last LSN: 6417:79248:1, full backup LSN: 6415:20824:12, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_diff_20260505210152.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-05 14:01:55.63 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 15484 pages in 1.450 seconds (83.424 MB/sec).
|
||||
|
||||
2026-05-05 14:03:19.28 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1616274, first LSN: 6417:83592:56, last LSN: 6417:83632:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_full_20260505210152.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-05 14:03:19.33 Backup BACKUP DATABASE successfully processed 1616067 pages in 83.565 seconds (151.086 MB/sec).
|
||||
|
||||
2026-05-05 14:03:24.47 Backup Database differential changes were backed up. Database: IMCAIM_Training, creation date(time): 2024/03/01(12:23:55), pages dumped: 273, first LSN: 3778:23176:1, last LSN: 3778:23200:1, full backup LSN: 3778:20408:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\IMCAIM_Training_diff_20260505210319.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-05 14:03:24.51 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 122 pages in 0.215 seconds (4.414 MB/sec).
|
||||
|
||||
2026-05-05 14:03:29.33 Backup Database differential changes were backed up. Database: model, creation date(time): 2003/04/08(09:13:36), pages dumped: 68, first LSN: 55:3064:1, last LSN: 55:3088:1, full backup LSN: 55:2600:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\model_diff_20260505210324.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-05 14:03:29.38 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 58 pages in 0.076 seconds (5.910 MB/sec).
|
||||
|
||||
2026-05-05 14:03:34.61 Backup Database differential changes were backed up. Database: msdb, creation date(time): 2017/08/22(19:39:22), pages dumped: 655, first LSN: 918:912:1, last LSN: 918:936:1, full backup LSN: 917:2000:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\ProgramData\Online Backup\MSSQL\IMC1_SQLEXPRESS\msdb_diff_20260505210329.bak'}). This is an informational message. No user action is required.
|
||||
|
||||
2026-05-05 14:03:34.66 Backup BACKUP DATABASE WITH DIFFERENTIAL successfully processed 426 pages in 0.116 seconds (28.657 MB/sec).
|
||||
|
||||
2026-05-05 22:02:48.78 Backup Database backed up. Database: IMCAIM, creation date(time): 2023/08/21(07:43:33), pages dumped: 1614610, first LSN: 6418:26096:20, last LSN: 6418:26128:1, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\SQL\MSSQL14.SQLEXPRESS\MSSQL\Backup\IMCAIM_2026-05-05T22.00.40.bak'}). This is an informational message only. No user action is required.
|
||||
|
||||
2026-05-05 22:02:48.82 Backup BACKUP DATABASE successfully processed 1614482 pages in 128.405 seconds (98.229 MB/sec).
|
||||
|
||||
2026-05-06 00:00:08.24 spid33s This instance of SQL Server has been using a process ID of 20756 since 4/25/2026 9:47:54 PM (local) 4/26/2026 4:47:54 AM (UTC). This is an informational message only; no user action is required.
|
||||
|
||||
|
||||
===== STEP 4: sys.databases + sys.master_files (if loginOk) =====
|
||||
|
||||
Msg 451, Level 16, State 1, Server IMC1\SQLEXPRESS, Line 1
|
||||
|
||||
Cannot resolve collation conflict between "Latin1_General_CI_AS_KS_WS" and "SQL_Latin1_General_CP1_CI_AS" in add operator occurring in SELECT statement column 1.
|
||||
|
||||
--- master_files (user DBs only) ---
|
||||
|
||||
Msg 451, Level 16, State 1, Server IMC1\SQLEXPRESS, Line 1
|
||||
|
||||
Cannot resolve collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS_KS_WS" in add operator occurring in SELECT statement column 1.
|
||||
|
||||
|
||||
===== STEP 4b: File-system DB enumeration (fallback / cross-check) =====
|
||||
|
||||
--- DATA dir candidates ---
|
||||
|
||||
C:\Program Files\Microsoft SQL Server\MSSQL*.SQLEXPRESS\MSSQL\DATA
|
||||
|
||||
C:\Program Files (x86)\Microsoft SQL Server\MSSQL*.SQLEXPRESS\MSSQL\DATA
|
||||
|
||||
--- .mdf / .ldf / .ndf under SQLEXPRESS DATA dirs ---
|
||||
|
||||
|
||||
===== STEP 5: Active sessions (if loginOk) =====
|
||||
|
||||
55|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
55|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
55|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
55|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
57|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
57|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
57|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
58|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
58|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
58|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:42AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
60|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:43AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
60|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:43AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
60|AIMUser1|IMC-MINI|AIM/6|.Net SqlClient Data Provider|May 6 2026 6:43AM|May 6 2026 1:03PM|sleeping|192.168.0.72|IMCAIM
|
||||
|
||||
59|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 6:53AM|May 6 2026 9:11AM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
59|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 6:53AM|May 6 2026 9:11AM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
59|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 6:53AM|May 6 2026 9:11AM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
59|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 6:53AM|May 6 2026 9:11AM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
74|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
74|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
74|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
74|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
74|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
74|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
79|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
79|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
79|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
82|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:01PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
82|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:01PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
82|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 9:08AM|May 6 2026 1:01PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
103|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
103|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
103|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
104|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
104|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
104|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
105|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:01PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
105|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:01PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
105|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:01PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
109|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
109|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
109|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 10:25AM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
98|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 10:26AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
98|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 10:26AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
98|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 10:26AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
98|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 10:26AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
95|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:03PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
95|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:03PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
95|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:03PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
95|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:03PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
112|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:03PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
112|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:03PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
112|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:03PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
113|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:02PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
113|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:02PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
113|AIMUser1|DESKTOP-44L80C0|AIM/9|.Net SqlClient Data Provider|May 6 2026 10:28AM|May 6 2026 1:02PM|sleeping|192.168.0.46|IMCAIM
|
||||
|
||||
118|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 10:35AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
118|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 10:35AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
118|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 10:35AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
118|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 10:35AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
77|AIMUser1|DESKTOP-MR3ALTK|AIM/7|.Net SqlClient Data Provider|May 6 2026 10:41AM|May 6 2026 1:04PM|sleeping|192.168.0.59|IMCAIM
|
||||
|
||||
77|AIMUser1|DESKTOP-MR3ALTK|AIM/7|.Net SqlClient Data Provider|May 6 2026 10:41AM|May 6 2026 1:04PM|sleeping|192.168.0.59|IMCAIM
|
||||
|
||||
77|AIMUser1|DESKTOP-MR3ALTK|AIM/7|.Net SqlClient Data Provider|May 6 2026 10:41AM|May 6 2026 1:04PM|sleeping|192.168.0.59|IMCAIM
|
||||
|
||||
71|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 10:52AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
71|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 10:52AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
71|AIMUser1|IMC1|AIM/22|.Net SqlClient Data Provider|May 6 2026 10:52AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
92|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 11:13AM|May 6 2026 1:01PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
92|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 11:13AM|May 6 2026 1:01PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
92|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 11:13AM|May 6 2026 1:01PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
73|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
73|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
73|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
94|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:02PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
94|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:02PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
94|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:02PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
100|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:00PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
100|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:00PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
100|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:00PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
108|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:02PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
108|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:02PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
108|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:02PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
97|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:00PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
97|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:00PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
97|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 11:28AM|May 6 2026 1:00PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
111|AIMUser1|IMC1|AIM/17|.Net SqlClient Data Provider|May 6 2026 11:52AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
111|AIMUser1|IMC1|AIM/17|.Net SqlClient Data Provider|May 6 2026 11:52AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
111|AIMUser1|IMC1|AIM/17|.Net SqlClient Data Provider|May 6 2026 11:52AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
117|AIMUser1|IMC1|AIM/17|.Net SqlClient Data Provider|May 6 2026 11:52AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
117|AIMUser1|IMC1|AIM/17|.Net SqlClient Data Provider|May 6 2026 11:52AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
117|AIMUser1|IMC1|AIM/17|.Net SqlClient Data Provider|May 6 2026 11:52AM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
93|AIMUser1|IMC1|AIM/17|.Net SqlClient Data Provider|May 6 2026 11:52AM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
93|AIMUser1|IMC1|AIM/17|.Net SqlClient Data Provider|May 6 2026 11:52AM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
93|AIMUser1|IMC1|AIM/17|.Net SqlClient Data Provider|May 6 2026 11:52AM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
68|AIMUser1|DESKTOP-MR3ALTK|AIM/7|.Net SqlClient Data Provider|May 6 2026 12:08PM|May 6 2026 1:03PM|sleeping|192.168.0.59|IMCAIM
|
||||
|
||||
68|AIMUser1|DESKTOP-MR3ALTK|AIM/7|.Net SqlClient Data Provider|May 6 2026 12:08PM|May 6 2026 1:03PM|sleeping|192.168.0.59|IMCAIM
|
||||
|
||||
68|AIMUser1|DESKTOP-MR3ALTK|AIM/7|.Net SqlClient Data Provider|May 6 2026 12:08PM|May 6 2026 1:03PM|sleeping|192.168.0.59|IMCAIM
|
||||
|
||||
65|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 12:09PM|May 6 2026 1:04PM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
65|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 12:09PM|May 6 2026 1:04PM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
65|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 12:09PM|May 6 2026 1:04PM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
87|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 12:10PM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
87|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 12:10PM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
87|AIMUser1|IMC-LESSONS|AIM/16|.Net SqlClient Data Provider|May 6 2026 12:10PM|May 6 2026 1:03PM|sleeping|192.168.0.62|IMCAIM
|
||||
|
||||
63|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 12:11PM|May 6 2026 1:04PM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
63|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 12:11PM|May 6 2026 1:04PM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
63|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 12:11PM|May 6 2026 1:04PM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
62|AIMUser1|DESKTOP-MR3ALTK|AIM/7|.Net SqlClient Data Provider|May 6 2026 12:17PM|May 6 2026 1:03PM|sleeping|192.168.0.59|IMCAIM
|
||||
|
||||
62|AIMUser1|DESKTOP-MR3ALTK|AIM/7|.Net SqlClient Data Provider|May 6 2026 12:17PM|May 6 2026 1:03PM|sleeping|192.168.0.59|IMCAIM
|
||||
|
||||
62|AIMUser1|DESKTOP-MR3ALTK|AIM/7|.Net SqlClient Data Provider|May 6 2026 12:17PM|May 6 2026 1:03PM|sleeping|192.168.0.59|IMCAIM
|
||||
|
||||
54|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 12:17PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
54|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 12:17PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
54|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 12:17PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
61|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 12:17PM|May 6 2026 1:04PM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
61|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 12:17PM|May 6 2026 1:04PM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
61|AIMUser1|IMC-SVCSTR|AIM/11|.Net SqlClient Data Provider|May 6 2026 12:17PM|May 6 2026 1:04PM|sleeping|192.168.0.55|IMCAIM
|
||||
|
||||
80|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 12:18PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
80|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 12:18PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
80|AIMUser1|IMC1|AIM/8|.Net SqlClient Data Provider|May 6 2026 12:18PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
85|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
85|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
85|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
85|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
102|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
102|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
102|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
114|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
114|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
114|AIMUser1|IMC-L1-STATION9|AIM/25|.Net SqlClient Data Provider|May 6 2026 12:24PM|May 6 2026 1:04PM|sleeping|192.168.0.41|IMCAIM
|
||||
|
||||
116|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 12:26PM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
116|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 12:26PM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
116|AIMUser1|IMC1|AIM/3|.Net SqlClient Data Provider|May 6 2026 12:26PM|May 6 2026 1:04PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
64|AIMUser1|IMC1|AIM/24|.Net SqlClient Data Provider|May 6 2026 12:31PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
64|AIMUser1|IMC1|AIM/24|.Net SqlClient Data Provider|May 6 2026 12:31PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
64|AIMUser1|IMC1|AIM/24|.Net SqlClient Data Provider|May 6 2026 12:31PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
67|AIMUser1|IMC1|AIM/24|.Net SqlClient Data Provider|May 6 2026 12:32PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
67|AIMUser1|IMC1|AIM/24|.Net SqlClient Data Provider|May 6 2026 12:32PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
67|AIMUser1|IMC1|AIM/24|.Net SqlClient Data Provider|May 6 2026 12:32PM|May 6 2026 1:03PM|sleeping|<local machine>|IMCAIM
|
||||
|
||||
75|AIMUser1|IMC-STATION2|AIM/2|.Net SqlClient Data Provider|May 6 2026 12:34PM|May 6 2026 1:03PM|sleeping|192.168.0.66|IMCAIM
|
||||
|
||||
75|AIMUser1|IMC-STATION2|AIM/2|.Net SqlClient Data Provider|May 6 2026 12:34PM|May 6 2026 1:03PM|sleeping|192.168.0.66|IMCAIM
|
||||
|
||||
75|AIMUser1|IMC-STATION2|AIM/2|.Net SqlClient Data Provider|May 6 2026 12:34PM|May 6 2026 1:03PM|sleeping|192.168.0.66|IMCAIM
|
||||
|
||||
75|AIMUser1|IMC-STATION2|AIM/2|.Net SqlClient Data Provider|May 6 2026 12:34PM|May 6 2026 1:03PM|sleeping|192.168.0.66|IMCAIM
|
||||
|
||||
52|AIMUser1|C2B|AIM/0|.Net SqlClient Data Provider|May 6 2026 12:35PM|May 6 2026 1:01PM|sleeping|192.168.0.4|IMCAIM
|
||||
2241
clients/instrumental-music-center/scripts/out/imc1_stdout.txt
Normal file
2241
clients/instrumental-music-center/scripts/out/imc1_stdout.txt
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user