Snap-in ID Numbers
-
Is there a way to have a report of all the snap-in ID numbers? They don’t show up during the export.
-
You can get it manually from MySQL through CLI.
mysql use fog select sID, sName from snapins;
-
@Wayne-Workman Works nicely.
-
select sID, sName from snapins INTO OUTFILE '/root/Snapins.txt';
Something like that.
Reference: http://www.tech-recipes.com/rx/1475/save-mysql-query-results-into-a-text-or-csv-file/