Re: SQL Server execute permission denied on object
- From: "Sylvain Lafontaine" <sylvain aei ca (fill the blanks, no spam please)>
- Date: Fri, 24 Feb 2006 16:43:39 -0500
This is a permission problem: the Login account or the required permissions
have not been set up properly on the remote database. However, permission
problems are one of these things that cannot be set up graphically (ie.
using the GUI interface) from Access ADE; so you have to use DDL statement
or use something else like Enterprise Manager.
I don't understand what you mean by "Since I am out of state I can not run
against the SQL server that she is using.". EM or any other client tool
shouldn't have any problem to make a remote connection if you don't have a
firewall blocking the port 1433 somewhere along the line.
--
Sylvain Lafontaine, ing.
MVP - Technologies Virtual-PC
E-mail: http://cerbermail.com/?QugbLEWINF
"Roger Sipson" <sipson@xxxxxxxxxxxxx> wrote in message
news:eugKA7MOGHA.748@xxxxxxxxxxxxxxxxxxxxxxx
I have an Access FE to a SQL BE that has been running fine for several
years. Recently the SQL part was moved to a new server. I changed the
connect string to reflect the new server name and my user can get to the
db
but she has started getting
SQL Server execute permission denied on object
messages that did not appear previously.
Example problem VB code is
Dim cmd As New ADODB.Command
With cmd
.ActiveConnection = glbConnection
.CommandText = "uspStudentExistsArchive"
.CommandType = adCmdStoredProc
.Parameters.Append .CreateParameter("RETURN_VALUE", adInteger,
adParamReturnValue)
.Parameters.Append .CreateParameter("@DragonID", adChar,
adParamInput, 8, strDragonID)
.Execute
End With
uspStudentExistsArchive exists and the call is correct.
I am using an ADODB.Connection
I have no problems when I use the BE on my computer, which runs on SQL
Server Developer edition. The problem only appears when my user is
connecting to a BE running on the new server. Since I am out of state I
can
not run against the SQL server that she is using.
This is the only FE to a lot of data so I REALLY would appreciate any
help.
Roger Sipson
.
- Follow-Ups:
- Re: SQL Server execute permission denied on object
- From: Roger Sipson
- Re: SQL Server execute permission denied on object
- References:
- SQL Server execute permission denied on object
- From: Roger Sipson
- SQL Server execute permission denied on object
- Prev by Date: Re: Dynamically changing background HELP
- Next by Date: Re: SQL Server execute permission denied on object
- Previous by thread: SQL Server execute permission denied on object
- Next by thread: Re: SQL Server execute permission denied on object
- Index(es):
Relevant Pages
|