Which information in Qlik Replicate can be retrieved from the server logs?
Answer : D
Network and performance issues: These might be indicated by error or warning messages related to connectivity or performance bottlenecks.
Load status and performance of task: While the server logs focus on the server instance, they may contain information about the overall load status and performance, especially if there are server-level issues affecting tasks.
Specific task information: The server logs can include information about tasks, particularly if there are errors or warnings that pertain to task execution at the server level.
Qlik Replicate Server status: This includes general information about the server's health, status, and any significant events that affect the server's operation.
Using Qlik Replicate, how can the timestamp shown be converted to unlx time (unix epoch - number of seconds since January 1st 1970)?
Answer : D
The goal is to convert a timestamp to Unix time (seconds since January 1, 1970).
The strftime function is used to format date and time values.
To get the Unix epoch time, you can use the command: strftime('%s',SAR_H_COMMIT_TIMESTAMP) - strftime('%s','1970-01-01 00:00:00').
This command extracts the Unix time from the timestamp and subtracts the Unix epoch start time to get the number of seconds since January 1, 1970. This is consistent with the Qlik Replicate documentation and SQL standard functions for handling date and time conversions.
To convert a timestamp to Unix time (also known as Unix epoch time), which is the number of seconds since January 1st, 1970, you can use the strftime function with the %s format specifier in Qlik Replicate. The correct syntax for this conversion is:
strftime('%s', SAR_H_COMMIT_TIMESTAMP) - strftime('%s','1970-01-01 00:00:00')
This function will return the number of seconds between the SAR_H_COMMIT_TIMESTAMP and the Unix epoch start date. Here's a breakdown of the function:
strftime('%s', SAR_H_COMMIT_TIMESTAMP) converts the SAR_H_COMMIT_TIMESTAMP to Unix time.
strftime('%s','1970-01-01 00:00:00') gives the Unix time for the epoch start date, which is 0.
Subtracting the second part from the first part is not necessary in this case because the Unix epoch time is defined as the time since 1970-01-01 00:00:00. However, if the timestamp is in a different time zone or format, adjustments may be needed.
The other options provided do not correctly represent the conversion to Unix time:
How can the task diagnostic package be downloaded?
Answer : A
To download the task diagnostic package in Qlik Replicate, you need to follow these steps:
Open the task from the overview in the Qlik Replicate Console.
Switch to the Monitor view.
Click on the Tools toolbar button.
Navigate to Support.
Select Download Diagnostic Package1.
The other options provided do not accurately describe the process for downloading a diagnostic package in Qlik Replicate:
B is incomplete and does not provide a valid path.
C incorrectly suggests going to server settings and logging, which is not the correct procedure.
D suggests a method that is not documented in the official Qlik Replicate help resources.
When running a task in Qlik Replicate (From Oracle to MS SQL), the following error message appears: Failed adding supplemental logging for table "Table name" Which must be done to fix this error?
Answer : C
The error message 'Failed adding supplemental logging for table' indicates that supplemental logging is not enabled on the Oracle source.
Supplemental logging must be enabled to capture the necessary changes for replication.
To fix this error, you should enable supplemental logging on the Oracle database for the specific table or tables.
This can usually be done by executing the following SQL command on the Oracle source:
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS;
Verify that the logging is enabled and then retry the replication task. This solution aligns with the troubleshooting steps provided in the Qlik Replicate documentation for dealing with supplemental logging errors.
The error message ''Failed adding supplemental logging for table 'Table name''' indicates that supplemental logging has not been enabled for the table in the Oracle source database. Supplemental logging is necessary for Qlik Replicate to capture the changes in the Oracle database accurately, especially for Change Data Capture (CDC) operations.
To resolve this error, you should:
Enable supplemental logging at the database level by executing the following SQL command in the Oracle database:
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
If you need to enable supplemental logging for all columns, you can use the following SQL command:
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS;
This ensures that all necessary column data is logged for replication purposes1.
After enabling supplemental logging, verify that it is active by querying the v$database view:
SELECT supplemental_log_data_min FROM v$database;
The correct return value should be 'YES', indicating that supplemental logging is enabled1.
The other options provided are not directly related to the issue of supplemental logging:
A . Contact the Oracle DBA: While contacting the DBA might be helpful, the specific action needed is to enable supplemental logging.
B . Check the permission on the target endpoint: Permissions on the target endpoint are not related to the supplemental logging requirement on the source database.
D . Check the permission of the source endpoint: Permissions on the source endpoint are important, but the error message specifically refers to the need for supplemental logging.
A Qlik Replicate administrator needs to configure Oracle as a source endpoint before running a task in Qlik Replicate Which are three key prerequisites? (Select three.)
Answer : A, B, D
When configuring Oracle as a source endpoint for Qlik Replicate, there are several key prerequisites that need to be met:
The other options provided are not listed as key prerequisites for configuring Oracle as a source endpoint in Qlik Replicate:
C . Complete a full backup of the source: While it's a good practice to have a backup, it's not a prerequisite for configuring the source endpoint.
E . Provide Oracle read-only privileges: Read-only privileges might be necessary for certain operations, but they are not listed as a key prerequisite.
F . Configure Oracle Recovery Model: This is not mentioned as a prerequisite in the Qlik Replicate documentation.
Where are the three options in Qlik Replicate used to read the log files located? (Select three.)
Answer : B, D, E
In Qlik Replicate, the options to read the log files are located in the following places:
The other options provided do not align with the locations where log files can be read in Qlik Replicate:
A . In Windows Event log: This is not a location where Qlik Replicate log files are stored.
C . In External monitoring tool: While external monitoring tools can be used to read log files, they are not a direct feature of Qlik Replicate for reading log files.
F . In Enterprise Manager: The Enterprise Manager is a separate component that may manage and monitor multiple Qlik Replicate instances, but it is not where log files are directly read.
Which components can be controlled with Qlik Enterprise Manager?
Answer : C
Therefore, the correct answer is C. Qlik Replicate, Qlik Compose, Qlik Catalog, as these are the components that can be controlled with Qlik Enterprise Manager.