Cant open data set from any public datasets in BigQuery - google-bigquery

cant open data set in BigQuery
Hello,
I am currently enrolled in the Google Data Analytics course, and I'm supposed to open a public dataset in BigQuery, but I can't find anywhere to select the broaden search for the database on the left side, please help )
Thank you!

Related

SA360 Conversion table not imported into Google BigQuery?

I have set up a data transfer between SA360 (Search Ads 360) and BigQuery. The data for all table is importing correctly, apart from the "Conversion" table, which has "no data to display".
I have checked the transfer runs and can see that this table was imported successfully (although it does not specifcy anything else).
Would this be a query for SA360 supoprt, or should I be looking within BigQuery to resolve the issue?
Thanks in advance
Checked the transfer runs and can see that this table was imported successfully

Tableau public vizualization data source from dashboard

https://public.tableau.com/profile/jamesbond#!/vizhome/NiftyPERatio_16005774872610/NiftyPERatioHeatMap
How do I figure out the data source of this viz? I am trying to create my own similar visualisations, hence investigating what they are getting data.
Actually you can't for thiz viz.
The author doesn't allow download for workbook and data.

How to get REST API information into my Google BigQuery SQL Table?

What I am trying to achieve is this:
1. Access a REST API to download hotel reservation data - the data output format is in JSON
2. Convert JSON data into the correct format to be uploaded into SQL table
3. Upload this table of data onto Google BigQuery existing table as additional rows
Do let me know if any further information is required and if I have been clear enough
Thanks in advance
1) pretty good REST API tutorial
2) You can use a local SQL DB or use Cloud SQL. The process would be the same (Parse JSON and insert to DB)
If you decide to use Cloud SQL, you can parse the JSON and save it as a CSV then follow this tutorial
or
simply parse the JSON and insert using one of the following API's
3) Use can easily load data into any BigQuery table by using BigQuery API. You can also directly insert the JSON data into BigQuery
But as Tamir had mentioned, it would be best to ask questions if you encounter errors/issues. Since there are multiple ways to perform this type of scenario, we cannot provide an exact solution for you.

Imported data into Big Query but can only access the 'table' via job history and can't see it in datasets

I've imported some data into Big Query, however I can only query the table from Job History but can't seem to add it as a dataset.
What do I need to do in order to convert this as a dataset?
How I imported the data: It was done via a third party app in which had access to my Google Analytics (StitchData).
Here are some more additional import details.
From your screenshot, "Destination table" should be in format: [DATASET].[TABLE].
Also "Table Info"."Table ID" should have same info.
Guess you already have a dataset, just need a way to see it.
If so, this video may help you to locate "dataset" in BigQuery Classic UI.

IBM Datastudio how to export/unload and import/load multiple tables with SQL?

I'm having issues using the normal sysproc.admin_cmd I thought we should use, as I get error SQL3001. It says I should put the file location of the export to bcufenc folder, but I can't find it, maybe because it is data studio client on my machine.
I was hoping to get pointed in the right direction on this, or another way to export/unload and import/load
I just want to transfer data from one table to a table with the same structure in another state or scheme, as in the columns are the same, I just need to transfer the data.
Thank you in advance!
If source and target tables are in the same Db2 database, consider using the LOAD FROM (<query>) variant of ADMIN_CMD
CALL SYSPROC.ADMIN_CMD('LOAD FROM (SELECT * FROM T1) OF CURSOR INSERT INTO T2')