8

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.

Miguel-F
  • 13,450
  • 6
  • 38
  • 63
mathiascolebar
  • 199
  • 3
  • 10

1 Answers1

9

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.

Leigh
  • 28,765
  • 10
  • 55
  • 103
svaens
  • 649
  • 7
  • 23
  • 2
    I have read-only access to a database controlled by a vendor and am connecting using SQL Workbench. Is there a way of connecting without running that SQL Statement? – Aaron C. de Bruyn Dec 20 '18 at 15:33