You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/relational-databases/logs/troubleshoot-a-full-transaction-log-sql-server-error-9002.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ ms.custom: "seo-lt-2019"
31
31
32
32
To discover what is preventing log truncation in a given case, use the **log_reuse_wait** and **log_reuse_wait_desc** columns of the **sys.database** catalog view. For more information, see [sys.databases (Transact-SQL)](../../relational-databases/system-catalog-views/sys-databases-transact-sql.md). For descriptions of factors that can delay log truncation, see [The Transaction Log (SQL Server)](../../relational-databases/logs/the-transaction-log-sql-server.md).
33
33
34
-
> **IMPORTANT!!**
34
+
> [!IMPORTANT]
35
35
> If the database was in recovery when the 9002 error occurred, after resolving the problem, recover the database by using [ALTER DATABASE *database_name* SET ONLINE.](../../t-sql/statements/alter-database-transact-sql-set-options.md)
36
36
37
37
Alternatives for responding to a full transaction log include:
@@ -55,8 +55,8 @@ ms.custom: "seo-lt-2019"
55
55
56
56
**To create a transaction log backup**
57
57
58
-
> **IMPORTANT**
59
-
> If the database is damaged, see [Tail-Log Backups (SQL Server)](../../relational-databases/backup-restore/tail-log-backups-sql-server.md).
58
+
> [!IMPORTANT]
59
+
> If the database is damaged, see [Tail-Log Backups (SQL Server)](../../relational-databases/backup-restore/tail-log-backups-sql-server.md).
60
60
61
61
-[Back Up a Transaction Log (SQL Server)](../../relational-databases/backup-restore/back-up-a-transaction-log-sql-server.md)
62
62
@@ -68,7 +68,8 @@ ms.custom: "seo-lt-2019"
68
68
### Move the log file to a different disk
69
69
If you cannot free enough disk space on the drive that currently contains the log file, consider moving the file to another drive with sufficient space.
70
70
71
-
> **IMPORTANT!!** Log files should never be placed on compressed file systems.
71
+
> [!IMPORTANT]
72
+
> Log files should never be placed on compressed file systems.
72
73
73
74
**Move a log file**
74
75
@@ -85,7 +86,8 @@ ms.custom: "seo-lt-2019"
85
86
86
87
- Turn on autogrow by using the ALTER DATABASE statement to set a non-zero growth increment for the FILEGROWTH option.
87
88
88
-
> **NOTE** In either case, if the current size limit has been reached, increase the MAXSIZE value.
89
+
> [!NOTE]
90
+
> In either case, if the current size limit has been reached, increase the MAXSIZE value.
89
91
90
92
### Add a log file on a different disk
91
93
Add a new log file to the database on a different disk that has sufficient space by using ALTER DATABASE <database_name> ADD LOG FILE.
0 commit comments