SHOW COLLATIONs
or SHOW COLLATEs
Firebird 2.0
SHOW {COLLATIONs | COLLATEs} [name]
These commands display a list of all user-defined collations in the current database.The first form of the commands display a list of all collations while a specific collation may be displayed by providing the collation name.
SQL> show collations; UNICODE_ENUS_CI, CHARACTER SET UTF8, FROM EXTERNAL ('UNICODE'), PAD SPACE, CASE INSENSITIVE, 'COLL-VERSION=58.0.6.48' UNICODE_ENUS_CS, CHARACTER SET UTF8, FROM EXTERNAL ('UNICODE'), PAD SPACE, 'COLL-VERSION=58.0.6.48' SQL> show collation unicode_enus_ci; UNICODE_ENUS_CI, CHARACTER SET UTF8, FROM EXTERNAL ('UNICODE'), PAD SPACE, CASE INSENSITIVE, 'COLL-VERSION=58.0.6.48'
You can see from the output above, which is not part of the employee database, does appear to display all relevant information in the first form of the command.There does not appear to be much reason to drill down into a specific collation — at least, not for to this example.Some lines in the above have had to be split over two to allow it to fit on the page.