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

SAP Sybase SQL Anywhere 16.0 (Deutsch) » SQL Anywhere Server - SQL-Referenzhandbuch » Ansichten » Kompatibilitätsansichten

 

SYSCOLLATIONMAPPINGS-Kompatibilitätsansicht (nicht mehr empfohlen)

Die SYSCOLLATIONMAPPINGS-Kompatibilitätsansicht enthält nur eine Zeile mit der Kollationszuordnung der Datenbank. 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