Skip to content

Commit e32f5e3

Browse files
Update docs/relational-databases/logs/troubleshoot-a-full-transaction-log-sql-server-error-9002.md
Co-authored-by: William Assaf MSFT <wiassaf@microsoft.com>
1 parent 36e2ea1 commit e32f5e3

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

docs/relational-databases/logs/troubleshoot-a-full-transaction-log-sql-server-error-9002.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,9 +443,10 @@ BEGIN
443443
growth
444444
FROM sys.master_files
445445
WHERE file_id = 2
446-
AND (SIZE*8.0/1024)/(max_size*8.0/1024)*100 > 90
446+
AND ( (SIZE*8.0/1024)/(max_size*8.0/1024)*100 > 90
447447
AND max_size not in (-1, 268435456)
448-
OR growth = 0
448+
OR growth = 0 )
449+
449450
450451
OPEN reached_max_size
451452

0 commit comments

Comments
 (0)