mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
Generate entities for all schemas of a Oracle database #5230
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @globtec on GitHub (Aug 24, 2016).
Originally assigned to: @Ocramius on GitHub.
I have a problem in a legacy system that use Oracle database with many schemas. I’ve added the Doctrine2 to Project. When I used the features to generate entities, I saw that the generated entities was only of one of the username’s schemas in the connection. How to generate entities for all schemas used in my application? The user used in the connection with database has a privilege in all schemas and the database has sinonimos configured.
@Ocramius commented on GitHub (Aug 24, 2016):
Only the schema you are currently working on is considered by the database driver: this is by design.
Closing as
can't fix.