1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/odps.md
코드싸이 650fabfc22
common/o*: add Korean translation (#14642)
* common/o*: add Korean translation

* odps-resource: update Korean translation (fix typo)
2024-11-05 23:54:36 +09:00

662 B

odps

Aliyun ODPS (Open Data Processing Service) 명령줄 도구. inst와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다. 더 많은 정보: https://www.alibabacloud.com/help/doc-detail/27971.htm.

  • 사용자 지정 구성 파일로 명령줄 시작:

odpscmd --config={{odps_config.ini}}

  • 현재 프로젝트 변경:

use {{프로젝트_이름}};

  • 현재 프로젝트의 테이블 표시:

show tables;

  • 테이블 설명:

desc {{테이블_이름}};

  • 테이블 파티션 표시:

show partitions {{테이블_이름}};

  • 파티션 설명:

desc {{테이블_이름}} partition ({{파티션_명세}});