是否可以使用 BigQuery 将 table 数据导出到 XLS 文件?
Is that posible using BigQuery export a table data to a XLS file?
BigQuery 支持将 table 数据导出到 CSV
。但是,我想将结果导出到 xls
。有没有办法导出XLS
格式?
// Import the Google Cloud client libraries
const {BigQuery} = require('@google-cloud/bigquery');
const {Storage} = require('@google-cloud/storage');
const bigquery = new BigQuery();
const storage = new Storage();
async function extractTableToGCS() {
// Exports my_dataset:my_table to gcs://my-bucket/my-file as raw CSV.
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// const datasetId = "my_dataset";
// const tableId = "my_table";
// const bucketName = "my-bucket";
// const filename = "file.csv";
// Location must match that of the source table.
const options = {
location: 'US',
};
// Export data from the table into a Google Cloud Storage file
const [job] = await bigquery
.dataset(datasetId)
.table(tableId)
.extract(storage.bucket(bucketName).file(filename), options);
console.log(`Job ${job.id} created.`);
// Check the job's status for errors
const errors = job.status.errors;
if (errors && errors.length > 0) {
throw errors;
}
}
BigQuery 存储您的数据。当您导出它们时,数据将以 CSV、JSON 或其他格式导出。这是原始数据。
什么是 excel 格式?它是带有附加元数据信息的原始数据,用于格式化单元格,具有不同的 sheet,...
BigQuery 只知道数据,不知道您要添加的元数据。因此,BigQuery 中没有导出到 Excel 的内置功能(导出到 Google sheet 只是到 export-to-CSV-then-import-data-from-CSV-in-Google-Sheet 的快捷方式)。您需要格式化自己的文件,然后对其进行编码。 (如果你想创建一个 PDF 也是一样)
BigQuery 支持将 table 数据导出到 CSV
。但是,我想将结果导出到 xls
。有没有办法导出XLS
格式?
// Import the Google Cloud client libraries
const {BigQuery} = require('@google-cloud/bigquery');
const {Storage} = require('@google-cloud/storage');
const bigquery = new BigQuery();
const storage = new Storage();
async function extractTableToGCS() {
// Exports my_dataset:my_table to gcs://my-bucket/my-file as raw CSV.
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// const datasetId = "my_dataset";
// const tableId = "my_table";
// const bucketName = "my-bucket";
// const filename = "file.csv";
// Location must match that of the source table.
const options = {
location: 'US',
};
// Export data from the table into a Google Cloud Storage file
const [job] = await bigquery
.dataset(datasetId)
.table(tableId)
.extract(storage.bucket(bucketName).file(filename), options);
console.log(`Job ${job.id} created.`);
// Check the job's status for errors
const errors = job.status.errors;
if (errors && errors.length > 0) {
throw errors;
}
}
BigQuery 存储您的数据。当您导出它们时,数据将以 CSV、JSON 或其他格式导出。这是原始数据。
什么是 excel 格式?它是带有附加元数据信息的原始数据,用于格式化单元格,具有不同的 sheet,...
BigQuery 只知道数据,不知道您要添加的元数据。因此,BigQuery 中没有导出到 Excel 的内置功能(导出到 Google sheet 只是到 export-to-CSV-then-import-data-from-CSV-in-Google-Sheet 的快捷方式)。您需要格式化自己的文件,然后对其进行编码。 (如果你想创建一个 PDF 也是一样)