takia1977
asked on
table-valued function
Is there a way to run a table-valued function with a predefined user?
You can create the function, right click ->Properties->Permissions- > add the user who needs permissions.
ASKER
This is the error message I am getting. I want the user to be able to run this without adding them the to table this function is using. I was hopeing that I would be able to do this by predefining a user for this function to always execute as.
SELECT *
FROM func_GetUserInfo_FromLogin ('tajohnso n', DEFAULT)
Msg 7314, Level 16, State 1, Line 1
The OLE DB provider "SQLNCLI" for linked server "SCFDB01" does not contain the table ""Rosetta"."dbo"."RosettaS tone"". The table either does not exist or the current user does not have permissions on that table.
SELECT *
FROM func_GetUserInfo_FromLogin
Msg 7314, Level 16, State 1, Line 1
The OLE DB provider "SQLNCLI" for linked server "SCFDB01" does not contain the table ""Rosetta"."dbo"."RosettaS
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
I am not sure what you mean by AFAIK? I am pretty new to this whole thing. As far as the schema prefix wouldnt that be the dbo part of the function name? If I run the same select statement with my user account it works fine. I think this is because I have permissions to the table.
AFAIK = As Far As I Know :)
> If I run the same select statement with my user account it works fine.
you might have 2 "versions" (under different schema) of the same function name.
> If I run the same select statement with my user account it works fine.
you might have 2 "versions" (under different schema) of the same function name.
ASKER
Sorry, I just realized that I dont have the schema prefix in the original query that I sent. But, I am still able to run the statement without the prefix.
ASKER
There is not another version. Do you know of a way that I setup a defualt user for the Function to run as?
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.