Using stored procedures within Freeform SQL reports in MicroStrategy
Database |
SQL to Stored Procedure in the DB
|
execute procedure in Freeform Editor in MSTR
|
Microsoft SQL Server
|
CREATE PROCEDURE emp_search
@DistCtrID INT
as
SET NOCOUNT ON;
SELECT emp_id, emp_first_name + ' ' + emp_last_name
FROM lu_employee
WHERE dist_ctr_id = @DistCtrID;
|
exec sp_ProcedureName @Parameter1=Prompt
@Parameter2=Prompt
....
.....
|
After adding the exec procedure statement in Freeform SQL Editor, Add the column for the output columns in the DB stored procedure.
https://community.microstrategy.com/s/article/KB37783-Instructions-to-use-stored-procedures-within-Freeform
Comments
Post a Comment