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

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

 

SYSCOLLATION-Kompatibilitätsansicht (nicht mehr empfohlen)

Die SYSCOLLATION-Kompatibilitätsansicht enthält Kollatierungssequenzinformationen für die Datenbank. Sie ist mittels integrierter Funktionen verfügbar und ist nicht im Katalog enthalten. Die Ansicht hat folgende Definition:

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
 Siehe auch