Contents tagged with row
-
SQL Server Get Row Count of All Tables
Get all the tables with a count of their records with the following query:
CREATE TABLE #Temp
(
TableName VARCHAR(MAX),
Rows INT
);
EXEC sp_MSForEachTable @command1 = 'INSERT INTO # … more
-
Power BI Row Level Security (RLS)
https://docs.microsoft.com/en-us/power-bi/service-admin-rls more
-
Power BI DAX Displaying the Nth Element
https://www.sqlbi.com/articles/displaying-nth-element-in-dax/
https://docs.microsoft.com/en-us/dax/row-function-dax more
-
Power BI Row Level Security (RLS)
https://docs.microsoft.com/en-us/power-bi/report-server/row-level-security-report-server
https://blog.tallan.com/2018/04/10/row-level-security-in-power-bi-part-1-roles-and-users/
http://radacad.com/ … more