Hi all,
Does anyone know about a tool to generate a human-readable report from a (delta) df? We'd like to be able to provide a document that lists changes to our databases in a more readable format. Off course it's possible to write such a thing ourselves, but if it allready exists...
- Martin
Hi,
I have not seen such a report, which would be generated based on df.
But there are two variants, which generates a report based on the connected database.
1.
2.
May be based on them, you can create your own variant for DF (delta).
I hope this helps.
Regards,
Valeriy
Very basic but useful delete all lines that start with 2 spaces and delete all empty lines.
On linux you can do this with following one-liner
sed -e '/^ /d' -e '/^ *$/d' < delta.df
Hi,
Very useful indeed. May already be enough.
Useless answer if you don't have some Java knowledge, but this class ( github.com/.../DumpFileReleaseDescriptor.java ) has been used to generate a text file which then could be automatically imported in Atlassian Confluence to display a recap of all changes in DF files.
Much more complex than Carl's solution however :-)