Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JZ0SJ: Metadata accessor information was not found on this database

I have problem with my ColdFusion application. When I try to log into my account it generates the following error

JZ0SJ: Metadata accessor information was not found on this database.
Please install the required tables as mentioned in the jConnect documentation.

I am using SQL Anywhere 9 and also jConnect-6_0. Can anyone help me with this please.

like image 960
mathiascolebar Avatar asked Dec 13 '13 14:12

mathiascolebar


1 Answers

It seems no one ever properly answered this. Just in case it comes in handy (though I'd never recommend using this database), to solve the above problem, install the metadata tables. Run the following statement being the only account connected to the database:

ALTER DATABASE Upgrade JCONNECT ON

As mentioned in the Sybase documentation.

like image 107
svaens Avatar answered Sep 21 '22 13:09

svaens