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

SQL Anywhere 12.0.1 » SQL Anywhere サーバー SQL リファレンス » ビュー » 互換ビュー

 

SYSCOLLATION 互換ビュー (旧式)

SYSCOLLATION 互換ビューには、データベースの照合順情報が格納されます。組み込み関数経由で取得でき、カタログには保存されません。このビューの定義を次に示します。

ALTER VIEW "SYS"."SYSCOLLATION"
  as select 1 as collation_id,
    DB_PROPERTY('Collation') as collation_label,
    DB_EXTENDED_PROPERTY('Collation','Description') as collation_name,
    cast(DB_EXTENDED_PROPERTY('Collation','LegacyData') as binary(1280)) as collation_order
 参照