hi, can we create user define function with in stored procedure then end of the store procedure we need to delete that custom user define function.
A:
This looks like a duplicate of:
Creating a User Defined function in Stored Procedure in SQL 2005
Thomas
2010-03-24 05:08:04
+1
A:
You can but it could get messy.
Look at sp_executesql. This will allow you to run arbitrary SQL, including DDL. Creating and using UDF's in this way does seem a bit dangerous -- you'll need to make sure that there aren't any name conflicts with competing threads, and there's no way to get any kind of query optimization.
I'd double check your design to make sure there isn't another solution to this!
roufamatic
2010-03-24 05:08:52
A:
Dynamic SQL is the only way.
ALTER PROC ...
AS
...
EXEC ('CREATE FUNCTION tempFunc...')
...
EXEC ('DROP FUNCTION tempFunc')
...
GO
However:
- if you have 2 concurrent executions it will fail because tempFunc already exists
- if each udf definition is different, then you need random names
- if you randomise the name, the rest of the code will have to be dynamic SQL too
- a stored proc implies reuse so just persist it
- your code will need ddl_admin or db_owner rights to create the udf
- ...
So... why do you want to do this?
gbn
2010-03-24 05:10:06
i want to create Custom process as like as split words for give parameter input to stored procedure level i used this custom function for this process only .after this process i don't want be this function present in sql server level. Let's consider if user want to create custom process he/she created custom function. after finishing this process he needs to delete that.similarly 1000 custom function created if they not delete that function we need more space for database level .
Rajagopalk
2010-03-25 06:00:11