Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Accessing QSYS2.SYSCOLUMNS from iSeries

    Try using

    SELECT *

    FROM OPENQUERY(bisysb_systemcatalog , 'select table_schema, table_name, column_name,ordinal_position,

           data_type, length, numeric_scale, numeric_precision,

           is_nullable, has_default, column_default, ccsid,

           column_text

    from qsys2.syscolumns

    where table_name = 'AAGE200F'

             and table_schema = 'D500DATBQ'

    order by...

Viewing post 1 (of 2 total)