Grant Permission to CREATE tables - SQL Server
Two Options
GRANT CREATE TABLE TO Joe AS dbo
- Add the user to the fixed database role:
db_ddladmin
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