I backed up the database on sql 200 server. I created a new database in SQL Server 2008 r2.
Now when I run the view, I get an error:
'function_name' is not a recognized function name.
There is a function And I can run it using
SELECT [dbo].[function_name] ( 'hjh') GO SELECT dbo.function_name('kjk')
Why does this problem occur when it works correctly?
EDIT:
I think this may be a security issue, since the schemas owned by the user under dbo do not contain antivirus?
source share