× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I don't think people are accepting of the Alias concept. I think they
want all or nothing. i5/os currently supports alias on column names,
table names, view names, and the like - you know, the stuff that the
"user" sees. Ok, so it doesn't support it on program names. Other than
Steve, who's that going to upset?

If you look at the common interface, used by both i5/os and SQL Server,
you'll see the longer names. For example, if I use
STRSQL

CREATE TABLE ROB.INNAGODDADAVIDA (
IRONBUTTERFLYROCKS CHAR(25),
HOWMUCHDOTHEYROCK BIGINT)

SELECT SUBSTR(TABLE_NAME,1,25) AS FILE,
SUBSTR(TABLE_SCHEMA,1,3) AS LIBRARY
FROM QSYS2.SYSTABLES WHERE
TABLE_NAME LIKE('INNA%')

....+....1....+....2....+....3....
FILE LIBRARY
INNAGODDADAVIDA ROB
******** End of data ********

SELECT substr(TABLE_NAME,1,25) as file,
substr(COLUMN_NAME,1,25) as field
FROM QSYS2.SYScolumns
WHERE TABLE_NAME = 'INNAGODDADAVIDA'

....+....1....+....2....+....3....+....4....+
FILE FIELD
INNAGODDADAVIDA IRONBUTTERFLYROCKS
INNAGODDADAVIDA HOWMUCHDOTHEYROCK
******** End of data ********

The people who claim that big objects are not currently supported will not
be happy until IBM has to change QUSLOBJ, DSPOBJD and every other
interface and/or API.

Rob Berendt

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.