Estimating with Python
It is relatively easy to do an estimate with a Python script. This is due to the fact that Python works with matrices and such matrices can be used as…
It is relatively easy to do an estimate with a Python script. This is due to the fact that Python works with matrices and such matrices can be used as…
Python seems to be a very convenient way to transfer data to and fro Oracle. It has capabilities to set up a connection and it seems quite capable to transfer…
I have written a very small python programme that follows the mapper / reducer sequence. This works as a replacement of a more complicated set of Java programmes that might…
I have three little Oracle statements that I us quite often. I realise I use these statements in most programmes I write. But at the same time, I often forget…
I now have a project where I need to write the content of an XML file into an Oracle table. The idea is actually quite simple. An XML file might…
One may retrieve the version of Oracle with a simple command: “select * from v$version;”. One may then see that the Oracle instance is a 64 bit version. In my…
One could create reports within the OBIEE sphere with the analytics. Another possibility is to use the BI Publisher. This option has several advantages. One advantage is that one choose…
In many environment, we have a situation whereby a file must be transmitted via a script from one server to another. Assume we have a linux environment where Bash is…
Loading XML into Oracle might require some SQLLDR code. Of course, the standard insert is a possibility, but this might be slow if many XML files are to be loaded.…
As a first example on how to read an XML file, I show how an XML file can be read with a PLSQL programme. The logic is quite simple. We…