How to resolve connection errors when loading data in SSAS Tabular project
This post actually applies to both multidimensional (cube) projects and Tabular projects which manage data source connectivity in a similar...
2015-01-09
592 reads
This post actually applies to both multidimensional (cube) projects and Tabular projects which manage data source connectivity in a similar...
2015-01-09
592 reads
Is is possible to duplicate the same many-to-many relationship behavior in VertiPaq that we have in SSAS multidimensional? Since Tabular...
2015-01-05
429 reads
Is is possible to duplicate the same many-to-many relationship behavior in VertiPaq that we have in SSAS multidimensional? Since Tabular...
2015-01-05
481 reads
This week Microsoft announced the availability of Power BI Dashboards and the browser-based dashboard designer. What is it and why...
2014-12-20
689 reads
Can an SSRS report be designed to drill-through to an Excel workbook in-context (showing only the same filtered detail data)?...
2014-12-01
1,618 reads
Please join my associates and I for an all-day SQL Server Upgrade workshop on November 3rd
If you are planning an...
2014-10-21
752 reads
Requirement: Allow users to enter comments after they review results from a Power Pivot model and then show the comment...
2014-10-06
953 reads
Thank you to the Microsoft MVP Program for awarding me MVP for six years running! I love this program and...
2014-10-05
431 reads
The other day a secondary family member said “we’re still on Microsoft 2010”. Another said “My friend is using Windows...
2014-08-06
549 reads
I just received some bad news and found out that a friend passed away today. Reed Jacobson was one of...
2014-07-16
508 reads
A RAG pipeline that answers questions in the demo is not the same thing...
By Steve Jones
“A multitude of bad ideas is necessary for one good idea” – from Excellent...
Yesterday I gave a talk for MSSQLTips called “Building a DBA Agent for Your...
Telp/Wa 62 821-8200-233 Jl. Raya Cilandak KKO No.9, RT.1/RW.5, Ragunan, Ps. Minggu, Kota Jakarta...
Telp/Wa 62 821-8200-203 Gedung Perkantoran Hijau Arkadia, Tower C - Ground Floor, unit C103,...
Telp/Wa 62 821-8200-174 Menara Karya, Jl. H. R. Rasuna Said Ground floor, RT.1/RW.2, Kuningan,...
Which number will the COUNT() return after executing the following statements:
DROP TABLE IF EXISTS #test; CREATE TABLE #test (id INT) INSERT INTO #test (id) SELECT * FROM GENERATE_SERIES(1, 3) AS gs ; ALTER TABLE #test ADD flag BIT CONSTRAINT DF_#test_flag DEFAULT 0; go UPDATE #test SET flag = 0 WHERE id = 1 UPDATE #test SET flag = 1 WHERE id = 2 INSERT INTO #test (id) VALUES (4) SELECT COUNT(*) FROM #test AS t WHERE flag = 0See possible answers