Viewing 5 posts - 1 through 6 (of 6 total)
Lynn Pettis (8/3/2012)
The function dbo.fnRubricDomainScoresMarzano is a multi-statement table valued function. What this means is that the function does not return its value (table)...
August 3, 2012 at 10:07 am
Lynn Pettis (8/3/2012)
August 3, 2012 at 9:17 am
Lynn Pettis (8/3/2012)
Can you post the DDL (CREATE FUNCTION statement) for [dbo].[fnRubricDomainScoresMarzano]?
Hi Lynn,
Here is the DDL for [dbo].[fnRubricDomainScoresMarzano].
USE [TestDB]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE Function [dbo].[fnRubricDomainScoresMarzano] (@SourceEvaluateeMilestoneID INT)
RETURNS @tempTable TABLE(RubricDomainID INT,...
August 3, 2012 at 9:01 am
SpringTownDBA (8/2/2012)
declare cursor ...
open cursor ...
fetch from cursor ...
while (@@FETCH_STATUS <> -1)
BEGIN
...
August 3, 2012 at 7:58 am
Thanks. I am trying the CROSS APPLY now and it has been running for over 14 minutes now.
August 3, 2012 at 7:35 am
Viewing 5 posts - 1 through 6 (of 6 total)