使用bq命令行将文件从GBQ提取到GCS而不使用csv头

时间:2016-04-25 10:09:24

标签: google-bigquery

是否可以运行如下命令:

bq extract <source_table> <destination_uris>

并使用标志导出而不使用csv标头?与提到的here API标志类似,但不使用API​​ - 仅通过bq extract...

1 个答案:

答案 0 :(得分:2)

使用:

bq extract --noprint_header <source_table> <destination_uris> 

您可以从以下输出中找到此选项:

bq help extract

[...]
--[no]print_header: Whether to print header rows for formats that have headers.
Prints headers by default.