|
The open data type is probably not so good, at least as compared
to having chosen Unicode :-( Either way however, there is going to
be the problem that the data in the physical file eventually may not
be representable in an alternate logical view of the data; i.e.
create table original.filename ( a50 char(50) );ccsid 5035;
insert into original.filename values('This is 037 text');
alter table original.filename alter column a50 set data type char
create view alternate.filenameDennis Lovelady
( a50 ) as
( select cast(a50 as char(50) ccsid 37)
from original.filename )
;
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.