Mar 25, 2003 #1 jonoX Programmer Mar 13, 2003 11 IE I want to program a change to a table using alter table the field type is memo binary. if I use alter table ailib add column cimage M it produces a memo field not a memo binary
I want to program a change to a table using alter table the field type is memo binary. if I use alter table ailib add column cimage M it produces a memo field not a memo binary
Mar 25, 2003 1 #2 ramani Programmer Mar 15, 2001 4,336 AE Hi Jono ALTER TABLE myTable ADD COLUMN myMemo M NOCPTRANS ramani (Subramanian.G),FoxAcc, ramani_g@yahoo.com Upvote 0 Downvote
Hi Jono ALTER TABLE myTable ADD COLUMN myMemo M NOCPTRANS ramani (Subramanian.G),FoxAcc, ramani_g@yahoo.com
Mar 25, 2003 #3 casters Programmer Mar 24, 2003 50 IT Jono, try to use the following: alter table ailib add column cimage M NOCPTRANS you can add the parameter NOCPTRANS after all the fields that you want to be created as binary Upvote 0 Downvote
Jono, try to use the following: alter table ailib add column cimage M NOCPTRANS you can add the parameter NOCPTRANS after all the fields that you want to be created as binary