473,698 Members | 2,337 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

'EXECUTE PERMISSION DENIED' on executing Sproc

Hi,

I got this 'EXECUTE permission denied on object <mySproc>' error message
everytime I try executing my SQL server Sproc.
What's this and how to fix this err?

many thnaks in advance,
mike
Nov 19 '05 #1
7 1744
Hi Mike,

Technically, this is the wrong group for this question. You will
probably have better luck posting in the following news group :
http://groups-beta.google.com/group/...er.programming

The following news group thread will probably help :
http://tinyurl.com/3ohj6

Tod Birdsall, MCP
http://tod1d.blogspot.com

Nov 19 '05 #2
Hi Tod,

Is it? So it's got nothing to do with my ASP.NET settings/configurations or
whatever?
anyone else can help me with this?

thks,
mike

"Tod Birdsall" <no*****@netsal ad.com> wrote in message
news:11******** **************@ c13g2000cwb.goo glegroups.com.. .
Hi Mike,

Technically, this is the wrong group for this question. You will
probably have better luck posting in the following news group :
http://groups-beta.google.com/group/...er.programming

The following news group thread will probably help :
http://tinyurl.com/3ohj6

Tod Birdsall, MCP
http://tod1d.blogspot.com

Nov 19 '05 #3
Mike,

This is a database user right issue. Try first to get it working in your
database client tools with the same database authentication you are using in
your asp.net program.

Eliyahu

"Mike L." <gl************ *******@yahoo.c om> wrote in message
news:e5******** ******@TK2MSFTN GP09.phx.gbl...
Hi Tod,

Is it? So it's got nothing to do with my ASP.NET settings/configurations or whatever?
anyone else can help me with this?

thks,
mike

"Tod Birdsall" <no*****@netsal ad.com> wrote in message
news:11******** **************@ c13g2000cwb.goo glegroups.com.. .
Hi Mike,

Technically, this is the wrong group for this question. You will
probably have better luck posting in the following news group :
http://groups-beta.google.com/group/...er.programming
The following news group thread will probably help :
http://tinyurl.com/3ohj6

Tod Birdsall, MCP
http://tod1d.blogspot.com


Nov 19 '05 #4
Hi, Mike.

Actually, it does *not* have anything to do
with ASP.NET's settings/configurations.

It has to do with SQL Server's security settings.

Tod gave you a link with a good pointer to the answer.

The answer is to allow execution permission for the Sproc,
to the account you're using to work with your SQL server DB.

That will depend on how you've configured SQL Server,
and which account ASP.NET uses to work with SQL Server,
which in turn depends on which version of IIS you're using.

You did not mention whether you're using Windows security,
or SQL Server security, or mixed-mode security, in SQL Server,
and you did not mention which version of IIS you're running,
and you did not mention which OS you're using, and you did
not mention which version of ASP.NET/NET Framework
you're using.

Posting that information would have helped to
give you a straighter, more accurate, answer.

This is common in these newsgroups.

Everybody who posts a question here should, at the very least,
identify their OS, the version of IIS, and their .NET Framework
version/ASP.NET version. Additionally, if the question involves
database access, the version of their db platform.

That will help those who are trying to help the poster find the
answer quickly, and get the right answer back to the poster faster.

So, check which account you're using to retrieve/write data
from/to SQL Server, and give execute permission on the sproc
to that account.

The account will be either the SQL Server login you're using to retrieve
data from SQL Server (look in your connection string to know which
one it is), or the ASPNET account if you're running IIS 5, or the
Network Service account if you are running IIS 6.

Only you know which account you're using.

Juan T. Llibre
ASP.NET MVP
===========
"Mike L." <gl************ *******@yahoo.c om> wrote in message
news:e5******** ******@TK2MSFTN GP09.phx.gbl...
Hi Tod,

Is it? So it's got nothing to do with my ASP.NET settings/configurations
or
whatever?
anyone else can help me with this?

thks,
mike

"Tod Birdsall" <no*****@netsal ad.com> wrote in message
news:11******** **************@ c13g2000cwb.goo glegroups.com.. .
Hi Mike,

Technically, this is the wrong group for this question. You will
probably have better luck posting in the following news group :
http://groups-beta.google.com/group/...er.programming

