Data Definition Query

RichB

New member
Local time
Today, 05:18
Joined
May 15, 2001
Messages
96
I have a data definition query and I am using and ALTER TABLE statement (below). I want to add a MEMO field type but it does not work. Can this be done? If so HELP!

ALTER TABLE TSS ADD COLUMN remarks MEMO (64000)


Rich
 
Last edited:
RichB,

I ran this from code and it worked OK

Dim dbs As Database
Set dbs = CurrentDb()

dbs.Execute "ALTER TABLE Table1 " _
& "ADD COLUMN Remarks MEMO;"

Does that help?
 
Thank You,:) I figured it was simple, just couldn't put it together.
 

Users who are viewing this thread

Back
Top Bottom