Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Is this possible? I created a datamart, and connect to it via the SQL endpoint in SSMS.
Then in SSMS i tried to create a generic procedure with this code:
USE [db_name];
GO
CREATE PROCEDURE model.uspGetEmployeesTest2
@LastName nvarchar(50),
@FirstName nvarchar(50)
AS
SET NOCOUNT ON;
SELECT *
FROM model.tablename
WHERE attribute = @FirstName AND attribute2 = @LastName
;
GO
But i just get a permission denied error. Is there any way to grant myself permission to create this in the datamart?
Solved! Go to Solution.
Hello!
Currently there is no option to create procedures in Power BI datamart, only run SELECT commands.
To create stored procedures you will need to use other tools or functionality, such as Azure Synapse or Warehouse in Microsoft Fabric.
Hello!
Currently there is no option to create procedures in Power BI datamart, only run SELECT commands.
To create stored procedures you will need to use other tools or functionality, such as Azure Synapse or Warehouse in Microsoft Fabric.