The following news group thread will probably help :
http://tinyurl.com/3ohj6

Tod Birdsall, MCP
http://tod1d.blogspot.com


Nov 19 '05 #5
Thanks Juan,

Yes, I forgot to mention that I got this prob on one of my hosted
application.
So, i don't have any privilege needed to change any permission on any of my
SQL objects.
Aren't all we have just login name, pwd and DB for which belong to us in
such hosted environment?
Anyway, my hosting server runs Win2K3, SQL Server 2K, .NET framework 1.1

thks & brgds,
mike

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:#l******** ******@TK2MSFTN GP11.phx.gbl...
Hi, Mike.

Actually, it does *not* have anything to do
with ASP.NET's settings/configurations.

It has to do with SQL Server's security settings.

Tod gave you a link with a good pointer to the answer.

The answer is to allow execution permission for the Sproc,
to the account you're using to work with your SQL server DB.

That will depend on how you've configured SQL Server,
and which account ASP.NET uses to work with SQL Server,
which in turn depends on which version of IIS you're using.

You did not mention whether you're using Windows security,
or SQL Server security, or mixed-mode security, in SQL Server,
and you did not mention which version of IIS you're running,
and you did not mention which OS you're using, and you did
not mention which version of ASP.NET/NET Framework
you're using.

Posting that information would have helped to
give you a straighter, more accurate, answer.

This is common in these newsgroups.

Everybody who posts a question here should, at the very least,
identify their OS, the version of IIS, and their .NET Framework
version/ASP.NET version. Additionally, if the question involves
database access, the version of their db platform.

That will help those who are trying to help the poster find the
answer quickly, and get the right answer back to the poster faster.

So, check which account you're using to retrieve/write data
from/to SQL Server, and give execute permission on the sproc
to that account.

The account will be either the SQL Server login you're using to retrieve
data from SQL Server (look in your connection string to know which
one it is), or the ASPNET account if you're running IIS 5, or the
Network Service account if you are running IIS 6.

Only you know which account you're using.

Juan T. Llibre
ASP.NET MVP
===========
"Mike L." <gl************ *******@yahoo.c om> wrote in message
news:e5******** ******@TK2MSFTN GP09.phx.gbl...
Hi Tod,

Is it? So it's got nothing to do with my ASP.NET settings/configurations
or
whatever?
anyone else can help me with this?

thks,
mike

"Tod Birdsall" <no*****@netsal ad.com> wrote in message
news:11******** **************@ c13g2000cwb.goo glegroups.com.. .
Hi Mike,

Technically, this is the wrong group for this question. You will
probably have better luck posting in the following news group :
http://groups-beta.google.com/group/...er.programming
The following news group thread will probably help :
http://tinyurl.com/3ohj6

Tod Birdsall, MCP
http://tod1d.blogspot.com



Nov 19 '05 #6
re:
So, i don't have any privilege needed to change
any permission on any of my SQL objects.
You can request your ISP to make the permission change.

Juan T. Llibre
ASP.NET MVP
===========
"Mike L." <gl************ *******@yahoo.c om> wrote in message
news:OK******** ******@tk2msftn gp13.phx.gbl... Thanks Juan,

Yes, I forgot to mention that I got this prob on one of my hosted
application.
So, i don't have any privilege needed to change any permission on any of
my
SQL objects.
Aren't all we have just login name, pwd and DB for which belong to us in
such hosted environment?
Anyway, my hosting server runs Win2K3, SQL Server 2K, .NET framework 1.1

thks & brgds,
mike

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:#l******** ******@TK2MSFTN GP11.phx.gbl...
Hi, Mike.

Actually, it does *not* have anything to do
with ASP.NET's settings/configurations.

It has to do with SQL Server's security settings.

Tod gave you a link with a good pointer to the answer.

The answer is to allow execution permission for the Sproc,
to the account you're using to work with your SQL server DB.

That will depend on how you've configured SQL Server,
and which account ASP.NET uses to work with SQL Server,
which in turn depends on which version of IIS you're using.

You did not mention whether you're using Windows security,
or SQL Server security, or mixed-mode security, in SQL Server,
and you did not mention which version of IIS you're running,
and you did not mention which OS you're using, and you did
not mention which version of ASP.NET/NET Framework
you're using.

