Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Query to fetch Connection Attributes

RCreddy
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 As Solution and give Kudos to help others facing similar issue.