Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

memo binary can you program this? 1

Status
Not open for further replies.

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

 
Hi Jono

ALTER TABLE myTable ADD COLUMN myMemo M NOCPTRANS

:)
ramani :)
(Subramanian.G),FoxAcc, ramani_g@yahoo.com

 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top