Reports database property information.
sa_db_info( [ dbidparm ] )
dbidparm Use this optional INTEGER parameter to specify the database ID number. The default is NULL.
Column name | Data type | Description |
---|---|---|
Number | INTEGER |
Returns the connection ID (a number) for the current connection. |
Alias | VARCHAR(255) |
Returns the database name. |
File | VARCHAR(255) |
Returns the file name of the database root file, including path. |
ConnCount | INTEGER |
Returns the number of connections to the database. The property value does not include connections used for internal operations, but it does include connections used for events and external environment support. |
PageSize | INTEGER |
Returns the page size of the database, in bytes. |
LogName | VARCHAR(255) |
Returns the file name of the transaction log, including path. |
If you specify a database ID, sa_db_info returns a single row containing the Number, Alias, File, ConnCount, PageSize, and LogName for the specified database.
If dbidparm is greater than zero, then properties for the supplied database are returned. If dbidparm is less than zero, then properties for the current database are returned. If dbidparm is not supplied or is NULL, then properties for all databases running on the database server are returned.
Cloud note: Because of tenant database isolation rules, when this system procedure is run in the cloud it returns only information about
the current tenant database.
No privileges are required to execute this system procedure for the current database. To execute this system procedure for other databases, you must have either the SERVER OPERATOR or MONITOR system privilege.
None
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2014, SAP AG or an SAP affiliate company. - SAP Sybase SQL Anywhere 16.0 |