How to find the version of MDB in Client Automation?
Client Automation 14.x
There are 2 ways to get this info:
1.- Open SQL Management Studio and run the following query against the MDB:
select * from mdb
2.- Open command prompt and type the following commands:
osql -S <server_name> -d mdb -E -e -b -Q "exit(select mdbmajorversion, mdbminorversion, buildnumber from mdb)"