QlikView QREP Exam (page: 1)
QlikView Qlik Replicate Certification
Updated on: 25-Sep-2025

Viewing Page 1 of 13

Which is the path to add a new column to a single table in a task?

  1. Table Selection -> Schemas -> Add Column
  2. New Transformation -> Column -> Add Column
  3. Select Table -> Transform -> Add New
  4. Table Settings -> General -> Add New Column

Answer(s): D

Explanation:

To add a new column to a single table in a Qlik Replicate task, the correct path is through Table Settings. Here's the process you would typically follow:
Navigate to the Table Settings of the table you wish to modify within your task.
Go to the General section.
Use the option to Add New Column.
This process allows you to add a column directly to the table's schema as part of the task configuration. It's important to note that this action is part of the task's design phase, where you can specify the schema changes that should be applied to the data as it is replicated. The other options listed, such as New Transformation or Select Table -> Transform, are not the direct paths for adding a new column to a table's schema within a task. They are related to different aspects of task configuration and transformation.



Using Qlik Replicate, how can the timestamp shown be converted to unlx time (unix epoch - number of seconds since January 1st 1970)?

  1. SELECT datetime<1092941466, 'unixepoch*, 'localtime');
  2. SELECT datetime(482340664, 'localtime', 'unixepoch');
  3. strftime('%s*,SAR_H_COMMIT_TIMESTAMP) - <code>datetime.datetime</code>('%s','1970-01-01
    00:00:00')
  4. strftime*'%s,,SAR_H_COMMIT_TIMESTAMP) - strftime('%s','1970-01-01 00:00:00')
  5. Time.now.strftime(%s','1970-01-01 00:00:00')

Answer(s): D

Explanation:

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:
Options A and B use datetime instead of strftime, which is not the correct function for this operation.
Option C incorrectly includes <code>datetime.datetime</code>, which is not a valid function in Qlik Replicate and seems to be a mix of Python code and SQL. Option E uses Time.now.strftime, which appears to be Ruby code and is not applicable in the context of Qlik Replicate.
Therefore, the verified answer is D, as it correctly uses the strftime function to convert a timestamp to Unix time in Qlik Replicate.



Which information in Qlik Replicate can be retrieved from the server logs?

  1. Network and performance issues
  2. Load status and performance of task
  3. Specific task information
  4. Qlik Replicate Server status

Answer(s): D

Explanation:

The server logs in Qlik Replicate provide information about the Qlik Replicate Server instance, rather than individual tasks. The logs can include various levels of information, such as errors, warnings, info, trace, and verbose details. Specifically, the server logs can provide insights into:
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. Therefore, while the server logs can potentially contain a range of information, the primary purpose is to provide details on the Qlik Replicate Server status (D), including any issues that may impact the server's ability to function properly and manage tasks.



Which two components are responsible for reading data from the source endpoint and writing it to the target endpoint in Full Load replication? (Select two.)

  1. SOURCE_UNLOAD
  2. TARGET_APPLY
  3. TARGET_UNLOAD
  4. SOURCE_CAPTURE
  5. TARGET_LOAD

Answer(s): A,E

Explanation:

The SOURCE_UNLOAD component is responsible for reading data from the source endpoint. The TARGET_LOAD component is responsible for writing the data to the target endpoint. These components work in tandem during the Full Load replication process to move data from the source to the target. According to Qlik Replicate documentation, these two components are crucial in handling the extraction and loading phases of Full Load replication.

In the context of Full Load replication with Qlik Replicate, the components responsible for reading data from the source and writing it to the target are:
SOURCE_UNLOAD: This component is responsible for unloading data from the source endpoint. It extracts the data that needs to be replicated to the target system. TARGET_LOAD: This component is in charge of loading the data into the target endpoint. After the data is extracted by the SOURCE_UNLOAD, the TARGET_LOAD component ensures that the data is properly inserted into the target system.
The other options provided do not align with the Full Load replication process:
B) TARGET_APPLY and D. SOURCE_CAPTURE are typically associated with the Change Data Capture (CDC) process, not the Full Load process.
C) TARGET_UNLOAD is not a recognized component in the context of Qlik Replicate's Full Load replication.
Therefore, the correct answers are A. SOURCE_UNLOAD and E. TARGET_LOAD, as they are the components that handle the reading and writing of data during the Full Load replication process.



Where are the three options in Qlik Replicate used to read the log files located? (Select three.)

  1. In Windows Event log
  2. In Diagnostic package
  3. In External monitoring tool
  4. In Data directory of Installation
  5. In Monitor of Qlik Replicate
  6. In Enterprise Manager

Answer(s): B,D,E

Explanation:

