Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
dharmavarapurajesh
Starting Member
1 Post |
Posted - 2014-04-25 : 03:03:50
|
hi guys I have created a stored procedure in windows authentication. And I cannot see the same stored procedure in that database in sql server authentication. please help me in finding the solution |
|
James K
Master Smack Fu Yak Hacker
3873 Posts |
Posted - 2014-04-25 : 08:25:17
|
quote: Originally posted by dharmavarapurajesh hi guys I have created a stored procedure in windows authentication. And I cannot see the same stored procedure in that database in sql server authentication. please help me in finding the solution
This may be because your sql authenticated user does not have access to the stored procedure. Give that user access:GRANT EXECUTE ON YourSchemaName.YourStoredProcName TO YourSQLAuthenticatedUserName |
|
|
|
|
|