Creating a new default device other than master

The master device is the default device in a newly installed Adaptive Server. This means that, if you create any databases (including the proxy databases used by failover), they are automatically created on the master device. However, adding user databases to master makes it more difficult to restore the master device from a system failure. To make sure that the master device contains as few extraneous user databases as possible, use disk init to create a new device (make sure this device is on a dedicated shared disk). Use sp_diskdefault to specify the new device as the default before you configure Adaptive Server as a companion for fail over. For example, to add a new default device named money1_default1 to the MONEY1 Adaptive Server, enter:

sp_diskdefault MONEY1_default1, defaulton

The master device continues to also be a default device until you suspend it as the default device:

sp_diskdefault master, defaultoff

See the Reference Manual: Commands for information about disk init. See the Reference Manual: Procedures for information about sp_diskdefault.