...
- Checkout the project
No Format svn checkout https://svn.kuali.org/repos/ole/branches/dev/50-upgrade-test-1
- Change into the directory for the ole-sql module
No Format cd ole-app/ole-db/ole-sql
- Bundle the SQL
No Format mvn clean install
- Execute the SQL
No Format mvn initialize -Pdb,mysql -N
- The default MySQL process assumes
- There is a MySQL server running locally
- The server is version 5.1+
- The
root
user for MySQL does not have a password - The server is listening for connections on port 3306
- The JDBC connection URL that must respond is
jdbc:mysql://localhost
can be accessed byroot
- The process will create a database user named
OLE
with the password set toOLE
- The process will create and populate a database named
OLE
- To execute the SQL against an Oracle database
No Format mvn initialize -Pdb,oracle -N
...