Posting that information would have helped to
give you a straighter, more accurate, answer.

This is common in these newsgroups.

Everybody who posts a question here should, at the very least,
identify their OS, the version of IIS, and their .NET Framework
version/ASP.NET version. Additionally, if the question involves
database access, the version of their db platform.

That will help those who are trying to help the poster find the
answer quickly, and get the right answer back to the poster faster.

So, check which account you're using to retrieve/write data
from/to SQL Server, and give execute permission on the sproc
to that account.

The account will be either the SQL Server login you're using to retrieve
data from SQL Server (look in your connection string to know which
one it is), or the ASPNET account if you're running IIS 5, or the
Network Service account if you are running IIS 6.

Only you know which account you're using.

Juan T. Llibre
ASP.NET MVP
===========
"Mike L." <gl************ *******@yahoo.c om> wrote in message
news:e5******** ******@TK2MSFTN GP09.phx.gbl...
> Hi Tod,
>
> Is it? So it's got nothing to do with my ASP.NET
> settings/configurations
> or
> whatever?
> anyone else can help me with this?
>
> thks,
> mike
>
> "Tod Birdsall" <no*****@netsal ad.com> wrote in message
> news:11******** **************@ c13g2000cwb.goo glegroups.com.. .
>> Hi Mike,
>>
>> Technically, this is the wrong group for this question. You will
>> probably have better luck posting in the following news group :
>> http://groups-beta.google.com/group/...er.programming >>
>> The following news group thread will probably help :
>> http://tinyurl.com/3ohj6
>>
>> Tod Birdsall, MCP
>> http://tod1d.blogspot.com
>>
>
>



Nov 19 '05 #7
Loggin (authentication ) and permission (authorization) are different thing
Authentication just proves who you are. Once your identity is proven, the
system will decide what you can do/vannot do, according to your identity.
You may be able to logged in but cannot do anything if no permission is
given. In your case, you have logged in, but you are not given the
permission to use that Sproc (and maybe more). If you desgned the ASP.NET
system, you need to study more on the security issue. Or ask the SQL Server
administrator to give you (or the ASP.NET user) permission to use that Sproc
(and others).

"Mike L." <gl************ *******@yahoo.c om> wrote in message
news:OK******** ******@tk2msftn gp13.phx.gbl...
Thanks Juan,

Yes, I forgot to mention that I got this prob on one of my hosted
application.
So, i don't have any privilege needed to change any permission on any of my SQL objects.
Aren't all we have just login name, pwd and DB for which belong to us in
such hosted environment?
Anyway, my hosting server runs Win2K3, SQL Server 2K, .NET framework 1.1

thks & brgds,
mike

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:#l******** ******@TK2MSFTN GP11.phx.gbl...
Hi, Mike.

Actually, it does *not* have anything to do
with ASP.NET's settings/configurations.

It has to do with SQL Server's security settings.

Tod gave you a link with a good pointer to the answer.

The answer is to allow execution permission for the Sproc,
to the account you're using to work with your SQL server DB.

That will depend on how you've configured SQL Server,
and which account ASP.NET uses to work with SQL Server,
which in turn depends on which version of IIS you're using.

You did not mention whether you're using Windows security,
or SQL Server security, or mixed-mode security, in SQL Server,
and you did not mention which version of IIS you're running,
and you did not mention which OS you're using, and you did
not mention which version of ASP.NET/NET Framework
you're using.

Posting that information would have helped to
give you a straighter, more accurate, answer.

This is common in these newsgroups.

Everybody who posts a question here should, at the very least,
identify their OS, the version of IIS, and their .NET Framework
version/ASP.NET version. Additionally, if the question involves
database access, the version of their db platform.

That will help those who are trying to help the poster find the
answer quickly, and get the right answer back to the poster faster.

So, check which account you're using to retrieve/write data
from/to SQL Server, and give execute permission on the sproc
to that account.

The account will be either the SQL Server login you're using to retrieve
data from SQL Server (look in your connection string to know which
one it is), or the ASPNET account if you're running IIS 5, or the
Network Service account if you are running IIS 6.

Only you know which account you're using.

