Forum Discussion
Power BI embed Azure SQL direct query error Couldn't load the schema for the database model Couldn'
mak82pk wrote:
Couldn't load the schema for the database modelCouldn't load the model schema associated with this report. Make sure you have a connection to the server, and try again.
Please try again later or contact support. If you contact support, please provide these details.
Server xxxx.database.windows.netDatabase xxxxCorrelation ID6961a444-0a98-0ead-b1b5-95952f16db63ConnectionType{FieldValue}Activity IDf13c0c9e-d4d5-410d-91f8-955658d9dfe3Request ID5b1a8a3e-c687-b3b9-0d9c-1078ac99d16eTimeWed Nov 22 2017 18:36:45 GMT+0400 (Arabian Standard Time)Version13.0.3154.166I am using azure sql server direct query with Power bi embed. I have already given privacy level "public" rights to azure db from Power BI desktop.Does direct query support report filtering ? I am using Power BI embeded javascript SDK.Imported the reported to Azure and provided correct credentials<add key="powerbi:AccessKey" value="xxxxM9xNxxxxxxxxxT5L0UuRkh6SDhH02/djcCgyaxFodkA==" />
<add key="powerbi:WorkspaceCollection" value="xxx" />
<add key="powerbi:WorkspaceId" value="bf5fxxx0c6-xxxxxx" />All other reports without direct query are working.
Per my test, DirectQuery works fine in Power BI Embedded. Did you update connection string and credential after importing the pbix file?
By the way, the legency Power BI Embedded is being deprecated and will continue working till end of June 2018, just consider migrate it to Power BI Service.
- mak82pk8 years agoHelper I
No i did not make any changes to DB after import
- Eric_Zhang8 years agoMicrosoft Employee
mak82pk wrote:
No i did not make any changes to DB after import
I don't think this snapshot from Power BI Service has anything to do with the error in your original post. You're using Power BI Embedded workspace collection, right? Have you ever tried to update connection string and credential as in my previous reply?
- mak82pk8 years agoHelper I
Yes but the code i am using does not take db connection string
public DashboardController()
{
this.workspaceCollection = ConfigurationManager.AppSettings["powerbi:WorkspaceCollection"];
this.workspaceId = ConfigurationManager.AppSettings["powerbi:WorkspaceId"];
this.accessKey = ConfigurationManager.AppSettings["powerbi:AccessKey"];
this.apiUrl = ConfigurationManager.AppSettings["powerbi:ApiUrl"];
}
public async Task<ActionResult> Report(string reportId)
{
using (var client = this.CreatePowerBIClient())
{
var reportsResponse = await client.Reports.GetReportsAsync(this.workspaceCollection, this.workspaceId);
var report = reportsResponse.Value.FirstOrDefault(r => r.Id == reportId);
var embedToken = PowerBIToken.CreateReportEmbedToken(this.workspaceCollection, this.workspaceId, report.Id);
var viewModel = new ReportViewModel
{
Report = report,
AccessToken = embedToken.Generate(this.accessKey)
};
return View(viewModel);
}
}