Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 8 of 8 total
Thread Unmanageable Field Conversion for String to Memo
Wed, Mar 28 2007 4:06 PMPermanent Link

Dave Harrison
I'm using DBSys 4.25 to alter a String(30) to Memo and I'm getting the
error message "Unmanageable Field Conversion for field "abc"...

Why can't it convert a String(30) to memo?

TIA
Dave
Thu, Mar 29 2007 3:14 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Dave


I have no idea but why not use a script something like

ALTER TABLE xx ADD COLUMN memofield MEMO;
UPDATE xx SET memofield = stringfield;
ALTER TABLE xx DROP COLUMN stringfield;



Roy Lambert
Thu, Mar 29 2007 6:09 AMPermanent Link

"Jose Eduardo Helminsky"
Roy

The thing is not another way to do the task but if it is a bug, Tim will fix
it for us.

Eduardo

Thu, Mar 29 2007 6:37 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Dave,

<< I'm using DBSys 4.25 to alter a String(30) to Memo and I'm getting the
error message "Unmanageable Field Conversion for field "abc"...

Why can't it convert a String(30) to memo? >>

It simply can't - DBISAM has never been able to convert BLOB types to
non-BLOB types in an alter.

--
Tim Young
Elevate Software
www.elevatesoft.com

Thu, Mar 29 2007 6:39 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Jose


Agreed, but sometimes you need to do the job as well Smiley

Roy Lambert
Thu, Mar 29 2007 7:34 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Tim

>It simply can't - DBISAM has never been able to convert BLOB types to
>non-BLOB types in an alter.


Err he's trying to alter a non-blob to a blob. Just thought I'd mention it.

Roy Lambert
Thu, Mar 29 2007 12:20 PMPermanent Link

"Jose Eduardo Helminsky"
Roy

Ok, agreed.
Developers can wait but customer canNOT.

Eduardo

Fri, Mar 30 2007 10:37 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Roy,

<< Err he's trying to alter a non-blob to a blob. Just thought I'd mention
it. >>

Same thing - I forgot to add "and vice-versa".

--
Tim Young
Elevate Software
www.elevatesoft.com

Image