前提・実現したいこと
bigQueryのWebUIを用いて、SELECT文を実行したい
発生している問題・エラーメッセージ
Not found: Table テーブル名. Please verify that the table exists and the correct location was used for the job.
該当のソースコード
SQL
1SELECT 2 row1_text as text 3FROM 4 `sportsagent.newsrecord` 5WHERE 6 title like "%A%" and _PARTITIONTIME = "2018-04-15"
試したこと
GoogleConsoleにて以下のコマンドをおこなって、newsrecordのテーブルに50レコード入っていることなどPythonでの接続ができることや実際にbigqueryに存在していることを確認しています。
Python
1>>> bigquery_client = bigquery.Client.from_service_account_json(json_key, project='sports-agent-199307') 2>>> dataset_ref = bigquery_client.dataset("sportsagent") 3>>> table_ref = dataset_ref.table("newsrecord") 4>>> table = bigquery_client.get_table(table_ref) 5>>> table.num_rows 650
解決方法が見つからなくて困っています。どうかお助けいただきたくよろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/05/07 00:32
2018/05/07 12:56
2018/05/09 07:05
2018/05/09 12:47
2018/05/10 05:11