I just downloaded the Snitz Forum v 3.4, and I'm trying to add the tables into a DB that I've created just for the Snitz Forum that I've named "BulletinBoard". When I tried to fill the DB with the tables, I received an error message. So I took each query, and put them manually into SQL Server to create all of the tables. Then I tried to do the same thing with the "Alter Table" queries, but I received this error for all of them:
[Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect syntax error near the keyword 'ADD'
This is one of the "Alter Table" queries that I tried and failed with:
ALTER TABLE FORUM_MEMBERS WITH NOCHECK ADD CONSTRAINT FORUM_SnitzC49
DEFAULT 1 FOR M_STATUS, CONSTRAINT FORUM_SnitzC50 DEFAULT 1 FOR M_DEFAULT_VIEW, CONSTRAINT FORUM_SnitzC51 DEFAULT 1 FOR M_LEVEL,
CONSTRAINT FORUM_SnitzC52 DEFAULT '' FOR M_DATE, CONSTRAINT FORUM_SnitzC53 DEFAULT 0 FOR M_SUBSCRIPTION,
CONSTRAINT FORUM_SnitzC54 DEFAULT 0 FOR M_HIDE_EMAIL, CONSTRAINT FORUM_SnitzC55 DEFAULT 1 FOR M_RECEIVE_EMAIL,
CONSTRAINT FORUM_SnitzC56 DEFAULT '000.000.000.000' FOR M_LAST_IP, CONSTRAINT FORUM_SnitzC57 DEFAULT '000.000.000.000' FOR M_IP,
CONSTRAINT FORUM_SnitzC58 PRIMARY KEY NONCLUSTERED (MEMBER_ID)
Is this error message common? Does anyone have any idea what I'm doing wrong? Any & all help is appreciated. Thanks.
KWilliams