Monday, September 15, 2008

How to find Oracle Application file versions

Here are the commands to find the file versions of server file types


Note:

  1. Before running the commands make sure you are in directory where the file for which you want to find is located. or you can explicitly specify complete path along with file name
  2. Some environments you many not find ident command


FORM

ident form.frm | grep Revision (Ex. ident POXPOMPO.frm | grep Revision)

strings -a form.frm | grep Revision (Ex. strings -a POXPOMPO.frm |grep Revision)


REPORT

ident report.rdf | grep Head (Ex. ident ARBARL.rdf | grep Header)

strings -a report.rdf | grep Head (Ex. strings -a ARBARL.rdf | grep Header)


No comments: