3

Sybase SQL Anyware のバージョンを確認するためのクエリまたはコマンドは?

対話型クライアントとしてsqlsh + freetdsを (Emacs で)使用します。

4

1 に答える 1

3

For databases, you can use the SYSHISTORY system view to find out what version the database was created at.

select version from SYSHISTORY where object_id = OBJ_ID_OF_DB

If you databases were migrated from earlier installations, and don't show the version number you expect, you probably could just create a small database, and take a look at the version history information.

于 2014-05-27T17:42:51.730 に答える