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

Annie 6/7/2023 3:46:00 AM

i need this exam.. please upload these are really helpful
PAKISTAN


Shubhra Rathi 8/26/2023 1:08:00 PM

please upload the oracle 1z0-1059-22 dumps
Anonymous


Shiji 10/15/2023 1:34:00 PM

very good questions
INDIA


Rita Rony 11/27/2023 1:36:00 PM

nice, first step to exams
Anonymous


Aloke Paul 9/11/2023 6:53:00 AM

is this valid for chfiv9 as well... as i am reker 3rd time...
CHINA


Calbert Francis 1/15/2024 8:19:00 PM

great exam for people taking 220-1101
UNITED STATES


Ayushi Baria 11/7/2023 7:44:00 AM

this is very helpfull for me
Anonymous


alma 8/25/2023 1:20:00 PM

just started preparing for the exam
UNITED KINGDOM


CW 7/10/2023 6:46:00 PM

these are the type of questions i need.
UNITED STATES


Nobody 8/30/2023 9:54:00 PM

does this actually work? are they the exam questions and answers word for word?
Anonymous


Salah 7/23/2023 9:46:00 AM

thanks for providing these questions
Anonymous


Ritu 9/15/2023 5:55:00 AM

interesting
CANADA


Ron 5/30/2023 8:33:00 AM

these dumps are pretty good.
Anonymous


Sowl 8/10/2023 6:22:00 PM

good questions
UNITED STATES


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

dbua is used for upgrading oracle database
Anonymous


Richard 10/24/2023 6:12:00 AM

i am thrilled to say that i passed my amazon web services mls-c01 exam, thanks to study materials. they were comprehensive and well-structured, making my preparation efficient.
Anonymous


Janjua 5/22/2023 3:31:00 PM

please upload latest ibm ace c1000-056 dumps
GERMANY


Matt 12/30/2023 11:18:00 AM

if only explanations were provided...
FRANCE


Rasha 6/29/2023 8:23:00 PM

yes .. i need the dump if you can help me
Anonymous


Anonymous 7/25/2023 8:05:00 AM

good morning, could you please upload this exam again?
SPAIN


AJ 9/24/2023 9:32:00 AM

hi please upload sre foundation and practitioner exam questions
Anonymous


peter parker 8/10/2023 10:59:00 AM

the exam is listed as 80 questions with a pass mark of 70%, how is your 50 questions related?
Anonymous


Berihun 7/13/2023 7:29:00 AM

all questions are so important and covers all ccna modules
Anonymous


nspk 1/19/2024 12:53:00 AM

q 44. ans:- b (goto setup > order settings > select enable optional price books for orders) reference link --> https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/sfom_impl_b2b_b2b2c.pdf(decide whether you want to enable the optional price books feature. if so, select enable optional price books for orders. you can use orders in salesforce while managing price books in an external platform. if you’re using d2c commerce, you must select enable optional price books for orders.)
Anonymous


Muhammad Rawish Siddiqui 12/2/2023 5:28:00 AM

"cost of replacing data if it were lost" is also correct.
SAUDI ARABIA


Anonymous 7/14/2023 3:17:00 AM

pls upload the questions
UNITED STATES


Mukesh 7/10/2023 4:14:00 PM

good questions
UNITED KINGDOM


Elie Abou Chrouch 12/11/2023 3:38:00 AM

question 182 - correct answer is d. ethernet frame length is 64 - 1518b. length of user data containing is that frame: 46 - 1500b.
Anonymous


Damien 9/23/2023 8:37:00 AM

i need this exam pls
Anonymous


Nani 9/10/2023 12:02:00 PM

its required for me, please make it enable to access. thanks
UNITED STATES


ethiopia 8/2/2023 2:18:00 AM

seems good..
ETHIOPIA


whoAreWeReally 12/19/2023 8:29:00 PM

took the test last week, i did have about 15 - 20 word for word from this site on the test. (only was able to cram 600 of the questions from this site so maybe more were there i didnt review) had 4 labs, bgp, lacp, vrf with tunnels and actually had to skip a lab due to time. lots of automation syntax questions.
EUROPEAN UNION


vs 9/2/2023 12:19:00 PM

no comments
Anonymous


john adenu 11/14/2023 11:02:00 AM

nice questions bring out the best in you.
Anonymous