提问者:小点点

使用bq命令行将文件从GBQ提取到没有csv头的GCS


是否可以运行如下命令:

bq extract <source_table> <destination_uris>

并使用没有csv头的标志导出?类似于这里提到的API标志,但不使用API-只是通过bq提取…


共1个答案

匿名用户

使用:

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.