|
This works perfectly for all the integer columns in the row, but fails with
a cast error when it runs into a VARCHAR field.
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', S.PENDING_SECURITY_LEVEL),
('PASSWORD_LEVEL', S.PASSWORD_LEVEL),
('AUDITING_LEVEL', S.AUDITING_LEVEL),
('AUDIT_JOURNAL_RECEIVER', S.AUDIT_JOURNAL_RECEIVER)
) AS T(HEADING, COLUMN_VALUE);
--
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
<
https://community.ibm.com/community/user/datamanagement/viewdocument/pivoting-tables?CommunityKey=ea909850-39ea-4ac4-9512-8e2eb37ea09a&tab=librarydocuments
*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 related
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
athttps://archive.midrange.com/midrange-l.
Please contactsupport@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.