According to Wikipedia this syntax looks correct...
INSERT INTO dbo.metadata_type ("name", "publishable")
VALUES
("Content Owner", 0),
("Content Coordinator", 0),
("Writer", 0),
("Content Type", 0),
("State", 1),
("Business Segment", 0),
("Audience", 0),
("Product Life Cycle Stage", 0),
("Category", 0),
("Template", 0)
I'm getting errors. I've tried wrapping the column names in ` but that didn't work either...
Error code 207, SQL state 42S22: Invalid column name 'Content Owner'.
Error code 207, SQL state 42S22: Invalid column name 'Content Coordinator'.
Error code 207, SQL state 42S22: Invalid column name 'Writer'.
Error code 207, SQL state 42S22: Invalid column name 'Content Type'.
Error code 207, SQL state 42S22: Invalid column name 'State'.
INSERTstatement is valid in SQL Server 2008 and newer only - it doesn't work in earlier versions.