The serverdatabaseconsoledump statement dumps the raw contents of the specified database on the server to the console in comma delimited format.
Parameters
This statement has three parameters:database – name of the database to dump, or “” for the current database.
option – additional option/value pairs, see below.
value – additional option/value pairs, see below.
Description
This statement dumps the raw contents of the specified server database on the server to the console in comma delimited format.
Important Note: This statement was developed for ProVUE’s internal use during development of Panorama, but is available for anyone to use.
This statement only works when running Panorama X Server from Terminal.app, if you are running it normally, this statement is ignored. Note: Even though this statement is used on the client computer, this output will appear on the server computer.
To dump the current database, just use a single empty parameter.
serverdatabaseconsoledump ""
You can also specify any open database:
serverdatabaseconsoledump "Contacts"
Additional parameters can be added as option/value pairs. This example specifies that only records in the state of California should be dumped.
serverdatabaseconsoledump "Contacts","QUERY",{State="CA"}
For more information about the dump format and dump options, see the databaseconsoledump statement.
See Also
History
Version | Status | Notes |
10.2 | New | New in this version. |