Extracting the Oracle Utilities Testing Accelerator Packages
Prepare the database for Oracle Utilities Testing Accelerator before extracting the packages. Make sure the necessary tablespaces are created.
This section includes the following:
Preparing Database for Oracle Utilities Testing Accelerator
To ensure that the necessary tablespaces are created as expected:
Note: Run the following commands using an Oracle Database client software, such as SQLPlus or SQL Developer, or similar tools using a Database Administrator account.
1. Create a tablespace for storing Oracle Utilities Testing Accelerator related data.
CREATE TABLESPACE UTA_data DATAFILE '<datafile>' SIZE 500M
AUTOEXTEND ON NEXT 200M MAXSIZE 1024M
DEFAULT STORAGE (INITIAL 10M NEXT 1M PCTINCREASE 10)
PERMANENT
ONLINE
LOGGING;
 
<datafile> is the location in Oracle database to store the Oracle Utilities Testing Accelerator related data.
2. Create the tablespace for storing Oracle Utilities Testing Accelerator related data indexes.
CREATE TABLESPACE UTA_idx DATAFILE '<indexfile>' SIZE 250M
AUTOEXTEND ON NEXT 50M MAXSIZE 512M
DEFAULT STORAGE (INITIAL 10M NEXT 1M PCTINCREASE 10)
PERMANENT
ONLINE
LOGGING;
 
<indexfile> is the location in Oracle database to store the Oracle Utilities Testing Accelerator indexes data.
3. Commit the changes.
COMMIT;
Extracting the Package
Since it is a graphical user interface installer, it is recommended to run the following steps using a graphical desktop system tool (such as VNC viewer).
To extract the package:
1. Download the Oracle Utilities Testing Accelerator V7.0.0.1.0 Multiplatform part from Oracle Software Delivery Cloud (OSDC).
2. Create the <TEMPDIR> directory.
3. Extract the zip file into the <TEMPDIR> created in step 2.
4. Unzip the UTA_Client.zip file into <TEMPDIR>/Client directory.