Post-installation steps
Semarchy xDM is now up and running. This page describes the post-installation and next recommended tasks for the Administrators and Project Managers.
Finalize repository read-only user privileges
The repository read-only user connects to the repository to render the xDM Discovery profiles and needs SELECT privileges on the profiling tables created with the repository. Run the following scripts to grant to the repository read-only user select privileges on the profiling tables created in the repository schema.
/* Grant select privileges on the profiling tables */
GRANT USAGE ON SCHEMA <repository_user> TO <repository_readonly_user>;
GRANT SELECT ON TABLE
<repository_user>.PRF_PROFILING,
<repository_user>.PRF_TABLE,
<repository_user>.PRF_COLUMN,
<repository_user>.PRF_DIST_VALS,
<repository_user>.PRF_DIST_PATTERNS
TO <repository_readonly_user>;
SELECT
on profiling tables to the read-only user (SQL Server)USE <repository_database_name>
GO
/* Grant select privileges on the profiling tables */
GRANT SELECT ON PRF_PROFILING TO <repository_readonly_user>;
GRANT SELECT ON PRF_TABLE TO <repository_readonly_user>;
GRANT SELECT ON PRF_COLUMN TO <repository_readonly_user>;
GRANT SELECT ON PRF_DIST_VALS TO <repository_readonly_user>;
GRANT SELECT ON PRF_DIST_PATTERNS TO <repository_readonly_user>;
SELECT
on profiling tables to the read-only user (Oracle)-- Grant select privileges on the profiling tables
GRANT SELECT ON <repository_user>.PRF_PROFILING TO <repository_readonly_user>;
GRANT SELECT ON <repository_user>.PRF_TABLE TO <repository_readonly_user>;
GRANT SELECT ON <repository_user>.PRF_COLUMN TO <repository_readonly_user>;
GRANT SELECT ON <repository_user>.PRF_DIST_VALS TO <repository_readonly_user>;
GRANT SELECT ON <repository_user>.PRF_DIST_PATTERNS TO <repository_readonly_user>;
Next steps for administrators
Administrators should proceed with the following tasks:
-
Activate the Semarchy xDM instance with a license key.
-
Secure the Semarchy xDM instance:
-
Declare the roles in Semarchy xDM and grant platform-level privileges to these roles.
-
Create users who will be able to use Semarchy xDM.
-
Configure authentication and SSO to use your enterprise authentication provider.
-
Configure secrets management to better secure secrets in your Semarchy xDM instance.
-
-
Configure Datasources to deploy data hubs, profile source data or build dashboards.
-
Configure Notification Servers to send emails and job notifications.
See Get started with administration for more information about administrative tasks. |
Next steps for project managers
Project Managers should proceed to the following tasks:
-
Use xDM Discovery to profile existing datasources.
-
Deploy the data hub using to the datasources configured when installing Semarchy xDM.
-
Use xDM Dashboard to build dashboards on top of the data hubs and other datasources.