You can create a new master device using the dataserver utility.
The master device is built using the build mode in dataserver. After the master device is built, the server shuts down. You must then manually start the server in the start mode. After this you can start, stop, and restart the SAP ASE server whenever necessary without having to rebuild the master device
The SAP ASE server uses:
Logical page size – these are the pages that the database objects are built with. A databases and any of its related objects must use the same logical page size. Logical page sizes come in sizes of 2K, 4K, 8K, and 16K.
Virtual page size – this is the physical page allocation at the disk level, and is always done in 2K pages. All disk I/O is done in multiples of virtual page size.
Memory page size – the memory allocated and managed within the SAP ASE server. The memory page size is always in units of 2K pages.
To create a new master device with dataserver, use:
dataserver -ddevice_name . . . b [master_device_size [k|K|m|M|g|G] [-z logical_page_size [k|K] -h
where:
-d device_name – is the full path name of the device for the master database. The master database device must be writable by the user who starts the SAP ASE server. The default master database device name is d_master.
-b 51204 – specifies a device of 51,204 virtual pages (100.0078125MB).
-b 100M – specifies a device of 100MB
-z – specifies the logical page size, which is always 2K, 4K, 8K, or 16K. This parameter is optional during the build phase and is ignored during the start mode. If you do not include the -z parameter during the build mode, the master device is built with 2K logical pages.
-h – prints the syntax for the dataserver command.