Experts,
I need to grant privileges to a user to be able to create tables on all databases in server\instance, so
I will be using below commands, please advice me if I am wrong,
USE [master]
GRANT CREATE TABLE to [username]
GO
Do we need to grant the user any ALTER privileges after the above command?
Thanks in advance