views:

68

answers:

2

I'm digging into Ejabberd but I can't find a way to inspect its Mnesia tables. Is there something like the mysql shell to inspect tables?

A: 

Here is tle list of mysql clients:

http://dev.mysql.com/doc/refman/5.0/en/programs-client.html

danatel
I want to inspect Mnesia tables, not MySQL :-)
Tommy
+6  A: 

You may use the Table Visualizer, in module tv.

It can help examine ets tables and mnesia tables. You can simply start it on any connected node, with:

 tv:start().
tonio