calling my fx in sql

  • Thread starter Thread starter rodchar
  • Start date Start date
R

rodchar

hey all,
when i call my function in sql in my datalayer i have to use the prefix dbo.
why do i have to do that? is this ok? do i need to change something on the
database side to follow best practices?

thanks,
rodchar
 
SQL Server user-defined functions require 2-part naming -- the owner (usually
dbo) and the object name. Nothing to fix, that's just the way it is. I'm not
sure exactly why, you could ask in sqlserver.programming I'm sure someone
there knows.
 
thanks for the help and direction,
rod.

KH said:
SQL Server user-defined functions require 2-part naming -- the owner (usually
dbo) and the object name. Nothing to fix, that's just the way it is. I'm not
sure exactly why, you could ask in sqlserver.programming I'm sure someone
there knows.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top