(Enhanced version only)
Makes a backup copy of a text index.
sp_text_dump_database backupdbs [, current_to] [, current_with] [, current_stripe01 [, ... [, current_stripe31]]] [, textdb_to] [, textdb_with] [, textdb_stripe01 [, ... [, textdb_stripe31]]]
– specifies whether the current database and the text_db database are backed up before the text index is backed up. Valid values are shown in Table A-3.
Value |
Description |
---|---|
CURRENT_DB_AND_INDEXES |
Indicates that the current database is backed up before the text indexes are backed up. |
CURRENT_DB_AND_CURRENT_INDEXES |
Indicates that the current database is backed up before the text indexes are backed up, and only the indexes associated with the current database are dumped. |
TEXT_DB_AND_INDEXES |
Indicates that the text_db database is backed up before the text indexes are backed up. |
INDEXES_AND_DATABASES |
Indicates that the current and text_db databases are backed up before the text indexes are backed up. |
ONLY_INDEXES |
Indicates that only the text indexes are backed up. |
– is the to clause of the dump database command for dumping the current database. Use this only if you specify CURRENT_DB_AND_INDEXES or INDEXES_AND_DATABASES for the backupdbs parameter.
– is the with clause of the dump database command for dumping the current database. Use this only if you specify CURRENT_DB_AND_INDEXES or INDEXES_AND_DATABASES for the backupdbs parameter.
– is the stripe clause of the dump database command for dumping the current database. Use this only if you specify CURRENT_DB_AND_INDEXES or INDEXES_AND_DATABASES for the backupdbs parameter.
– is the to clause of the dump database command for dumping the text_db database. Use this only if you specify INDEXES_AND_DATABASES for the backupdbs parameter. Use this only if you specify TEXT_DB_AND_INDEXES or INDEXES_AND_DATABASES for the backupdbs parameter.
– is the with clause of the dump database command for dumping the text_db database. Use this only if you specify TEXT_DB_AND_INDEXES or INDEXES_AND_DATABASES for the backupdbs parameter.
– is the stripe clause of the dump database command for dumping the text_db database. Use this only if you specify TEXT_DB_AND_INDEXES or INDEXES_AND_DATABASES for the backupdbs parameter.
sp_text_dump_database ONLY_INDEXES
Only text indexes are backed up.
sp_text_dump_database CURRENT_DB_AND_INDEXES, "to ’/data/db1backup’"
The current database is dumped to /data/db1backup before the text indexes are backed up.
sp_text_dump_database @backkupdbs = "TEXT_DB_AND_INDEXES", @textdb_to = "to ’/data/textdbbackup’"
The text_db database is dumped to /data/textdbbackup before the text indexes are backed up.
sp_text_dump_database @backupdbs = "INDEXES_AND_DATABASES", @current_to = "to ’/data/db1backup’", @textdb_to = "to ’/data/textdbbackup’"
The current database is dumped to /data/db1backup and the text_db database is dumped to /data/textdbbackup before the text indexes are backed up.
The Full-Text Search engine concatenates the values of current_to, current_with, and current_stripe01 to current_stripe31 to dump database currentdbname and then executes the dump database command. The output from the execution of the dump database command is sent to the Full-Text Search error log.
The Full-Text Search engine concatenates the values of textdb_to, textdb_with, and textdb_stripe01 to textdb_stripe31 to the string “dump database currentdbname” and then executes the dump database command. The output from the execution of the dump database command is sent to the Full-Text Search error log.
All entries in the text_events table that have a “processed” status in the current database are deleted when all indexes have been backed up.
The backup files for the Verity collections are stored in the directory specified in the backDir configuration parameter.
See references to the configuration paramter backCmd for customizing backups.
The parameter value ‘value’ is invalid
Server name ‘server’ does not exist in sysservers
Attempt to dump database ‘database_name’ failed - use the ’dump database’ command
Attempt to backup text indexes on server ’server_name’ failed
Attempt to clean text_events in database ‘database_name’ failed (date = ’date’)
Parameter ’parameter_name’ is required when dumping database ‘database_name’
Dumping database ’database_name’ - check Full Text Search SDS error log for status
Any user can execute sp_text_dump_database.
dump_database in the Adaptive Server Reference Manual.