{"record":{"id":"2658061caa9a48b5","repo":"hibernate/hibernate-orm","slug":"no-create-catalog-syntax-supported-by-classname","errorCode":null,"errorMessage":"No create catalog syntax supported by {className}","messagePattern":"No create catalog syntax supported by (.+?)","errorType":"exception","errorClass":"UnsupportedOperationException","httpStatus":null,"severity":"error","filePath":"hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java","lineNumber":4116,"sourceCode":"\n\t/**\n\t * Does this dialect support creating and dropping catalogs?\n\t *\n\t * @return True if the dialect supports catalog creation; false otherwise.\n\t */\n\tpublic boolean canCreateCatalog() {\n\t\treturn false;\n\t}\n\n\t/**\n\t * Get the SQL command used to create the named catalog.\n\t *\n\t * @param catalogName The name of the catalog to be created.\n\t *\n\t * @return The creation commands\n\t */\n\tpublic String[] getCreateCatalogCommand(String catalogName) {\n\t\tthrow new UnsupportedOperationException( \"No create catalog syntax supported by \" + getClass().getName() );\n\t}\n\n\t/**\n\t * Get the SQL command used to drop the named catalog.\n\t *\n\t * @param catalogName The name of the catalog to be dropped.\n\t *\n\t * @return The drop commands\n\t */\n\tpublic String[] getDropCatalogCommand(String catalogName) {\n\t\tthrow new UnsupportedOperationException( \"No drop catalog syntax supported by \" + getClass().getName() );\n\t}\n\n\t/**\n\t * Does this dialect support creating and dropping schema?\n\t *\n\t * @return True if the dialect supports schema creation; false otherwise.\n\t */","sourceCodeStart":4098,"sourceCodeEnd":4134,"githubUrl":"https://github.com/hibernate/hibernate-orm/blob/fad1729dce015f908198d57a8d80274a30f905a5/hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java#L4098-L4134","documentation":"Error \"No create catalog syntax supported by {className}\" thrown in hibernate/hibernate-orm.","triggerScenarios":"Triggered when the application calls a Hibernate dialect feature that the configured database dialect cannot provide: No create catalog syntax supported by the dialect class.","commonSituations":"Common when running against a database whose dialect lacks this capability, when a mapping or HQL/Criteria query requests unsupported functionality, or when the wrong dialect is configured for the database in use. Error: No create catalog syntax supported by the dialect class.","solutions":["Disable catalog creation in schema management settings.","Create catalogs manually with native DDL."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"fad1729dce015f908198d57a8d80274a30f905a5","analyzedAt":"2026-08-22T04:13:57.527Z","schemaVersion":2},"datasetVersion":"2026-08-22T09:17:25.309Z"}