Google Data Studio error - User Configuration Error This data source was improperly configured. Error ID: fb2ea24f - visualization

I am trying to create a few visualizations from BigQuery data on Google Data Studio.
Following are the simulation steps:
Login into the BigQuery console
After running a query on the new Bigquery console, click the option "EXPLORE IN DATA STUDIO".
Create any chart or table
Click "SAVE" on the top right corner
This will generate an error:
User Configuration Error This data source was improperly configured. Error ID: fb2ea24f
Page with default table after clicking "EXPLORE IN DATA STUDIO":
Table disappears after clicking "SAVE":
Error details shown on pop-up after clicking "See Details":

Related

Logic Apps trigger Databricks notebook

I have an issue. Is that possible for Logic Apps to trigger Databricks notebook in its pipeline?
I want to automate processing of downloaded files from Sharepoint and trigger notebook of Databricks.
Starting to build the custom logicapp connector but struggling according to this guide: https://medium.com/#poojaanilshinde/create-azure-logic-apps-custom-connector-for-azure-databricks-e51f4524ab27
Unfortunately struggling to create json Openapi file (image below)
1.Created a Databricks resource in Azure.
Created a Logic Apps Custom Connector resource with name Databricksconnector.
Once created clicked on edit option as shown below,
Followed the document https://medium.com/#poojaanilshinde/create-azure-logic-apps-custom-connector-for-azure-databricks-e51f4524ab27
by # Pooja Shinde
and performed below steps.
Connector creation I have kept all with default values in this section.
In General Information, selected scheme as Https and in host give data bricks url as https://databricksinstancename.azuredatabricks.net
In Security, selected authentication as basic as shown below,
In Definition tab, added new action by clicking on New action
In General tab, provided Summary, Description, Operation ID and Visibility selected as none.
In Request tab, Clicked on Import from sample.
I am retrieving job details by passing job_id and details are,
Request Type: Get
Url: api/2.0/jobs/get?job_id=*******
Headers: Content-Type: application/ json
12.Click on import and request will be update as below,
Next click on Update connector and connector will be saved.
Connector saved successfully as shown below,
We can view all the provided details in json format by clicking on swagger editor,
Now created a logic app with recurrence trigger.
Able to see created custom connector as shown below,
Created connection for Azure data bricks as per the document https://medium.com/#poojaanilshinde/create-azure-logic-apps-custom-connector-for-azure-databricks-e51f4524ab27
Added parameter “job_id” and given value as shown below,
20. logic app ran successfully and able to get job details,
Reference: https://learn.microsoft.com/en-us/azure/databricks/dev-tools/api/2.0/jobs?source=recommendations#--runs-list

grafana alert dashboard UID

when I'm trying to create the alert and add details I see that it has a dropdown for Dasboard UID, which I assume will render a link in the notification to open a specific dashboard, however I have no idea what to put there.
I'm getting the following error:
Failed to save rule: invalid rule specification at index [0]: both annotations __dashboardUid__ and __panelId__ must be specified
so my dashboard URL is this
https://grafana.site.com/d/VkIxY9jnz/executerequest-error-log-analyzer?orgId=1&from=now-1h&to=now&refresh=10s
So what should become the dashboard ID and why do I need the panel ID? My dashboard has 2 panels - the chart based on loki agg query and below the raw loki data.

CosmosDB - mongoDB - Table not formed on Azure Portal, but activity log is showing status success

I am new to Azure Database, I am using cosmosDB (MongoDB), I have connected to the CosmosDB, via string URL. When I am storing data through the collection it is not showing any exception on my application infact it is showing status success when I check the logs, but it is not visible on data explorer. When I am calling the complete data I am able to retrieve it also..
Only problem is that it is not visible on the mongoDb console neither it is visible on data explorer.
data explorer image
To see the data, click on the Documents node of the testTable database in the Data Explorer (records are called Documents in DocumentDB).
Here's an example:

Error when trying to load tables from desktop with dashDB

I'm trying to load a csv file into a table and receiving the following error:
The steps that I am doing are launching the dashDB instance that I have, Load, Load from Desktop, Browse for the csv... I have tried to create a new table from the csv and add to an existing table, both resulting with the error. I have also created a dummy csv with just 1 record in it and it is also failing with the same error. When creating the table from the load, the result is the table getting created with no data loaded.
The error you are getting is an already known bug of the Bluemix Dashboard integration with the dashDB one:
The team is working on this issue, but a fully working workaround is available.
In order to complete your data loading through your file you should:
access your application section on the Bluemix dashboard
click on the 'Environment variables' section and select the 'VCAP_SERVICE' button
retrieve the 'https_url' of the dashDB service and save also the related username and password values
paste on your browser url the https_url value, it will open directly the dashDB dashboard, you can now login using the username and password found in VCAP_SERVICE section
click on 'Load' section in the left menu of the dashDB dashboard
in this section you could upload your file without any problem.

Crystal Report "Logon failed..." Error when trying to navigation to next page

I have a web-based Crystal Report that loads successfully, but when i try to navigate to the next page using the toolbar at the top of my CrystalReportViewer then i get the following error:
"Logon failed. Details: ADO Error Code: 0x Source: Microsoft SQL Native Client Description: Login failed for user 'sa'. SQL State: 28000 Native Error: Error in File C:\DOCUME~1\SOFTLITE\ASPNET\LOCALS~1\Temp\ClientReport {02A69EDD-9B03-4490-B3A2-5E5E5F5592D9}.rpt: Unable to connect: incorrect log on parameters."
Any ideas on how to overcome this problem are most welome.
Thanks IA
I think i have resolved this issue (in my scenario at least).
Originally my code looked like:
if (!Page.IsPostBack)
{
LoadReport();
}
so i dropped the "if (!Page.IsPostBack)" part meaning that it loads the report data on every postback (i.e. click on the CrystalReportViewer toolbar) an it's working.