Hi, all.
I need to create a function that is available across all database without two-part name.
It's possible in SQL Server 2000.
like this ...
------------------------------------------------------
EXEC SP_CONFIGURE 'ALLOW UPDATES', 1
RECONFIGURE WITH OVERRIDE
http://msdn.microsoft.com/en-us/library/aa224829(SQL.80).aspx
------------------------------------------------------
I can create custom System Procedure in SQL Server 2005 / 2008.
Is there a way ?
Thanks for everyone's contribution.