Disable table check at application deployment.
We're using WebLogic Server 9.2 for our J2EE applications.
When deploying an EAR, WLS checks the jdbc database for tables and columns refered by the Entity EJB. If at least one column/table is missing from tha database, the deployment fails.
We develop and sell an application that is used by many clients. Some of our clients don't use some of the Entity EJB defined and thus they don't need to have all the tables, but the deployment will fail if the tables are missing even if there are never used in fact.
Is it possible to disable this check and let the application deploy even if the database tables doesn't exist ?