search directory
Search Commands
Search tools, operations, flags, and command strings. Results are capped for Worker performance.
Bq Commands
7 bq entries
Limited to 100 results
bq HTTP
Bq Command: Batch Load Data From File
bq load --location <location> --source_format <CSV|JSON|PARQUET|AVRO> <dataset>.<table> <path/to/source> bq Operations
Bq Command: Copy Table To Another
bq cp <dataset>.<OLD_TABLE> <dataset>.<new_table> bq Operations
Bq Command: Create Dataset Or Table Us Location
bq mk --location=US <dataset_name>.<table_name> bq Operations
Bq Command: Display Help
bq help bq HTTP
Bq Command: List Datasets In Project
bq ls --filter labels.<key>:<value> --max_results <integer> --format=prettyjson --project_id <project_id> bq Operations
Bq Command: Run Parameterized Query
bq query --use_legacy_sql=false --parameter='ts_value:TIMESTAMP:2016-12-07 08:00:00' 'SELECT TIMESTAMP_ADD(@ts_value, INTERVAL 1 HOUR' bq Operations
Bq Command: Run Query Estimate Bytes Read
bq query --nouse_legacy_sql 'SELECT COUNT(*) FROM <DATASET_NAME>.<TABLE_NAME>'