Article

Another FID Finder

Author Info

3 July 2007 - 1:46am
Submitted by: ecl2

article
Reads:

1017

Score:
0
0
 
Comments:

0

Problem

Getting a list of the FIDs associated with users ...

Solution

Another way to get a FID list is to use the gwcheck.log file generated by using the Audit feature, and then the DOS Find command to search for lines containing the phrase \user. For example,

find /I "\user" gwcheck.log | more

will find those lines, and the "more" option will display them one page at a time. This can also be done with the grep command in Linux.

Here is a sample result:

Audit report for user (Larry) on database GW001\GWPO:\po05\ofuser\userxxo.db
Audit report for user (Moe) on database GW001\GWPO:\po05\ofuser\useryir.db
Audit report for user (Curly) on database GW001\GWPO:\po05\ofuser\useryx4.db


Author Info

3 July 2007 - 1:46am
Submitted by: ecl2




User Comments

© 2009 Novell, Inc. All Rights Reserved.