Erram, kiran a écrit : > Hi > > We are using oracle 10g to store Nuxeo repository in our own database > and we configured all the xml files according to oracle 10g. > > Could you please provide us all the script files which are used by the > oracle10g to create all the needed tables?
It depends on the nature of the different services with persistent resources. In all cases all the needed tables are created lazily upon first access. All you need to make sure is that the user configured in the datasource has the create table privilege granted on the database. Most of the time the simplest thing to do it to create a single nuxeo user for a single database and make the user the owner of that database. Most services do not explicitly use SQL scripts except the jackrabbit persistence managers that have .ddl files embedded in the jackrabbit-core jar. For instance in the SQLDirectory case, tables are created according to the info of the xsd schemas configured for the directories. What do you want such script for? -- Olivier _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
