It happens that the SQL Server have a large log file, and you don't need it. Here is the ways to shrink the log file:
Method 1:
Import the data to the database ( highlight the database->Tasks->Import data ),
or Export the data from the database ( highlight the database->Tasks->Export data )
Method 2:
Shrink the log file to the desired size, for example, 1MB. That is, highlight the database->Tasks->Shrink->Files
set the file size, say, 1MB.
Method 3 ( Eliminate the log file completely):
In the SQL Server Management Studio,
Method 4
USE Site2
GO
DBCC SHRINKFILE('Site2_Log', 1)
BACKUP LOG Site2 WITH TRUNCATE_ONLY
DBCC SHRINKFILE('Site2_Log', 1)
GO