Jani Hur
Jani Hur
I think commit 780c0fd57ec83d40ea511f2fce171c1ea378ae34 (`start_date` command line option) introduced a bug that broke `commit_begin` command line option. ``` python def getlogrange(defaultrange = 'HEAD', end_only = True): commit_range = getcommitrange(defaultrange, end_only)...
Implements the following truth table where nulls are equal: ``` A B RESULT ---- ---- ------ NULL NULL TRUE NULL 1 FALSE 1 1 TRUE 1 2 FALSE ``` Demonstration...
I suggest a string append subprogram that silently will truncate too long strings. This is usually wanted in reporting and logging scope. Usage example: ``` plsql declare v_str varchar2(5); begin...
The functions are mainly useful for logging. Example: ``` plsql v_foo := 42; -- returns a string: '(v_foo = 42)' kvn('v_foo', v_foo); kv('v_foo', v_foo); v_bar := null; -- returns a...
I'm writing Ansible provisioner (see #148) and run into inconsistency issues in the Oracle configuration scripts. E.g. ``` ACCEPT new_hr_pass CHAR PROMPT 'Please enter a password for the hr schema:...
This might be related to issue #52, but I'm not sure thought. I'm using sbt (sbt run) where the following code snippet works as expected (JSON from/to case class conversion...
TKL asks SYS password, see http://www.turnkeylinux.org/docs/inithooks, then: ``` bash /etc/init.d/oracle-xe configure responseFile=/root/bin/xe.rsp >> xe-install.log ```
For some reason $ORACLE_HOME/bin is not in path - add it to path. Add rlwrap and alias sqlplus='rlwrap sqlplus'
**Description:** For any non-trivial application I'd prefer encapsulating the data mapping functions and records to their own namespaces (i.e. modules). The Data Mapper doesn't support setting the visibility but that...