EVL Anonymization


Products, services and company names referenced in this document may be either trademarks or registered trademarks of their respective owners.

Copyright © 2017–2021 EVL Tool, s.r.o.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts.

Examples

Connect to Oracle

Example of variables in configs/anon/some_oracle_source.sh which need to be set to connect to Oracle DB:

export SOURCE_DB="some_schema"
export TARGET_DB="some_schema"
export TARGET_TABLE_SUFFIX="_anon"

export ORAUSER="some_user"
export ORAPASS="$(cat $HOME/.orapass)"
export ORACONN="(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)
                                                    (HOST=12.34.56.78)
                                                    (PORT=1521)))
                             (CONNECT_DATA=(SERVER=DEDICATED)
                                           (SERVICE_NAME=abcd)))"

export TARGET_CONN="12.34.56.79:1521/abcd"