Menu

Tree [r19] /
 History

HTTPS access


File Date Author Commit
 bin 2010-12-04 ckindler [r1] init
 dist 2010-12-04 ckindler [r1] init
 sql 2011-02-14 ckindler [r8] bugfix for release 0.3
 src 2011-03-07 ckindler [r18] bugfix at clob buffer malloc size
 Licence.txt 2010-12-04 ckindler [r1] init
 Makefile 2011-03-29 ckindler [r19] small bugfix, array missed allocating 1 byte
 README.txt 2011-02-28 ckindler [r17]
 SConstruct 2011-03-29 ckindler [r19] small bugfix, array missed allocating 1 byte

Read Me

NOTE
1. Make sure you have ORACLE_HOME and ORACLE_SID and ORACLE_BIT 
enviroment variables are set.  

2. Be sure you have libtidy and libtidy-dev packages 
installed.

3. You have to know oracle sys user password


Install 
 (tested on Ubuntu 10.10 Server using Oracle XE
  and OpenSUSE 11 with Oracle 11gR2 64 Bit):
======
make (uses the scons build system, no "./configure" is needed)

sudo -E make install

Uninstall:
======
sudo -E make uninstall


Windows
=====
There is a 32bit windows binary in the dist folder. For 64 Bit use
mingw to compile it by yourself.

1.)Copy this File to your oracle library directory,
determinate the dir using this sql:

select 
  case  
    when (SELECT lower(platform_name) from v$database) like '%win%' then 
      substr(file_spec, 1, instr(file_spec, '\', -1, 1) -1) || '\'  /* windows */
    else 
      substr(file_spec, 1, instr(file_spec, '/', -1, 1) -1) || '/' /*s unix */
  end ORACLE_LIB_HOME
    from dba_libraries
    where library_name = 'DBMS_SUMADV_LIB';

2.) run install.sql as sys and pass full path (incl. 
filename) as parameter.

To uninstall run run uninstall.sql as sys and delete 
the dll file you copied earlyer.