Files
tldr/pages.zh/common/odps.md

29 lines
583 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ODPS
> 阿里云 ODPS开放数据处理服务命令行工具。
> 一些子命令如 `inst` 具有自己的使用文档。
> 更多信息:<https://www.alibabacloud.com/help/doc-detail/27971.htm>。
- 使用自定义配置文件启动命令行:
`odpscmd --config={{odps_config.ini}}`
- 切换当前项目:
`use {{project_name}};`
- 显示当前项目中的表:
`show tables;`
- 描述一个表:
`desc {{table_name}};`
- 显示表的分区:
`show partitions {{table_name}};`
- 描述一个分区:
`desc {{table_name}} partition ({{partition_spec}});`