XTR: Change the owner of XTR installation.
Step 1: Change the owner of non SQL files in the XTR installation
Command;
FUP GIVE <$vol>.<xygatetr>.* WHERE NOT SQL AND NOT OWNER = <new-owner>, <new-onwer>
Step 2: Change the owner of SQL Catalogs in the XTR installation
Command;
SQLCI ALTER CATALOG <$vol>.<xygatetr> OWNER <new-owner>;
Step 3: List the SQL Tables not owned by <new-owner> in the XTR installation
Command;
FUP INFO <$vol>.<xygatetr>.* WHERE TABLE AND NOT OWNER = <new-owner>
Step 4: Change the owner of SQL Tables not owned by <new-owner> in the XTR installation
Command;
SQLCI ALTER TABLE <$vol>.<xygatetr>.<tbl> OWNER <new-owner>;
Example;
- current owner: 111,11
- new-owner: 222,22
- XTR installation: $V99.XYGATETR
Step 1 example;
(logon as 111,11) TACL> FUP GIVE $V99.XYGATETR.* WHERE NOT SQL AND NOT OWNER = 222,22, 222,22
Step 2 example;
(logon as 111,11) TACL> SQLCI ALTER CATALOG $V99.XYGATETR OWNER 222,22;
Step 3 example;
(logon as 111,11) TACL> FUP INFO $V99.XYGATETR.* WHERE TABLE AND NOT OWNER = 222,22
Step 4 example (all TABLEs listed in the command output in Step 3);
(logon as 111,11) TACL> SQLCI ALTER TABLE $V99.XYGATETR.PDBTBL OWNER 222,22;
Related Articles
XYGATE: How to change the audit file location for any XYGATE host product
Before changing the location of any product audit file, make sure that there is adequate disk space on the disk volume to where the audit file will be moved. To change the location of a XYGATE host product audit file, you must do the following: 1. ...
XMA How To Change Ownership On The Existing Installation
The following methods are available to change the ownership of an XMA environment. Method #1 - Re-Install XMA Procedure: Refer to Chapter 1 " Installing XMA " in the XYGATE Merged Audit (XMA), User's Guide and Reference Manual Method #2 - ...
A Reconcile Account on CyberArc should be a member of ACLGROUP $XIC_OWNER
For changing and/or reconciling PASSWORD requests from CyberArk, XTR will perform the actual password change actions in Safeguard as a privileged user account such as 255,255. So, a service account, which is a 'Reconcile Account' on CyberArk, can be ...
XTR: SSL Certificate Build Errors During Installation - XYPRO Product:XYCERT Msg#:6 Level:Fatal Msg:Return of -32 from xyImportCert
If you have encountered errors during the SSL certificate rebuild during the installation of XTR 1.60, the most probable cause is that your system(s) are using DST tables (DAYLIGHT_SAVINGS_TIME = TABLE specified in the CONFTEXT file) that does not ...
XS1: MongoDB configuration steps for XS1 installation
Summary: 1. create the user "xs1.admin" 2. create the db "XYGATE_SecurityOne" 3. create the collection "xma" 4. create the user "xs1.owner" with read/write access to the db XYGATE_SecurityOne 5. if needed, modify the mongod configuration file ...