July 5, 2016 at 10:23 pm
Hi,
Please help me here.
I am not able to access stored procedures but I can access functions, tables, views and other objects.
Can somebody please help me here ? I am not getting what is the reason. I got suggestions that this issue is related to SQL Server 2014. I believe this issue is related to access.
Can somebody please tell me what is this related to and how this to be resolved.
Thanks in advance
July 5, 2016 at 11:24 pm
Take a look at this link, hope this will help you: http://stackoverflow.com/questions/13307589/unable-to-access-stored-procedures-on-localhost
July 6, 2016 at 12:54 am
Can you check whether the stored proc is encrypted or you have proper access permissions on that proc?
July 6, 2016 at 2:08 am
This issue may occur when you have read-write permission, but don't have ddl_admin permission.
Get execute permission from your DBA to execute procedure.
Command:
Grant Execute to [userName];
Ref.
http://stackoverflow.com/questions/9321334/grant-execute-to-all-stored-procedures
July 6, 2016 at 6:27 am
Hi Everyone,
Thanks for the reply.
It's not about any specific SP. I can access all other SQL objects such as Functions, Tables, Views etc.
If I try to check SP, it shows message as 'unknown property IsNativelyCompiled (Microsoft.SQLServer.Management.Sdk.Sfc)'. I tried to search this but no concrete solution found. I have tried some patches of SP1 with CU5,6,7 but nothing worked. I have also tried installing SQL Server 2016 but everything went in vain.
Please let me know what is this issue and how to resolve this.
Thanks again.
July 6, 2016 at 6:33 am
Sounds like you're using an old version of Management Studio with a new version of SQL. What do the following show:
SELECT @@Version
In Management Studio: Help -> About
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
July 6, 2016 at 6:37 am
Both are same. I checked as you mentioned.
July 6, 2016 at 6:51 am
Have to tried with this:
download the service pack 1 (https://www.microsoft.com/en-us/download/confirmation.aspx?id=46694) and install it.
also check the solutions provided in the following URL:
July 6, 2016 at 10:34 pm
Hi Durga,
Thanks for the reply.
It worked.
Before trying this I had uninstalled and installed everything.
It's big help. I had spent so much time on trying to resolve this.
Thank you once again. 🙂
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply