QlikView QREP Exam (page: 1)
QlikView Qlik Replicate Certification
Updated on: 07-Nov-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:

YK 12/11/2023 1:10:00 AM

good one nice
JAPAN


de 8/28/2023 2:38:00 AM

please continue
GERMANY


DMZ 6/25/2023 11:56:00 PM

this exam dumps just did the job. i donot want to ruffle your feathers but your exam dumps and mock test engine is amazing.
UNITED KINGDOM


Jose 8/30/2023 6:14:00 AM

nice questions
PORTUGAL


Tar01 7/24/2023 7:07:00 PM

the explanation are really helpful
Anonymous


DaveG 12/15/2023 4:50:00 PM

just passed my exam yesterday on my first attempt. these dumps were extremely helpful in passing first time. the questions were very, very similar to these questions!
Anonymous


A.K. 6/30/2023 6:34:00 AM

cosmos db is paas not saas
Anonymous


S Roychowdhury 6/26/2023 5:27:00 PM

what is the percentage of common questions in gcp exam compared to 197 dump questions? are they 100% matching with real gcp exam?
Anonymous


Bella 7/22/2023 2:05:00 AM

not able to see questions
Anonymous


Scott 9/8/2023 7:19:00 AM

by far one of the best sites for free questions. i have pass 2 exams with the help of this website.
CANADA


donald 8/19/2023 11:05:00 AM

excellent question bank.
Anonymous


Ashwini 8/22/2023 5:13:00 AM

it really helped
Anonymous


sk 5/13/2023 2:07:00 AM

excelent material
INDIA


Christopher 9/5/2022 10:54:00 PM

the new versoin of this exam which i downloaded has all the latest questions from the exam. i only saw 3 new questions in the exam which was not in this dump.
CANADA


Sam 9/7/2023 6:51:00 AM

question 8 - can cloudtrail be used for storing jobs? based on aws - aws cloudtrail is used for governance, compliance and investigating api usage across all of our aws accounts. every action that is taken by a user or script is an api call so this is logged to [aws] cloudtrail. something seems incorrect here.
UNITED STATES


Tanvi Rajput 8/14/2023 10:55:00 AM

question 13 tda - c01 answer : quick table calculation -> percentage of total , compute using table down
UNITED KINGDOM


PMSAGAR 9/19/2023 2:48:00 AM

pls share teh dump
UNITED STATES


zazza 6/16/2023 10:47:00 AM

question 44 answer is user risk
ITALY


Prasana 6/23/2023 1:59:00 AM

please post the questions for preparation
Anonymous


test user 9/24/2023 3:15:00 AM

thanks for the questions
AUSTRALIA


Draco 7/19/2023 5:34:00 AM

please reopen it now ..its really urgent
UNITED STATES


Megan 4/14/2023 5:08:00 PM

these practice exam questions were exactly what i needed. the variety of questions and the realistic exam-like environment they created helped me assess my strengths and weaknesses. i felt more confident and well-prepared on exam day, and i owe it to this exam dumps!
UNITED KINGDOM


abdo casa 8/9/2023 6:10:00 PM

thank u it very instructuf
Anonymous


Danny 1/15/2024 9:10:00 AM

its helpful?
INDIA


hanaa 10/3/2023 6:57:00 PM

is this dump still valid???
Anonymous


Georgio 1/19/2024 8:15:00 AM

question 205 answer is b
Anonymous


Matthew Dievendorf 5/30/2023 9:37:00 PM

question 39, should be answer b, directions stated is being sudneted from /21 to a /23. a /23 has 512 ips so 510 hosts. and can make 4 subnets out of the /21
Anonymous


Adhithya 8/11/2022 12:27:00 AM

beautiful test engine software and very helpful. questions are same as in the real exam. i passed my paper.
UNITED ARAB EMIRATES


SuckerPumch88 4/25/2022 10:24:00 AM

the questions are exactly the same in real exam. just make sure not to answer all them correct or else they suspect you are cheating.
UNITED STATES


soheib 7/24/2023 7:05:00 PM

question: 78 the right answer i think is d not a
Anonymous


srija 8/14/2023 8:53:00 AM

very helpful
EUROPEAN UNION


Thembelani 5/30/2023 2:17:00 AM

i am writing this exam tomorrow and have dumps
Anonymous


Anita 10/1/2023 4:11:00 PM

can i have the icdl excel exam
Anonymous


Ben 9/9/2023 7:35:00 AM

please upload it
Anonymous