Hi @Kranthi DBA ,
>It i s the SQL log file that is growing in size.
If you want to reduce the log file size. You need to find the reason that why the log file growth rapidly, then shrink the SQL log file to reduce the log size.
Normally we follow the steps below to shrink SQL log file:
- Perform full backup of database
- Perform transaction log backup
sometimes, we have to perform multi transaction log backup before the transaction log could be shrank.
- Shrink transaction log
if the transaction log cannot be shrank, please execute the following statement to check why the transaction log cannot be shrink:
SELECT log_reuse_wait_desc FROM sys.databases WHERE name='<database name>'
if the result is other than NOTHING, please perform corresponding operation. Then please try step 2 and 3 again.