Granting execute permissions to all stored procedures in a database
CREATE ROLE db_executor
GRANT EXECUTE TO db_executor
from article on SqlDbaTips.com
Showing posts with label Sql Server. Show all posts
Showing posts with label Sql Server. Show all posts
Tuesday, April 14, 2009
Friday, May 2, 2008
Missing Index in Sql Server
The following query displays required index on sql database.
use databse
go
select *
from sys.dm_db_missing_index_details
where database_id = db_id()
use databse
go
select *
from sys.dm_db_missing_index_details
where database_id = db_id()
Labels:
Sql Server
Subscribe to:
Posts (Atom)