Recreating In-Memory and Relaxed-Durability Databases From a Dump After an Adaptive Server Shutdown
You can restore the
data from the dump because the in-memory and relaxed-durability databases are
recreated when you restart Adaptive Server.
Repopulate the recreated replicate in-memory or relaxed-durability
database with a new dump or from any archived dumps taken from the
replicate database.
Note: If the dump is not loaded from the dump of the source, there will
be missing rows in the replicate tables.
For example, to load the tokyo_db database from the original
tokyo_db.source dump when the host Adaptive Server restarts:
use master
go
sp_dboption tokyo_db, single, true
go
load database tokyo_db from '/databases/dump/tokyo_db.dump'
go
online database tokyo_db
go
sp_dboption tokyo_db, single, false
go
Resume the connection to the recreated replicate in-memory or
relaxed-durability database.