Storing your Oracle Reports in the database

Marcos Claver
0 0
Read Time:32 Second

One can come up with several reasons to store your Oracle Reports output. Especially in cases where it needed to prove to authorities that the document you delivered was not manipulated by the end user.
Consider a pharmaceutical customer, they will need to apply to FDA regulation 21CFR11. Or perhaps even better, to prove some end user did manipulate the document.
The following document describes two options to store an Oracle Report as a Blob in the database.
The first requires only PL/SQL the second option uses the Oracle Pluggable destination functionality available from OracleAS Reports Server 9i and requires the pluggable destination Jar file.

Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
0 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %
Next Post

Integrating Ant and Checkstyle

The Open Source Java code checker Checkstyle can be easily used by Ant to check your Java code. This is an excerpt from an Ant build.xml file using the Sun Java coding checks: <property name="checkstyle.home" location="..."/> <taskdef resource="checkstyletask.properties" classpath="${checkstyle.home}/checkstyle-all-3.5.jar"/> <target name="checkstyle"> <checkstyle config="${checkstyle.home}/sun_checks.xml" failOnViolation="false" classpathref="classpath"> <fileset dir="${src.dir}" includes="**/*.java"/> </checkstyle> </target> […]
%d bloggers like this: