Valid 1z0-449 Dumps shared by ExamDiscuss.com for Helping Passing 1z0-449 Exam! ExamDiscuss.com now offer the newest 1z0-449 exam dumps, the ExamDiscuss.com 1z0-449 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1z0-449 dumps with Test Engine here:
The Hadoop NameNode is running on port #3001, the DataNode on port #4001, the KVStore agent on port #5001, and the replication node on port #6001. All the services are running on localhost. What is the valid syntax to create an external table in Hive and query data from the NoSQL Database?
Correct Answer: C
Explanation/Reference: The following is the basic syntax of a Hive CREATE TABLE statement for a Hive external table over an Oracle NoSQL table: CREATE EXTERNAL TABLE tablename colname coltype[, colname coltype,...] STORED BY 'oracle.kv.hadoop.hive.table.TableStorageHandler' TBLPROPERTIES ( " oracle.kv.kvstore" = "database", " oracle.kv.hosts" = "nosql_node1:port[, nosql_node2:port...]", " oracle.kv.hadoop.hosts" = "hadoop_node1[,hadoop_node2...]", " oracle.kv.tableName" = "table_name"); Where oracle.kv.hosts is a comma-delimited list of host names and port numbers in the Oracle NoSQL Database cluster. Each string has the format hostname:port. Enter multiple names to provide redundancy in the event that a host fails. References: https://docs.oracle.com/cd/E57371_01/doc.41/e57351/bigsql.htm#BIGUG76724