no database tables??
I'm attempting to install pacsone but for some reason can not get the database to create any initial tables. I go thru the install and it acts as tho it sets the AE title and sets up the database properly but when i'm done and i look at the database there is nothing there. Any ideas? Otherwise i think things are working properly so far.
No DataBase tables ????
I also have the same promblem. I go thru the install and it acts as expected.but when i'm done and i look at the database there is nothing there.
db_install.log file says '"mysql.exe"' is not recognized as an internal or external command, operable program or batch file. What's wrong ????
db_install.log file says '"mysql.exe"' is not recognized as an internal or external command, operable program or batch file. What's wrong ????
You must be running the Basic Edition of PacsOne Server as the installer for the Basic Edition sometimes would fail to find the MySQL client executable program mysql.exe (which would then result in empty MySQL database tables).
You can run the following manually to setup your database from a command shell:
1. Open a command shell and add the path to MySQL client program to the PATH. For example:
2. Change dir to the directory where PacsOne is installed, the run the following:
where:
$database is the MySQL database you've created for PacsOne
$username is the MySQL username you've created for PacsOne
You can run the following manually to setup your database from a command shell:
1. Open a command shell and add the path to MySQL client program to the PATH. For example:
Code: Select all
C:\>path=%path%;C:\mysql\bin
Code: Select all
mysql -vvf -u $username -p $database < db_schema
$database is the MySQL database you've created for PacsOne
$username is the MySQL username you've created for PacsOne