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

SQL Anywhere 11.0.1 (Deutsch) » SQL Anywhere Server - SQL-Referenzhandbuch » Systemobjekte » Ansichten » Kompatibilitätsansichten

 

SYSCOLLATIONMAPPINGS-Kompatibilitätsansicht (veraltet)

Die SYSCOLLATIONMAPPINGS-Kompatibilitätsansicht enthält nur eine Zeile mit der Datenbankkollatierungszuordnung. Sie ist mittels integrierter Funktionen verfügbar und ist nicht im Katalog enthalten. Die Ansicht hat folgende Definition:

ALTER VIEW "SYS"."SYSCOLLATIONMAPPINGS"
  as select DB_PROPERTY('Collation') as collation_label,
    DB_EXTENDED_PROPERTY('Collation','Description') as collation_name,
    DB_PROPERTY('Charset') as cs_label,
    DB_EXTENDED_PROPERTY('Collation','ASESensitiveSortOrder') as so_case_label,
    DB_EXTENDED_PROPERTY('Collation','ASEInsensitiveSortOrder') as so_caseless_label,
    DB_EXTENDED_PROPERTY('Charset','java') as jdk_label;
Siehe auch