Use the PROPERTY system function to retrieve the value for an individual property and use the sa_eng_properties system procedure to retrieve the values of all database server properties.
Prerequisites
There are no prerequisites for this task.
Context and remarks
Property names are case insensitive. Database server properties apply across the database server as a whole.
Use one of the following methods to access database server property values:
Option | Action |
---|---|
Retrieve the value of a database server property | Use the PROPERTY system function. |
Retrieve the values of all database server properties | Use the sa_eng_properties system procedure. |
Example
The following statement returns the number of cache pages used for global server data structures:
SELECT PROPERTY ( 'MainHeapPages' ); |
Use the sa_eng_properties system procedure to retrieve the values of all database server properties:
CALL sa_eng_properties; |
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2014, SAP AG or an SAP affiliate company. - SAP Sybase SQL Anywhere 16.0 |