In Qlik Replicate, the options to read the log files are located in the following places:
In Diagnostic package (B): The diagnostic package in Qlik Replicate includes various log files that can be used for troubleshooting and analysis purposes.
In Data directory of Installation (D): The log files are written to the log directory within the data directory. This is the primary location where Qlik Replicate writes its log files, and it is not possible to change this location.
In Monitor of Qlik Replicate (E): The Monitor feature of Qlik Replicate allows users to view and manage log files. Users can access the Log Viewer from the Server Logging Levels or File Transfer Service Logging Level sub-tabs.
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.

Therefore, the verified answers are B, D, and E, as they represent the locations within Qlik Replicate where log files can be accessed and read.



Viewing Page 1 of 13



Share your comments for QlikView QREP exam with other users:

Bakir 7/6/2023 7:24:00 AM

please upload it
UNITED KINGDOM


Aman 6/18/2023 1:27:00 PM

really need this dump. can you please help.
UNITED KINGDOM


Neela Para 1/8/2024 6:39:00 PM

really good and covers many areas explaining the answer.
NEW ZEALAND


Karan Patel 8/15/2023 12:51:00 AM

yes, can you please upload the exam?
UNITED STATES


NISHAD 11/7/2023 11:28:00 AM

how many questions are there in these dumps?
UNITED STATES


Pankaj 7/3/2023 3:57:00 AM

hi team, please upload this , i need it.
UNITED STATES


DN 9/4/2023 11:19:00 PM

question 14 - run terraform import: this is the recommended best practice for bringing manually created or destroyed resources under terraform management. you use terraform import to associate an existing resource with a terraform resource configuration. this ensures that terraform is aware of the resource, and you can subsequently manage it with terraform.
Anonymous


Zhiguang 8/19/2023 11:37:00 PM

please upload dump. thanks in advance.
Anonymous


deedee 12/23/2023 5:51:00 PM

great great
UNITED STATES


Asad Khan 11/1/2023 3:10:00 AM

answer 16 should be b your organizational policies require you to use virtual machines directly
Anonymous


Sale Danasabe 10/24/2023 5:21:00 PM

the question are kind of tricky of you didnt get the hnag on it.
Anonymous


Luis 11/16/2023 1:39:00 PM

can anyone tell me if this is for rhel8 or rhel9?
UNITED STATES


hik 1/19/2024 1:47:00 PM

good content
UNITED STATES


Blessious Phiri 8/15/2023 2:18:00 PM

pdb and cdb are critical to the database
Anonymous


Zuned 10/22/2023 4:39:00 AM

till 104 questions are free, lets see how it helps me in my exam today.
UNITED STATES


Muhammad Rawish Siddiqui 12/3/2023 12:11:00 PM

question # 56, answer is true not false.
SAUDI ARABIA


Amaresh Vashishtha 8/27/2023 1:33:00 AM

i would be requiring dumps to prepare for certification exam
Anonymous


Asad 9/8/2023 1:01:00 AM

very helpful
PAKISTAN


Blessious Phiri 8/13/2023 3:10:00 PM

control file is the heart of rman backup
Anonymous


Senthil 9/19/2023 5:47:00 AM

hi could you please upload the ibm c2090-543 dumps
Anonymous


Harry 6/27/2023 7:20:00 AM

appriciate if you could upload this again
AUSTRALIA


Anonymous 7/10/2023 4:10:00 AM

please upload the dump
SWEDEN


Raja 6/20/2023 5:30:00 AM

i found some questions answers mismatch with explanation answers. please properly update
UNITED STATES


Doora 11/30/2023 4:20:00 AM

nothing to mention
Anonymous


deally 1/19/2024 3:41:00 PM

knowable questions
UNITED STATES


Sonia 7/23/2023 4:03:00 PM

very helpfull
UNITED STATES


binEY 10/6/2023 5:15:00 AM

good questions
Anonymous


Neha 9/28/2023 1:58:00 PM

its helpful
Anonymous


Desmond 1/5/2023 9:11:00 PM

i just took my oracle exam and let me tell you, this exam dumps was a lifesaver! without them, iam not sure i would have passed. the questions were tricky and the answers were obscure, but the exam dumps had everything i needed. i would recommend to anyone looking to pass their oracle exams with flying colors (and a little bit of cheating) lol.
SINGAPORE


Davidson OZ 9/9/2023 6:37:00 PM

22. if you need to make sure that one computer in your hot-spot network can access the internet without hot-spot authentication, which menu allows you to do this? answer is ip binding and not wall garden. wall garden allows specified websites to be accessed with users authentication to the hotspot
Anonymous


381 9/2/2023 4:31:00 PM

is question 1 correct?
Anonymous


Laurent 10/6/2023 5:09:00 PM

good content
Anonymous


Sniper69 5/9/2022 11:04:00 PM

manged to pass the exam with this exam dumps.
UNITED STATES


Deepak 12/27/2023 2:37:00 AM

good questions
SINGAPORE