Error when creating table in BigQuery Google cloud console - google-cloud-firestore

I followed this tutorial to export my firestore collections to excel
https://www.youtube.com/watch?v=3J1M1bSwgV8
Ive followed it before and it worked
Now, Iam not being able to make it work. I followed all the steps, but in the end, when I need to create the table, im getting the erro
Failed to create table: Entity "ycCJePRLCrkHXkQyJ9nn" was of unexpected kind "patients".
What I've been successful to do:
– create bucket and export collection in https://console.cloud.google.com/firestore/import-export
– create dataset in https://console.cloud.google.com/bigquery?project=root-catfish-299022
The next step would be to create the table, in which im getting the error

Related

Can't find data record in database table course_categories in moodle

[I'm getting this error in my moodle][1]
And I can't go in any activity like security and any other activity so I can solve
[1]: https://i.stack.imgur.com/83ofA.png

Heroku-Connect with Postgres and Salesforce : The new rows are not synchronized

I'm trying to use Heroku Connect to integrate a Postgres database with Salesforce.
The goal is to add more data from DB to Salesforce.
After connecting I can see updates from Salesforce in Postgres.
I can update existing posts in Postgres and see them in Salesforce.
I can create new records in tables like Leeds, Accounts and Contacts and see all the updates in Salesforce.
The problem with the Opportunity table I manage to update existing records from Postgres, but can not create new records to synchronize with Salesforce.
I.e. produces but updates does not go to Salesforce.
The error obtained is:
{"op": "INSERT", "src": "SFDC", "msg": "We can't save this record because the \u201cOpportunity - Owner Assignment\u201d process failed. Give your Salesforce admin these details. This error occurred when the flow tried to update records: INVALID_CROSS_REFERENCE_KEY: Owner ID: owner cannot be blank. You can look up ExceptionCode values in the SOAP API Developer Guide. Error ID: 1878853328-1317082 (142283924)k up ExceptionCode values in the SOAP API Developer Guide. Error ID: 1878853328-1317082 (142283924)"}
I.e. error tells me that ownerid is blank. But this field is not empty because I give the correct values of ownerid.
INSERT INTO salesforce.opportunity ( name , closedate, stagename, createdbyid, ownerid )
Values('zzzz' ,'2021-12-31','New', '0051t000002VZvKAAW','0051t000002VZvKAAW' )
In Heroku connect this like that:
What could be a problem ??
From the error reported it appears you have a flow configured on the opportunity object. Check the flow logic to see what downstream updates are occurring that could produce this error, or disable the flow temporarily to verify your insert works as expected.

Postgis + Qgis - filtered row access - problem on insert and update new points

I have this problem:
PostGis Server with a table: Table_Points_of_all_works
table has a field "ID_WORK" so I can filter points for only one work.
with different groups (a group for each work).
Each group can access to the only work related, and view, insert, delete rows (related to their only ID_Work)
To do this I created groups and policies:
CREATE POLICY policy_for_this_groupofWork
ON public."Table_Points_of_all_works"
AS PERMISSIVE
FOR ALL
TO "GroupWork12"
USING ("ID_WORK"=12)
WITH CHECK ("ID_WORK"=12);
Viewing the table of points in QGIS works: only points of related work are seen.
But when I insert new points and giving in the field ID_WORK correct work (12 in this case), I receive an error while updating SQL:
"Could not commit changes to layer Table_Points_of_all_works
Errors: ERROR: 1 feature(s) not added - provider doesn't support adding features."
If I do the same thing with admin users (postgres) all works fine.
Anyone can help me?
thanks in advance,
Filippo

How to I upload table to Apache Superset?

I'm trying to upload a dataset to be viewed in Superset.
I created a postgres databased and able to connect via the URI: postgresql://user:password#localhost:port
I created a table called NYC Taxi with a table called nyctaxi.
However, when I tried to add the table to superset, I get the following error:
Table [nyctaxi] could not be found, please double check your database connection, schema, and table name, error: nyctaxi
if you have the data in CSV you can load it using the UPLOAD CSV from the source menu.
I have an small demo here

SharePoint 2013 Designer workflow Rest API: update items in multi valued lookup column

I am trying to update the SharePoint online list items using Rest API in SharePoint Workflow 2013.I am able to update all the columns except Multi valued lookup column.
I am getting the below error :
An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.
I have tried the below code :
Passing ID & Value
1;#abc;#2;#xyz
& i have tried passing dictionary also but no luck every time getting some or the other error.
Please let me know how to achieve this.