REFERENCE
To add documents to a view
This script adds documents to the default view All Document $all.
add [NumMailNotesPerUser]
drop
This script adds documents to the Inbox folder using the format -f foldername.
add [NumMailNotesPerUser] -f $Inbox
This script adds a single document to the Inbox view. In this example, the document Subject (length of summary item) is set to 30 bytes and the Body (length of non-summary item) is set to 10000 bytes.
add 1 30 10000 -f $Inbox
This script creates a local database -- in this example, a Journal database. The NOTES.INI file contains the setting TemplateVersion=6. Text enclosed in asterisks (**) indicates comments.
pause 5000
This script creates multiple databases on a specified server. In this example, a Journal database is created; the actual thread number is substituted for the "#" symbol; and the NOTES.INI file contains the setting TemplateVersion=6. Text enclosed in asterisks (**) indicates comments.
**Creation of multiple databases, based on the number of threads; all test databases will be placed in the journal directory**
This script updates a view collection. In this example, Journal databases are created; the actual thread number is substituted for the "#" symbol; and the NOTES.INI file contains the setting TemplateVersion=6. Text enclosed in asterisks (**) indicates comments.
open $All
This script creates and initializes one or more mail files The variable NumMailNotesPerUser is used to determine the number of documents in each mail file.
populate [NumMailNotesPerUser] $Inbox
open
close
This example uses the Console command to issue the Show Stat command remotely. You can substitute any server command for Show Stat.