Juan T. Llibre
ASP.NET MVP
===========
"Mike L." <gl************ *******@yahoo.c om> wrote in message
news:e5******** ******@TK2MSFTN GP09.phx.gbl...
Hi Tod,

Is it? So it's got nothing to do with my ASP.NET settings/configurations or
whatever?
anyone else can help me with this?

thks,
mike

"Tod Birdsall" <no*****@netsal ad.com> wrote in message
news:11******** **************@ c13g2000cwb.goo glegroups.com.. .
> Hi Mike,
>
> Technically, this is the wrong group for this question. You will
> probably have better luck posting in the following news group :
> http://groups-beta.google.com/group/...er.programming>
> The following news group thread will probably help :
> http://tinyurl.com/3ohj6
>
> Tod Birdsall, MCP
> http://tod1d.blogspot.com
>



Nov 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
7855
by: Bob Garbados | last post by:
I'm pretty new to php\linux and I'm trying to encrypt a file using gpg from a php page on a linux box and it's not working. The following code works for executing 'ls', but not gpg... $descriptorspec = array( 0 => array("pipe", "r"), // stdin is a pipe that the child will read from 1 => array("pipe", "w"), // stdout is a pipe that the child will write to 2 => array("file", "/tmp/error-output.txt", "a") // stderr is a file to
2
2241
by: PM Creyghton | last post by:
I got this error without using frames: First of all, I'm developing an ASP application, and once in a while my activeX components crash or hang, I got page-not-found errors, errors generated by my COM object... Its all in the game of development :).. BUT when some crash occure, and I then try to restart my IIS service or restart my component service, javascript is generating the 'Permission denied error'.
5
3239
by: Ivan Simurina | last post by:
I m getting the following error once i initiate a page that connects with database. SqlException: EXECUTE permission denied on object 'sp_items_for_sale', database 'bids', owner 'dbo'.] what should i do to correct this? thanx
8
9561
by: Jiggaz | last post by:
Hi, In my ASPX Page, i have a form for signup. And whene user click on the button, the event Button1_Click must use a stored procedure. But instead of use stored proc, i get this exception : _____ System.Data.SqlClient.SqlException: EXECUTE permission denied on object 'CreateAccount', database 'wizou', schema 'dbo'. at
7
2715
by: Ken | last post by:
Hi guys, this is a curios thing, everything was working fine then I had to restore my development machine( VS.NET, SQL server etc) now I'm receiveing this error from my asp aplication only in RELEASE mode, but everything works good in DEBUG mode, this is happening when I run my app against my local SQLDB and against a hosting DB. EXECUTE permission denied on object 'sp_sdidebug', database 'master', owner 'dbo'.
1
1344
by: david | last post by:
I am using MS ASP.NET course matrial in Model 16. I have the above problem. I have setup user machin\ASPNET as Reeder and Writer for doctors database More informatin are in following System.Data.SqlClient.SqlException: EXECUTE permission denied on object 'getUniqueCities', database 'doctors', owner 'dbo' Source Error:
3
1614
by: teddysnips | last post by:
I'm trying to use the SPROC below (courtesy of Erland!) to capture the error message but it fails owing to insufficient permissions (I can't reproduce it just now, but I think it's because it can't get access to the DBCC OUTPUTBUFFER). How do I give the SPROC permission to execute? Many thanks Edward
0
3200
by: debug03 | last post by:
I am executing a DTS package on a Windows 2000 sp4 server running SQL Server 2000 and IBM DB2 V7 client. The DTS package source data(SQL Server) is selected from SQL server table and inserts data to the destination table(DB2). I get the following error when the package is executed: The execution of the following DTS Package succeeded: Package Name: PEX2-CopyQualDatatoDB2-UAT Package Description: (null) Package ID:...
1
3693
by: Jeff | last post by:
asp.net 3.5 I've created a database in Sql Server 2005 for my asp.net project. I used aspnet_regsql to add membership tables and stored procedures. Then I added a login/user to this database. Default schema for this user is dbo. When I try to execute my asp.net webpage I get this error: EXECUTE permission denied on object 'aspnet_CheckSchemaVersion', database
0
8676
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8608
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9161
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9029
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8897
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8867
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7732
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3050
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.