110 pts.
 Executing System Stored Procedures
What kind of "Permissions" does a developer need in order to execute sp_fulltext_catalog, sp_fulltext_column, sp_fulltext_database, sp_fulltext_table, sp_addLinkedServer, sp_addLinkedSRVlogin ?

Software/Hardware used:
ASKED: August 13, 2008  2:56 PM
UPDATED: August 13, 2008  7:20 PM

Answer Wiki:
To run the full text procedures you have to be a member of the db_owner fixed database role within the database you are running the procedure. (For SQL 2005+) To run the sp_addlinkedserver procedure you need the ALTER ANY LINKED SERVER right. To run the sp_addlinkedsrvlogin you need the ALTER ANY LOGIN right. (For SQL 2000-) To run the linked server procedures you need to be a member of the sysadmin or setupadmin fixed server roles. For most system stored procedures if you look up the procedure name in the Books OnLine index, towards the bottom it says which rights are needed to run the procedure.
Last Wiki Answer Submitted:  August 13, 2008  7:20 pm  by  Denny Cherry   64,550 pts.
All Answer Wiki Contributors:  Denny Cherry   64,550 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Check out my SQL Server blog “SQL Server with Mr Denny” for more SQL Server information.

 64,550 pts.