Hi,
My actual requirement is users can not create /alter the table schema.But they can have insert,select and update data permissions on table. But they can create /alter/drop storeprocedures..
My default schema for user is dbo. i ahve given below permissions..
GRANT EXEC ON SCHEMA::dbo TO uname -- Grant perpmission on all procedures in the dbo schema
DENY CREATE TABLE TO uname
GRANT ALTER ON SCHEMA::dbo TO uname -- For altering the sps..
But as per requirement the users can not alter the table schema but they can have permissions for alter and drop the sps.. Pls help ho wto do it..
Thanks..