Power BI Data Analysis Expressions or DAX Step by Step Guide by Mayank Sanghvi

Microsoft PowerPivot, Power BI Desktop, and SQL Server Analysis Services (SSAS) Tabular models have a native formula and query language named DAX or Data Analysis Expression. DAX includes a set of functions and operators to perform Dynamic aggregation with the relational data. This page helps you find the list of operators and functions with the [...]

By |2022-06-10T03:30:16+00:00June 10th, 2022|Blog|1 Comment

SQL Server MSDB database recovery pending

ALTER DATABASE msdb SET SINGLE_USER;DBCC CHECKDB (msdb,REPAIR_REBUILD) WITH NO_INFOMSGS,ALL_ERRORMSGS;ALTER DATABASE msdb SET ONLINE;ALTER DATABASE msdb SET MULTI_USER;  Working on more detailed document. Coming Soon.

By |2022-06-09T00:06:59+00:00June 9th, 2022|Blog|Comments Off on SQL Server MSDB database recovery pending
Go to Top