Hive를 시작하고 데이터베이스 및 테이블을 만들려면 SSH 세션에서 다음 명령어를 실행합니다.
Hive를 시작합니다.
hive
myDatabase라는 데이터베이스를 만듭니다.
create database myDatabase;
생성한 데이터베이스를 표시합니다.
show databases;
만든 데이터베이스를 사용합니다.
use myDatabase;
이름이 myTable인 테이블을 만듭니다.
create table myTable(id int,name string);
myDatabase 아래의 테이블을 나열합니다.
show tables;
만든 테이블에 테이블 행을 표시합니다.
desc MyTable;
다음 명령어를 실행하면 다음과 비슷한 출력이 생성됩니다.
$hive
hive> show databases;
OK
default
hive> create database myDatabase;
OK
hive> use myDatabase;
OK
hive> create table myTable(id int,name string);
OK
hive> show tables;
OK
myTable
hive> desc myTable;
OK
id int
name string
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-02-11(UTC)"],[[["This guide demonstrates how to use Apache Hive with a Dataproc Metastore service by launching a Hive session on a Dataproc cluster."],["You must first create a Dataproc Metastore service and attach it to a Dataproc cluster, including setting the Hive metastore password."],["Connect to Hive through an SSH connection to the associated Dataproc cluster VM instance."],["Once connected, you can run Hive commands to create and manage databases and tables, as demonstrated with the `myDatabase` and `myTable` examples."],["The guide also presents examples of how to perform commands such as showing databases and tables, creating databases and tables, and showing descriptions of the tables."]]],[]]