-1

I have to check what all plugins are deployed in my all the environments of OIM. I can do MDS export to check the same.

But I need a quicker solution to do the same.

Is there a SQL query to check the same?

Chaitanya K
  • 1,827
  • 4
  • 32
  • 67

1 Answers1

-1

Try using following SQL:

select name,zipid from plugins;
Chaitanya K
  • 1,827
  • 4
  • 32
  • 67