I've implemented a process to import data to a database that needs to set IDENTITY_INSERT ON
and OFF
.
However, to have this permission the user must own the table or have ALTER
permission on the table.
As changing the process is not possible, my question is if it is possible to limit the grants given to a user when giving him the ALTER
permission.
i.e., at the end of the day I would like to have an user with ALTER
permission that can set IDENTITY_INSERT ON
and OFF
but CANNOT add/remove columns nor similar stuff.
Thanks in advance