Use the Hyland Healthcare Configuration Provider Admin tool to update the configuration schema for an existing database.
To update the configuration schema for a database:
- Open a Command Prompt using the Run as administrator option.
- In the Command Prompt, navigate to the directory where Hyland.Healthcare.Config.Provider.Admin.exe is located.
-
Run the executable in migrate mode using the appropriate
arguments to connect to your database.
-
For a SQL Server database:
Hyland.Healthcare.Config.Provider.Admin.exe migrate -d "Data Source={ServerInstance};Initial Catalog={DatabaseName};User Id={Username};Password={Password};" -s "{schema}" -p "mssql"
-
For an Oracle database:
Hyland.Healthcare.Config.Provider.Admin.exe migrate -d "Data Source={DatabaseHostname};Service Name={DatabaseName};User Id={Username};Password={Password};" -s "{schema}" -p "oracle"
The Hyland Healthcare Configuration Provider Admin tool indicates whether the operation succeeded or failed. If the operation succeeded, then the schema was added or updated successfully. If the operation failed, then no changes were made to the database.
-