When I'm creating the Hibernate application for first time and in the cfg.xml file, declared property hbm2ddl.auto as update , but it is still creating table instead throwing Exception "Table/View does not exits"
property name="hbm2ddl.auto" update
As per the value "update", if the table is already exits it has to update the data and it should not create the table in the DB(oracle).
But , in my case I declare "update" and no table exists in the DB but creating the table instead throwing Exception.
Can any one suggest me on this.