What is the SQL command for giving a user permissions to create (and delete) tables? I am looking for something similar to this:
GRANT INSERT, UPDATE, SELE
When I googled, I got right to TechNet. It looks like you want:
GRANT CREATE TABLE
As in:
USE AdventureWorks2012; GRANT CREATE TABLE TO MelanieK; GO