limrepo export

Note: For instructions on installing and running the Administration Utility, see Getting Started with the Administration Utility.

The limrepo export command exports named resources (such as named tables) from the Spectrum Spatial repository to a local file system. You must have the Location Intelligence Module installed to use this command.

Resources are exported with their full repository paths in the target folder. For example, if you run limrepo export --s /Samples/NamedTables --o C:\export, the tool creates C:\export\Samples\NamedTables\WorldTable, and so on for each named table under the NamedTables folder or directory.
Note: The limrepo export command will always recursively export all folders, including empty ones.

Usage

limrepo export --s SourceRepositoryPath --o OutputFilePath
Note: To see a list of parameters, type help limrepo export.
Required Argument Description
Yes --s SourceRepositoryPath

Specifies the path to the resource or a folder to be exported.

Yes --o OutputFilePath Specifies the path to a folder on the local file system where you want to export. This can be a new folder or an existing folder; however, an existing folder must be empty otherwise the export will fail.
No --q or --quiet Disables the display of the resources copied during the export; that is, operates in quiet mode.

If the flag is specified, the default value is true. If the flag is not specified, the default value is false.

No --f or --fullpaths

Prints the full source and output paths.

If the flag is specified, the default value is true. If the flag is not specified, the default value is false.

No --r or --recursive

Recursively exports subfolders (children of the specified source).

If the flag is specified, the default value is true. If the flag is not specified, the default value is true.

No --c or --continueonerror

Continues with the export if an error occurs.

If the flag is specified, the default value is true. If the flag is not specified, the default value is false.

No --a or --acl Preserves existing permissions for the exported resources in the export folder on the local file system. An access control list (ACL) indicates the operations each user or role can perform on a named resource, such as create, view, edit, or delete.

If the flag is specified, the default value is true. If the flag is not specified, the default value is false.

Example

This example exports the named resources in the repository's \Samples folder to C:\myrepository\samples on your local file system.

limrepo export --s /Samples --o C:\myrepository\samples