Question

I have a SQL Server 2012 Express. Now, I have seen, that it is not using the log-file anymore. The size of the log file is always 2MB and the changedate is in the past. The database is in high use so I am wondering me, why the transaction log is not growing. It looks for me, that the SQL Server is not using the logfile anymore. On the database Autogrowing for the logfile is on (in 10MB steps) and the maximum is 2'097'152MB. Are there any other options to configure the use of the log file?

Was it helpful?

Solution

Now, I have seen, that it is not using the log-file anymore. The size of the log file is always 2MB

Technically impossible to not use the tx log.

Somone like did put your database into simple recovery mode, so that log is automatically truncated after every transaction, but it is still used.

Check the recovery settings on the database (in properties).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top