Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sv translation
languageja

 

Note

To be able to use this function, Remote storage has to be enabled by the license key.

Remote data table mapping enables to store data in a remote database instead of the database used by BellaDati. In that case, data are stored only in the source database and the mapping between BellaDati and the source database table is done by a intermediate database view located on the remote storage. Currently, PostgreSQL and Oracle Database is supported.

使用方法

To use Remote data table mapping, following prerequisites are required:

  1. Remote storage enabled
  2. Existing data set located on the remote storage with already configured structure (attributes and indicators). Once the remote mapping is set, it is not possible to add, edit or delete the attributes and indicators.
  3. For Oracle Database, it is necessary to modify the database access rights - see Remote storage.
    1. When the remote storage is configured, BellaDati will automatically create a new user (schema) in the database, e.g. DS_DOMAIN1. It is necessary to grant this user access (SELECT) to the tables from which the data will be loaded.
    2. For remote data table mapping, additional privileges has to be assigned to the user which is used for connecting to the database:

      Code Block
      languagesql
      GRANT CREATE ANY VIEW TO NAME_OF_THE_USER;
      GRANT SELECT ON sys.dba_tab_columns to NAME_OF_THE_USER;

      Please note that the last query has to be executed by user with the sysdba role, e.g. via SQL Plus.

The Remote data table mapping is set in the Advanced settings of the data set. If all prerequisites are met, an option to configure the mapping is displayed.

After clicking on Edit, the page for Remote mapping configuration is displayed. If the mapping is was not configured yet, there is a button to create a new mapping. Next, the user has to specify from which database table should BellaDati load the data. It is necessary to specify the name of the table with the tablespace (or user for Oracle) - e.g. "MYDATA"."SOURCETABLE". To confirm, user needs to click on Save.

As the next step, user has to map the columns from the database table to the actual attributes and indicators of the data set. Once configured, user has to save the configuration and click on Recreate mapping. After confirming, the view is created (or updated) and data are available in the data set. 

既存のマッピングを編集する

To edit existing mapping, user has to click on Edit.

After that, the user can do following actions:

  1. Edit existing mapping.
  2. Choose a different database table by clicking on Edit.
  3. Delete the mapping.

制限事項

  • Time column is currently not supported. Use datetime instead in both source database and the data set. For the Oracle database, use the DATE column to store both Date and DateTime values.