re:
!> The issue now is that the default ASPNET identity for asp.net doesn't have
!> the permission to drop the table using the mentioned stored procedure. Is
!> there any way to assign the permission?
Sure.
Use SQL Server's 2005 User Manager...and assign
the needed permission to the account's login user.
Since, apparently, the account has access to the database, but not
to the specific stored procedure, you don't have to create the login.
Right-click the user and select "All Tasks" and then "Manage Permissions".
Scroll down to the stored procedure...and check the "EXEC" option.
Juan T. Llibre, asp.net MVP
asp.net faq :
http://asp.net.do/faq/
foros de asp.net, en español :
http://asp.net.do/foros/
======================================
"pedestrian via DotNetMonster.com" <u16758@uwe> wrote in message news:7857e9c20e6b0@uwe...
> I've created an asp.net 1.1 page for development machine running on IIS 5.0
> (deployment machine running IIS 6.0).
>
> The page use ADO.NET (OLE DB) to call a stored procedure in the SQL Server
> 2005 that drop a table and recreate it.
>
> The issue now is that the default ASPNET identity for asp.net doesn't have
> the permission to drop the table using the mentioned stored procedure. Is
> there any way to assign the permission?
>
> Thank you.
>
> --
> Message posted via DotNetMonster.com
> http://www.dotnetmonster.com/Uwe/For...p-net/200709/1
>