Reference Table in Another Project
See original GitHub issueI would like to stream inserts to a table that is a separate project than my application code. My application project has IAM access to the tables in the project where I would like to do the inserts.
Unfortunately, it does not appear there is anyway to specify a table in a different project.
The syntax to stream inserts to a table in your current project is:
bigquery.dataset('warehouse').table('events').insert(insertedRows)
Would it be possible to add syntax like the following:
bigquery.project('other-project').dataset('warehouse').table('events').insert(insertedRows)
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Referencing System Tables/View in Other Databases - MSDN
I'm using Visual Studio 2010/SSDT. I have a view in my database that uses the following SQL to reference system views in another...
Read more >SQL Server Project View references tables from different ...
I have been trying to figure out a way to make it work without having to have a second project that has the...
Read more >Solved: Two Reference tables are part of each other
Solved: Hi Appsheet community, Here goes,… I have a table called: Projects, and another table called Assets. In the table Projects i can...
Read more >Create and use tables | BigQuery - Google Cloud
This document describes how to create and use standard (built-in) tables in BigQuery. For information about creating other table types, see:.
Read more >Project references - Palantir
Project references provide a mechanism for... ... typically the owners of a dataset or pipeline - to allow the discovery and use of...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Definitely some utility in having it at
dataset()
level. For example, if you want to list all the tables in one of our public datasets.@tswast @stephenplusplus have we decided how to approach this?