3 questions
0
votes
0
answers
57
views
google bigquery row insert error with nodejs sdk
I'm trying to store some data in the google bigquey using nestjs application. I was able to insert few records successfully and after that I changed a schema column. Now I can not insert any records ...
0
votes
1
answer
96
views
Run query efficiently with a long list for IN operator with WHERE clause in Big Query
I have a situation where I need to move some data from one table to another in bigquery with some processing in middle. I have created a pipeline with Node.js client library which runs query for each ...
0
votes
1
answer
916
views
Named parameter type for Array of Struct in biqquery
I had a code like below
const changes = dto.data.map(d => `('${d.findingId}', '${d.status}', ${d.comment ? `'${d.comment}'` : null})`).join(',')
const query = `
MERGE \`...