Shrink command for AxDB Sql log file to free space in development VM D365FO
Please execute below commands in SQL Server on AxDB. USE AxDB; GO ALTER DATABASE AxDB SET RECOVERY SIMPLE; GO DBCC SHRINKFILE (N'AxDBCopy1_Log', EMPTYFILE); GO
Think Twice Code Once...