Just want you all to know (just in case you have this issue) that some
standard sql doesnt work by default in MS ACCESS 2003 anymore (I didnt
know this, not sure if others do or not - and I couldnt find an answer
to my problem anywhere else on the internet)
I was getting a maddening syntax error on an alter statement that I
knew should work
ALTER TABLE [ARTICLE]
ADD COLUMN [APPROVED] CHAR(1) DEFAULT "N"
- it turns out its because 2003 defaults to "Access SQL" and you have
to switch it to Standard SQL syntax by doing the following..
Tools | Options | Tables/Queries | SQL Server Compatible Syntax (ANSI
92) |
<CheckThis database.
standard sql doesnt work by default in MS ACCESS 2003 anymore (I didnt
know this, not sure if others do or not - and I couldnt find an answer
to my problem anywhere else on the internet)
I was getting a maddening syntax error on an alter statement that I
knew should work
ALTER TABLE [ARTICLE]
ADD COLUMN [APPROVED] CHAR(1) DEFAULT "N"
- it turns out its because 2003 defaults to "Access SQL" and you have
to switch it to Standard SQL syntax by doing the following..
Tools | Options | Tables/Queries | SQL Server Compatible Syntax (ANSI
92) |
<CheckThis database.
Comment