...
Platform | Create the database user | ||||||||||
Oracle: | This command will prompt for the name of the user to be created.
| ||||||||||
Sql Server: | Before creating the database, ensure that default collation is Latin1_General_CI_AS
This command requires the user, the password, the login and the database to be provided as parameters.
| ||||||||||
MariaDB: |
Create the user, supplying the name of the database, the user and the password in the commands below:
|
...
Code Block |
---|
java -jar bin/installer.jar -url="jdbc:oracle:thin:@hostname:1521/phixflow" -user=myuser -pass=mypass -install -customer="Your Customer Name" |
SQL Server:
Note |
---|
See notes above - make sure before you install PhixFlow that the database has the required collation |
Code Block |
---|
java -jar bin/installer.jar -url="jdbc:sqlserver://myhost\myserver;databaseName=phixflow" -user=myuser -pass=mypass -install -customer="Your Customer Name" |
...