Online Access Free 1z1-449 Practice Test
| Exam Code: | 1z1-449 |
| Exam Name: | Oracle Big Data 2017 Implementation Essentials |
| Certification Provider: | Oracle |
| Free Question Number: | 72 |
| Posted: | May 29, 2026 |
Identify two ways to create an external table to access Hive data on the Big Data Appliance by using Big Data SQL. (Choose two.)
You are attempting to start KVLite but get an error about the "port being in use".
What is the reason for the error?
Your customer is worried that the redundancy of HDFS will not meet its needs. The customer needs to store certain files with higher levels of redundancy than other files.
Which architectural feature of HDFS should you choose?
Your customer wants to architect a system that helps to make real-time recommendations to users based on their past search history.
Which solution should the customer use?
What is the output of the following six commands when they are executed by using the
Oracle XML Extensions for Hive in the Oracle XQuery for Hadoop Connector?
1 . $ echo "xxx" > src.txt
2 . $ hive --auxpath $OXH_HOME/hive/lib -i $OXH_HOME/hive/init.sql
3 . hive> CREATE TABLE src (dummy STRING);
4 . hive> LOAD DATA LOCAL INPATH 'src.txt' OVERWRITE INTO TABLE src;
5 . hive> SELECT * FROM src;
OK
xxx
6. hive> SELECT xml_query ("x/y", "<x><y>123</y><z>456</z></x>") FROM src;