× 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.



James,

Others have suggested to you how to specify both the short system name and
the long sql name for columns. Table names seem to be a tad bit trickier.
Near as I can find it involves using a data area, as shown at:
http://publib.boulder.ibm.com/infocenter/iseries/v7r1m0/topic/db2/rbafzhctabl.htm#rbafzhctabl__rbafznamrul

I tried using the Generate SQL function of iNav on a table created from
CREATE TABLE ROB/REALLYLONGNAME
(MYBIGHONKINGCOLUMN CHAR (5 ))
rcdfmt rcd001

It generated this:
CREATE TABLE ROB.REALLYLONGNAME (
MYBIGHONKINGCOLUMN FOR COLUMN MYBIG00001 CHAR(5) CCSID 37 DEFAULT
NULL )

RCDFMT RCD001 ;

GRANT ALTER , DELETE , INSERT , REFERENCES , SELECT , UPDATE
ON ROB.REALLYLONGNAME TO PROGRAMMER WITH GRANT OPTION ;

GRANT DELETE , INSERT , SELECT , UPDATE
ON ROB.REALLYLONGNAME TO PUBLIC ;

I don't see anything in there for the long table name.

DSPFD on the above file shows:
DSPFD Command Input
File . . . . . . . . . . . . . . . . . . . : FILE REALL00001
Library . . . . . . . . . . . . . . . . . : ROB
Data Base File Attributes
Externally described file . . . . . . . . . : Yes
SQL file type . . . . . . . . . . . . . . . : TABLE
Alternative file name . . . . . . . . . . . . :
REALLYLONGNAME
Record Format List
Record Format Level
Format Fields Length Identifier
RCD001 1 5 272752C6C0EE4
Member Description
Member . . . . . . . . . . . . . . . . . . : MBR REALL00001

Generate Data Definition Language (QSQGNDDL) generates the SQL data
definition language statements required to recreate a database object.
http://publib.boulder.ibm.com/infocenter/iseries/v7r1m0/topic/apis/qsqgnddl.htm
I don't suspect it will work any better than iNav. I suspect iNav uses
this API.

I see Jim Oberholtzer gave you a fine example of how to do this.


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.