Hi,
I need a sql which will provides me with a list of all the datastores and their configurations.
For example if I have following datastores in my repository:
DS1: Config_A, Config_B, Config_C
DS2: Config_D, Config_E
My query should return:
Datastore | Configuration | User | Database |
---|---|---|---|
DS1 | Config_A | User1 | DB1 |
DS1 | Config_B | User2 | DB1 |
DS1 | Config_C | User3 | DB1 |
DS2 | Config_D | User4 | DB2 |
DS2 | Config_E | User5 | DB2 |
Please help me out.
Thanks & Regards
Ishan