Hi @Yves Degauquier
I didn't see this question come in, but I might be able to help.
There is an undocumented function on the UVMS called 'uniderby' that will give you the answers you are looking for.
Try this command from the UVMS CLI:
uniderby -q "select * from UNI_UV_NODES_INFO;"
You can pipe this to a text file, if necessary:
uniderby -q "select * from UNI_UV_NODES_INFO;" > nodes_info.txt
If you want to see what tables you can get information from in the UVMS DB, you can run this command to list all tables:
uniderby -q "show tables;"
I hope this helps!
Regards,