Este equipo de redactores ha estado largas horas buscando para darle respuesta a tus búsquedas, te regalamos la solución de modo que deseamos serte de gran apoyo.
Ejemplo: string hasta la fecha en BQ
defsave_to_bq_table():<br />bq_client = bigquery.Client()<br /># Saving data to a intermediate table then export it to GCS
query = "##Query with millions of records results##"
job_config = bigquery.QueryJobConfig()
# Set the destination table
table_ref = bq_client.dataset(dataset_id).table('TableID')
job_config.destination = table_ref
job_config.allow_large_results = True
# Start the query, passing in the extra configuration.
query_job = bq_client.query(
query,
location='US', # Location must match that of the source table
job_config=job_config) # API request - starts the query
query_job.result() # Waits for the query to finish
Reseñas y calificaciones de la guía
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)