Source: library/wordpress – Docker Hub
Category: Information Technology
Various IT related article
Cannot boot Windows guest in VirtualBox without kernel module error
I’m running Vagrant (1.8.1) + VirtualBox (5.0.12) on Windows 7 and trying to boot up a Windows 7 image (modernIE/w7-ie8). However, I get this error: ————————— VirtualBox – Error In
Source: Cannot boot Windows guest in VirtualBox without kernel module error
ssas – “Duplicate attribute key” error when attribute is not a key – Stack Overflow
I am getting the following error when processing a Dimension: Errors in the OLAP storage engine: A duplicate attribute key has been found when processing: Table: ‘dbo_Orders’, Column: ‘Project’,
Source: ssas – “Duplicate attribute key” error when attribute is not a key – Stack Overflow
MVC Pivot Grid, powered by HTML5 and jQuery | UI for ASP.NET MVC
The ASP.NET MVC PivotGrid is a powerful data visualization component allowing developers to perform operations over multi-dimensional/ pivot data.
Source: MVC Pivot Grid, powered by HTML5 and jQuery | UI for ASP.NET MVC
Formatting Axis Labels on a Chart (Report Builder and SSRS)
https://msdn.microsoft.com/en-us/library/dd239363.aspx
Creating Custom Chart in SSRS
SSRS and Microsoft Chart Control How To: Change the Width of Bars and Columns – Boon Blog
Very interesting topic to make your chart like profesional looking no border, chart with same size as graph area
Source: SSRS and Microsoft Chart Control How To: Change the Width of Bars and Columns – Boon Blog
Rethinking Analysis Services – SQLServerCentral
Custom SQL Data Survery Analytics
Creating SSRS reports with MDX quieres – YouTube
This is to create SSR based on MDX query
JasonP Implementaion on MVC Controller
public ActionResult UsageJasonP()
{
db.Configuration.LazyLoadingEnabled = false;
db.Configuration.ProxyCreationEnabled = false;
var waterusages = db.WaterUsages;
//return Json(waterusages, JsonRequestBehavior.AllowGet);
return new JsonpResult(waterusages,”receive”);
}
var url = “http://localhost:15214/water/UsageJasonP?callback=?”;
$.ajax({
url: url, dataType: “jsonp”, jsonpCallback: “receive”, callback: “receive”,
success: function (data, status) {
//mySurvey.closePopup();
alert(“Success”);
console.log(data);
},
error: function (xOptions, textStatus) {
alert(“fails”);
}
});