Notice: You have been identified as a bot, so no internal UID will be assigned to you. If you are a real person messing with your useragent, you should change it back to something normal.

Minichan

Topic: I HAYW HOW GAY THE PREN

Anonymous A started this discussion 5 hours ago #134,170

/

boof joined in and replied with this 5 hours ago, 13 minutes later[^] [v] #1,429,156

@ECHO OFF
@SETLOCAL ENABLEEXTENSIONS
REM ffVacuumAll2.cmd v2 2017-10-19
REM Runs sqlite3 VACUUM command on all SQLite databases in the current folder
REM Just for safety we will not compact files with a Write-Ahead-Log remaining behind
REM Make backup of all databases prior to vacuuming
PUSHD "%~dp0"
MD SQLiteBackup >NUL:
COMPACT /C SQLiteBackup >NUL:
For %%F in ("*.sqlite") do (
IF NOT EXIST "%%~F-wal" (
copy /Y /B "%%~F" SQLiteBackup >NUL: 2>&1
IF ERRORLEVEL 0 (
echo Compacting "%%~F"
sqlite3 "%%~F" "VACUUM;" )
) ELSE echo Skipping "%%~F" because of existing Write-Ahead-Log
)
POPD
pause

Anonymous A (OP) replied with this 5 hours ago, 1 minute later, 15 minutes after the original post[^] [v] #1,429,157

@previous (boof)
DIS HE JUST VACCUM THE DATABAE? YO WHO ARE YOU JUSTIN KAN?

Anonymous C joined in and replied with this 4 hours ago, 57 minutes later, 1 hour after the original post[^] [v] #1,429,163

:

Please familiarise yourself with the rules and markup syntax before posting.