I am using sql server 2008 rc2 and I have a question about naming conventions for scalar valued functions. Specifically the following code works fine
select from database.dbo.MyUDF('arg')
but when I get rid of the dbo and try:
select from database..MyUDF('arg')
I get a syntax error saying that this is ambiguous. I never use the dbo in the name of an object for tables, views, stored proc's or table valued functions and I never get this problem.
Why do I get this problem for a scalar udf?
dbo.notation - so maybe it's time you start to use that, for all your objects. – marc_s Dec 13 '10 at 19:56