Table of Contents

Search

  1. Preface
  2. Backing Up and Restoring the Data Vault
  3. Configuring Centera as a Remote Data Vault Store
  4. Configuring Data Archive for a Legacy Source Using Legacy Adapters
  5. Data Archive Seamless Access for PeopleSoft
  6. Data Archive Transaction Restore API
  7. Dropping and Truncating Partitions in Data Archive
  8. High Availability Configuration for the Data Archive and File Archive Service Versions 6.1 to 6.3
  9. 0955-High Availability Configuration for the Data Vault Version 6.4 and Later
  10. How to Create Business Rules to Archive and Purge Transactional Data
  11. How to Uninstall Data Archive 5.1
  12. How to Uninstall Data Archive 5.3
  13. How to Use Scripts to Change Database User Passwords in the ILM Repository
  14. IBM DB2 Database Connectivity and Setup for Data Archive
  15. Installing Data Visualization
  16. Integrating Third-Party Schedulers in ILM Engine
  17. Parallel Processing in Data Archive
  18. Seamless Access Configuration for Siebel Applications
  19. Seamless Access Setup for Oracle E-Business Suite
  20. Using the Data Vault Service JDBC Driver to Connect to the Data Vault
  21. Using Multiple Engines in an ILM Environment
  22. Using PowerExchange ODBC Connections in a Data Archive Retirement Project
  23. Discovering Foreign Key Relationships in Enterprise Data Manager

Data Archive How-To Guide

Data Archive How-To Guide

Web-based URL API

Web-based URL API

QuickTxnRestore.jsp page
An alternative method for calling the API is through an http call (via a URL).
This URL is
<your base URL>/jsp/QuickTxnRestore.jsp
The following are the Query String Parameters summary:
Parameter
Required
DefinitionID
Yes
Others, List of UserDefined Parameters
Yes
Callback
No
The following table describes the parameters:
Parameter
Description
DefinitionID
The ID of the Restore Definition that contains the entity and interim table to be used to restore the transaction.
Others, List of UserDefined Parameters
As part of the API, you will supply the column name as a parameter name, and the new value that you wish to use.
The column name and value to be used by the Transaction Restore job to restore the transaction. This is the column or columns that comprise the unique key for the transaction.
Example:
http://testamhome:8080/jsp/
QuickTxnRestore.jsp?DefinitionID=10&CLAIM_ID=12345
If a composite key is being used, then you can specify all of the columns.
Example:
CLAIM_ID=12345&CLAIM_TYPE=987
Any of the Parameters used can be used as "tokens" for the Callback, for example:
$CLAIM_ID or $CLAIM_TYPE
Callback
The name of the Program Callback to be executed by the Transaction Restore API.
This can be an HTTP or a SQL call. The syntax expected of this parameter is:
sql://program_callback_name($param_name1,$param_name2,… ,$param_nameX)
or
http://web.page.to.call/index.html?$param_name1&param_name2
When using a SQL callback, the sql statement will be executed as the amhome user in the home instance.
When formatting this string, it will take any of your parameters (from the parameter string), and it will take these Informatica provided variables:
$ScheduleID or JobID
This refers to the Informatica Unique identifier of the job (as it appears in the Web User Interface).
$ReturnCode
This refers to the result of the job that was executed.
  • C = Complete
  • E = Error
$ReturnText
If the $ReturnCode = E, this will be additional error text from the job.
Using these variables, you can have the XA_TRX_RESTORE_API call any package (from the amhome schema).
For example:
Callback:
sql://call my_callback($JobID, ''$ReturnCode'', ''$ReturnText'', ''$my_id'')
Resulting Callback:
my_callback(111, 'C', '', 'abc') Resulting Callback: my_callback(111, 'C', '', 'abc')
Job ID
(returning value of function)
Output parameter with the result of the schedule.
  • -1 = error scheduling
  • Other = The Job ID of the job schedule

0 COMMENTS

We’d like to hear from you!