Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » SQL Functions » Alphabetical list of functions

PROPERTY function [System] Next Page

PROPERTY_DESCRIPTION function [System]


Returns a description of a property.

Syntax

PROPERTY_DESCRIPTION( { property-id | property-name } )

Parameters

property-id    An integer that is the property-number of the database property. This number can be determined from the PROPERTY_NUMBER function. The property-id is commonly used when looping through a set of properties.

property-name    A string giving the name of the database property.

Remarks

Each property has both a number and a name, but the number is subject to change between releases, and should not be used as a reliable identifier for a given property.

See also
Standards and compatibility
Example

The following statement returns the description Number of index insertions.

SELECT PROPERTY_DESCRIPTION( 'IndAdd' );