Functions in Functions
I put everything in a Stored Procedure from where I can call "exec..." and stored the data in an additional table. Thx for your assistance.
View ArticleFunctions in Functions
It is SQL Server 2005 Standard and the program is written in Access 2003 / VBA.
View ArticleFunctions in Functions
Ok.. Here you can't achive it from the function directly. If you use SQL Server 2000,You have to use extended stored procedure - a com program which will evaluate the given fromula and return back...
View ArticleFunctions in Functions
DECLARE @decBOM_Count INTDECLARE @strBSC_Formula NVARCHAR(200) -- For demo, is a parameter of the functionSELECT @strBSC_Formula = 'BR-(MW-25)-8' --the next steps are, replacing all the variables in...
View ArticleFunctions in Functions
Without knowing OP's logic we can't simply declare it is by design.. Let him post the logic used inside the function.. We will wait..
View ArticleFunctions in Functions
Here is a thread describe the issue similar to yours.F.Y.I.http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=457236&SiteID=1Thanks,Zuomin
View ArticleFunctions in Functions
Wih in the function, - You can't use dynamic SQL - You can't call any stored procThese are the limitation of the Function. Post your soruce code.
View ArticleFunctions in Functions
Hi, I have to calculate data in function with "EXEC". During runtime I get the Error: "Only functions and extended stored procedures can be executed from within a function." I would use a Stored...
View Article