Microsoft SQL 2008R2 Server Management Studio 10.50.1600.1I want make an function in SQL like this:CREATE FUNCTION fx_SumTwoValues( @Val1 int, @Val2 int )RETURNS intASBEGIN RETURN (@Val1+@Val2)END
syntaxSELECT dbo.fx_SumTwoValues(1,2) AS SumOfTwoValues
Now I want to make function without the DBO. so I can use this syntaxSELECT fx_SumTwoValues(1,2) AS SumOfTwoValues
What do I have to do to remove this dbo. to call my function???