How to execute differnet import.sql in Hibernate/JPA for each persistence unit? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T04:34:56Zhttp://stackoverflow.com/feeds/question/742004http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/742004/how-to-execute-differnet-import-sql-in-hibernate-jpa-for-each-persistence-unit1How to execute differnet import.sql in Hibernate/JPA for each persistence unit?Dan2009-04-12T16:24:12Z2009-04-13T01:33:30Z
<p>I have configured two persistence units in my JPA/Hibernate configuration. Now i need to execute different import.sql for each persistence unit. How can I specify which import.sql should be executed for each persistence unit? According Hibernate to documentation, I should place import.sql in classpath. If I do that, import.sql is executed on each persistence unit. I need somehow to specify different import.sql for each persistence unit.</p>
http://stackoverflow.com/questions/742004/how-to-execute-differnet-import-sql-in-hibernate-jpa-for-each-persistence-unit/742804#7428040Answer by mattsidesinger for How to execute differnet import.sql in Hibernate/JPA for each persistence unit?mattsidesinger2009-04-13T01:33:30Z2009-04-13T01:33:30Z<p>You could probably do something manual using the org.hibernate.tool.hbm2ddl.SchemaExport class when your application starts up.</p>
<pre><code>SchemaExport schemaExport1 = new SchemaExport(cfg1); // there are various c-tors available
schemaExport1.setInputFile("/import-1.sql");
schemaExport1.create(false, true);
SchemaExport schemaExport2 = new SchemaExport(cfg2);
schemaExport2.setInputFile("/import-2.sql");
schemaExport2.create(false, true);
</code></pre>