|
Hi Jim,
At first I thought it defines COLUMN_VALUE based on the first value,
e.g. S.SECURITY_LEVEL, so I tried wrapping it in VARCHAR(). It didn't
help. So I wrapped them all in VARCHAR() and that worked:
select HEADING, COLUMN_VALUE
from qsys2.security_info s,
lateral(values
('SECURITY_LEVEL', VARCHAR(S.SECURITY_LEVEL)),
('PENDING_SECURITY_LEVEL', VARCHAR(S.PENDING_SECURITY_LEVEL)),
('PASSWORD_LEVEL', VARCHAR(S.PASSWORD_LEVEL)),
('AUDITING_LEVEL', VARCHAR(S.AUDITING_LEVEL)),
('AUDIT_JOURNAL_RECEIVER', VARCHAR(S.AUDIT_JOURNAL_RECEIVER))
) AS T(HEADING, COLUMN_VALUE) ;
I was testing on PUB400, and S.PENDING_SECURITY_LEVEL was null, which
may or may not have anything to do with how it defines COLUMN_VALUE.
--
*Peter Dow* /
Dow Software Services, Inc.
909 793-9050
petercdow@xxxxxxxxx
pdow@xxxxxxxxxxxxxx /
On 8/16/2024 7:43 AM, Jim Oberholtzer wrote:
This works perfectly for all the integer columns in the row, but failswith
a cast error when it runs into a VARCHAR field.S.PENDING_SECURITY_LEVEL),
I suspect the problem is COLUMN_VALUE is getting defined as an integer,
what I don't know is how to make it a VARCHAR when needed.
This is where my limits of SQL come blazing out. Suggestions?
select HEADING, COLUMN_VALUE
from qsys2.security_info s,
lateral(values ('SECURITY_LEVEL', S.SECURITY_LEVEL),
('PENDING_SECURITY_LEVEL',
('PASSWORD_LEVEL', S.PASSWORD_LEVEL),S.AUDIT_JOURNAL_RECEIVER)
('AUDITING_LEVEL', S.AUDITING_LEVEL),
('AUDIT_JOURNAL_RECEIVER',
) AS T(HEADING, COLUMN_VALUE);https://community.ibm.com/community/user/datamanagement/viewdocument/pivoting-tables?CommunityKey=ea909850-39ea-4ac4-9512-8e2eb37ea09a&tab=librarydocuments
--
Jim Oberholtzer
Chief Technical Architect
Agile Technology Architects
On Thu, Aug 15, 2024 at 1:16 PM Rob Berendt<robertowenberendt@xxxxxxxxx>
wrote:
*-- Search for unpivot at*
*--
https://community.ibm.com/community/user/datamanagement/viewdocument/pivoting-tables?CommunityKey=ea909850-39ea-4ac4-9512-8e2eb37ea09a&tab=librarydocuments<
related*select HEADING, COLUMN_VALUE
from qsys2.security_info s,
lateral(values ('SECURITY_LEVEL', S.SECURITY_LEVEL),
('PENDING_SECURITY_LEVEL',
S.PENDING_SECURITY_LEVEL),
('PASSWORD_LEVEL', S.PASSWORD_LEVEL)
) AS T(HEADING, COLUMN_VALUE);
Results:
SECURITY_LEVEL redacted
PENDING_SECURITY_LEVEL
PASSWORD_LEVEL redacted
On Thu, Aug 15, 2024 at 11:59 AM Jim Oberholtzer <
midrangel@xxxxxxxxxxxxxxxxx> wrote:
Given the incredibly simple SQL statement :as
SELECT * FROM QSYS2.SECURITY_INFO ;
Is there a way to get the results which include many columns to show up
a list as opposed to one very wide row? (from SQL Scripts in ACS)list
--
Jim Oberholtzer
Chief Technical Architect
Agile Technology Architects
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
To post a message email:MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:https://lists.midrange.com/mailman/listinfo/midrange-l
or email:MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
athttps://archive.midrange.com/midrange-l.
Please contactsupport@xxxxxxxxxxxxxxxxxxxx for any subscription
listquestions.--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
relatedTo post a message email:MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:https://lists.midrange.com/mailman/listinfo/midrange-l
or email:MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
athttps://archive.midrange.com/midrange-l.
Please contactsupport@xxxxxxxxxxxxxxxxxxxx for any subscription
--questions.
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.
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.