Thanks I think this helped - kind of.
What I was looking for were 2 things I guess:
1 - HOW to actually execute a stored procedure (i.e.; where do you start typing?)
2 - The code itself - which you provided. Thanks
The real problem here lies in the fact that I'm using an Access 2002 Project (.adp) to connect to SQL Server 2005.
The word on the street is that in order to modify SQL objects from earlier versions you'd need to grant these permissions to the dt_verstamp007 sys. sp.
After several failed attempts I managed to get MY stored procedure to work ( I think, as there were no errors finally).
CODE
Create Procedure SP_ModPerms
AS
grant exec on dbo.dt_verstamp007 to public
HOWEVER, upon opening the Access Data Project again and trying to create a query through Access, I get the SAME error message.
Frustrating.
Is this solution SUPPOSED to work? Has anyone MADE it work with older versions of Access and SQL 2005?
I have tested with Access 2007 and there are no issues at all (for obvious reasons).
I would like to stay away from upgrading the office though... so any ideas are welcome.
Thanks again.