Query to fetch Connection Attributes

CRashmitha
New Contributor
New Contributor

Hi Team,

Can someone help me the query to fecth the connection jsons. I mean to say is we have a requirement to fetch the jsons which are present in the connection.

Regards,

Rashmitha

3 REPLIES 3

nimitdave
Saviynt Employee
Saviynt Employee

The related tables are not exposed in the data analyzer.

But you can use the transport --> export feature to do so.

Enakshi
Saviynt Employee
Saviynt Employee

Run the below query from analytics to fetch the required data -

select extcon.CONNECTIONNAME, extconattval.ATTRIBUTEKEY, extconattval.ATTRIBUTEVALUE
from externalconnection extcon, externalconnattvalue extconattval
where extcon.EXTERNALCONNECTIONKEY = extconattval.CONNECTIONTYPE

sk
All-Star
All-Star

Yeah you can either use export feature to capture the JSONs or you can run below query using analytics

select ec.connectionname, ecv.ATTRIBUTEKEY, ecv.ATTRIBUTEVALUE from externalconnection ec inner join externalconnattvalue ecv on ec.externalconnectionkey=ecv.CONNECTIONTYPE


Regards,
Saathvik
If this reply answered your question, please Accept it As Solution to help others who may have a similar problem.