You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apologies if this is the wrong place for this. I'm working on a bigquery db (The all of us research program). I can create a temp table if I send raw SQL to the db but not with dplyr::compute(). Is there a way to make compute() work similar to the SQL chunk below that is creating a temporary table from a query? Thanks
con <- DBI::dbConnect(bigrquery::bigquery(), ...)
tbl(con, "concept") %>%
select(concept_id)
head(10) %>%
compute(temporary = TRUE)
Error in `bq_post()`:
! Access Denied: Project fc-aou-cdr-prod-ct: User does not have bigquery.jobs.create permission in project
Part of #557 — unfortunately enabling temporary table creation via SQL requires a bunch of other work. And while that work is ultimately worthwhile, I'm probably not going to have the time to do it for a while.
Apologies if this is the wrong place for this. I'm working on a bigquery db (The all of us research program). I can create a temp table if I send raw SQL to the db but not with
dplyr::compute()
. Is there a way to makecompute()
work similar to the SQL chunk below that is creating a temporary table from a query? ThanksBrief description of the problem
This works
Doesn't work
The text was updated successfully, but these errors were encountered: