November 22, 2007 at 9:02 pm
Hello friend
I have created Multi-statement Table_valued function which should return table. Function have dynamic cursor declared.
Function is created sucessfully but got error when it executing.
Error like "Only functions and extended stored procedures can be executed from within a function.".
Function code like below.
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER FUNCTION [dbo].[FetchAddress]
()
RETURNS
@RetTable TABLE
(
adr_id uniqueidentifier
)
AS
BEGIN
declare @query nvarchar(2000)
set @query = (select query from Rules where mand=1 and station= 111)
--where @query = Select adr_id from Address where mand = 1 and station = 111 and city = 'ahmedabad'
DECLARE @STRSQL VARCHAR(2000)
SET @STRSQL = 'DECLARE ADDRESSDATA CURSOR READ_ONLY FOR ' + @query
exec sp_executesql @STRSQL
OPEN ADDRESSDATA
DECLARE @addressId uniqueidentifier
FETCH NEXT FROM ADDRESSDATA INTO @addressId
WHILE @@fetch_status = 0
BEGIN
INSERT INTO @RetTable VALues(@addressId)
FETCH NEXT FROM ADDRESSDATA INTO @addressId
END
CLOSE ADDRESSDATA
DEALLOCATE ADDRESSDATA
RETURN
END
I am executing above function by "Select * from [Test].[dbo].[FetchAddress]()"
Thanks
November 22, 2007 at 9:33 pm
sp_ExecuteSQL is not an "extended stored procedure" or it would begin with "xp_". Neither is any form of dynamic SQL. I'm afraid that you're out of luck.
In fact, if you check out Books Online, which says the following about UDF's, you'll see that you've violated several rules for UDF's 😉
The following statements are allowed in the body of a multi-statement function. Statements not in this list are not allowed in the body of a function:
Assignment statements.
Control-of-Flow statements.
DECLARE statements defining data variables and cursors that are local to the function.
SELECT statements containing select lists with expressions that assign values to variables that are local to the function.
Cursor operations referencing local cursors that are declared, opened, closed, and deallocated in the function. Only FETCH statements that assign values to local variables using the INTO clause are allowed; FETCH statements that return data to the client are not allowed.
INSERT, UPDATE, and DELETE statements modifying table variables local to the function.
EXECUTE statements calling an extended stored procedures.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 22, 2007 at 10:50 pm
Hi Jeff
Thanks for you reply.
There is no other workaround for fullfill my function requirment. As my requirement is that table return sql statement base on some criteria and then bt executing sql statement will return some Ids. I can't use Store procedure for fullfill above requirement as i want use this function for Replication(for filter row)
November 23, 2007 at 4:19 pm
I wish I knew enough about replication to help you out of the pickle you're in...
Thanks for the feedback.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply