Find a table to merge with - google-fusion-tables

In the web application of google fusion tables there is an option "find a table to merge with" which searches for the most similar tables for the specific table.
Is there an option to do it with the api as well?

No, unfortunately the service this feature uses is only accessible from the Fusion Tables app.

Related

How to create external table using dbt from Google Sheet to BigQuery?

I want to create external table in BigQuery and the data source is from Google Sheet. Is it possible to do it using dbt? In the yml file, where should I put the URI?
The main problem is, I don’t have the access to create it directly in BigQuery.
One way to handle a Google Sheet as a source is by creating a new table out of it in BigQuery via Connected Sheets.
Then, you create a new source in dbt that relies on that table, and start building your downstream models from there.
As far as I know, you cannot create a source directly from dbt, unless it is a seed file, which I woul not recommend unless it is a rather static file (e.g. country names and ISO codes, which is not prone to change over time).
We have a similar situation where the data source is from Google Sheet.
The end user updates the Google sheet on a periodical basic and we replicate it using Fivetran to our Snowflake datastore.
DBT can then pick up the data seamlessly.

How do I share Neo4j graphs with Non-technical users?

Neo4j visualizations are fantastic but when I share it with non technical users they get confused. Is there any way to have a version of the portal with just the nodes view, along with some prebuild cypher queries they can click, or maybe even parameterized queries where they don't see the cypher.
I feel like Neo4j has a very powerful user interface but it's only accessible to developers. I'm sure they can click the cypher queries in the star'ed queries section but I'd like to hide them from any code as it may confuse them.
Create a new user with only the READ privilege
Then, set up custom "cards" available via a :play http://yourdomain/yourcards.html with the content and queries you'll write for your users
For custom browser guides please have a look at the developer page, this should help you create slides for you users that guide them through your data.
http://localhost:8000/developer/resources/guide-create-neo4j-browser-guide/

accessing crm changes via odata

I am using odata to query Dynamics CRM Online 2013. I am trying to track changes against particular entities. For example, I want to be able to see Old Values and New Values for Opportunities, as you would see in the Summary View. Auditing is enabled for the entities but the most I can see via odata is whether a field of an entity was changed or not, and when it was changed.
Q. If "Change Tracking" is enabled will that expose another odata entity that will give me those changed values?
I am pretty sure Audit entity data is not exposed via OData.
Please find the url for the actual usage of Change Tracking feature.
http://www.powerobjects.com/2015/10/26/change-tracking-in-dynamics-crm-2015/
Audit table is not consumable through Sdk calls.. neither odata nor soap.
On premise will allow to query using sql queries but still data is "," "~" separated.
On the other hand Change tracking is accessible through sdk call using RetrieveEntityChangesRequest message. Pls refer the link below.
But this is for primary usage of integration services to identify the modified records for upstream/downstream systems from last cycle.
https://msdn.microsoft.com/en-us/library/dn932130.aspx
Update: Reg Audit, we have some limited options though - https://yanivrdt.wordpress.com/2016/01/08/retrieving-audit-history-records-via-api/

how to insert data in to google fusion table form iphone app

I want to insert data from my iPhone app to fusion table my fusion table is private, my select query in working properly if i insert data manually in to fusion but i don't want to insert data manually in want when my app get value that vale has to insert in to fusion table, i referred google API Documentation, i read this also Insertion into google fusion table but still i m not understanding how to implement this can please any one guide me for this.
Thanks in advance!!!
You should consider to use a so called Service Account. You can create such accounts in the Google API console. A Service Account acts as a deputy of the user. You can make calls to the API, change data etc. Just make sure that the Service Account has correct permission on the table you want to edit.

Missing SharePoint Server Publishing Infrastructure feature in SharePoint 2007

I am trying to display a sql query result on a page in my Sharepoint site. After looking around I found instructions on how to do that using the Content Query Web part. The instructions to enable that feature instructions here include activating the SharePoint Server Publishing Infrastructure. I currently don't have that option. Is there something I can install to my sharepoint site to get that option? Is there a better/easier way to display the results of a sql query in sharepoint?
Make sure to look in your "site collection features" instead of your site feature. This feature needs to be activated at the root level of the site collection.
FYI the Content Query WebPart only retrieve content from your site collection (by crafting a relevant CAML query, which is finally transformed to SQL query). You don't have the possibility to create a direct sql query and receive the result.
If you need to query another database than the one SharePoint is using (avoid accessing it from SQL at all cost !), you'll need to rely on the Business Connectivity Service, a data view webpart (using SharePoint designer), or create a simple webpart that will be responsible for everything (connecting to the db, doing the query and rendering the result in any way).
Hope it helped.

Resources