-
Notifications
You must be signed in to change notification settings - Fork 0
Compress SQLite
Proxx edited this page May 8, 2015
·
22 revisions
NAME
Compress-SQLite
SYNOPSIS
Compress the database file.
SYNTAX
Compress-SQLite [-Connection] <SQLiteConnection> [<CommonParameters>]
DESCRIPTION
Compress the database file (VACUUM)
PARAMETERS
-Connection <SQLiteConnection>
`Required? true`
`Position? 1`
`Default value `
`Accept pipeline input? true (ByValue)`
`Accept wildcard characters? false`
`<CommonParameters>`
`This cmdlet supports the common parameters: Verbose, Debug,`
`ErrorAction, ErrorVariable, WarningAction, WarningVariable,`
`OutBuffer, PipelineVariable, and OutVariable. For more information, see `
`about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). `
INPUTS
[System.Data.SQLite.SQLiteConnection] Variable
OUTPUTS
Total size saved
`-------------------------- EXAMPLE 1 --------------------------`
`C:\PS>Compress-SQLite -Connection <System.Data.SQLite.SQLiteConnection>`
`-------------------------- EXAMPLE 2 --------------------------`
`C:\PS><System.Data.SQLite.SQLiteConnection> | Compress-SQLite`
RELATED LINKS
http://www.proxx.nl/