What is "catalog" used in a hibernate annotated class?

Databases have different methods (or names for the same methods :) to organize its tables.

Some database place all tables in a different "schema", some in different "catalogs". In the attribute you can specify this.


From Wikipedia:

The database catalog of a database instance consists of metadata in which definitions of database objects such as base tables, views (virtual tables), synonyms, value ranges, indexes, users, and user groups are stored.

Also, if your DB is MySQL, check this.

Hope that helps.