Huge downtime on forums.oracle.com today. After landing on an Error-500 page, I discovered a quick and neat overview of oracle patchsets, accessible without metalink account : http://www.oracle.com/technology/support/patches.htm Still waiting for 9.2.0.8 Solaris by the way, announced for 2006Q3, whatever this mean
Author: Laurent Schneider
sqlnet.wallet_override=true
I recently posted about Oracle Password Repository (OPR). I did get a comment from Andreas Piesk about something similar in Oracle, the wallet. Let’s do a quick test. First, I create a .sqlnet.ora in my home directory (I do not want to mess up the system-wide sqlnet.ora). $ cat /home/lsc/.sqlnet.ora SQLNET.WALLET_OVERRIDE=TRUE WALLET_LOCATION=(SOURCE=(METHOD=FILE)(METHOD_DATA=(DIRECTORY=/home/lsc))) I now create […]
select last rows
I just read about a query to retrieve last modification row of a date SQL> SELECT ora_rowscn FROM tab_test; ORA_ROWSCN ———- 351744 351744 351744 351744 351744 351744 6 rows selected. SQL> UPDATE tab_test SET valeur=valeur*1.1 WHERE col_id=1; 3 rows updated. SQL> commit; Commit complete SQL> SELECT ora_rowscn FROM tab_test: ORA_ROWSCN ———- 351744 351744 351744 371423 […]
Oracle OpenWorld 2006
I just registered to Oracle OpenWorld in October in San Francisco… Well, I know it is a long long long way to the west, but I will survive again, but this time I will avoid Delta Airlines, they refused to serve me a glass of wine last year in the plane! I am going to […]
OTN forums new release
I read forums.oracle.com frequently. I have read and answered thousands of questions there. Those days, they launched a new release, I do not know what the improvements are, but it is fairly unstable. Well, it has been worst in the past, but I keep getting We’re sorry, the server encountered an unexpected condition and timetouts […]
oas-console
oas-console Originally uploaded by laurentschneider. I installed OAS 10.1.3 on my notebook. Why? well, just to test if it is installable… and to justify my need of 2Gb of memory to my boss š Ok, SLES10 is not certified yet, Not even planned yet on metalink. But it will definitely be certified one day. The […]
Novell SLES10 Oracle Database
Novell SLES10 Oracle Database Originally uploaded by laurentschneider. The orarun package to be installed in SLES10
Oracle Password Repository
I checked this tool today : http://sourceforge.net/projects/opr This tool provide a simple way of not hardcoding passwords in shell scripts. Hardcoding passwords in shell scripts is a bad practice. The source code may be shared by many developers, may resides on unsecure servers (CVS), may be printed, etc… The passwords may change often too. This […]
Installation Oracle on Suse Linux Enterprise 10
How neat is Suse! I downloaded the DVD SLES10 on Novell.com. At the installation time, appart from Gnome, Development, X Window, there are a few new categories. One of them is called Oracle Database, and guess what, it installs all what I needed for Oracle. It creates an oracle account, with oinstall as primary group […]
cpu july 2006
I successfully applied patch 5225799 on my notebook SQL> select action,version,id,comments from dba_registry_history; ACTION VERSION ID COMMENTS —— ———- ——– ———- CPU 10.2.0.2.0 5225799 CPUJul2006
indian readers
I am aware indian and pakistan ISP did block access to blogspot blogs. There are some workaround available on google, for example to access my site from Pakistan, you may be able to use pkblogs http://www.pkblogs.com/laurentschneider I am quite sad about this, I used to have a lot of access from India in the past […]
bughouse tournament
I will be playing the The Geneva Bughouse Gathering 2006 tournament on Sat 19th August 2006. It is a variant of chess, very wild, played with four players in teams of two. The photo on my profile has been taken in the 2005 edition.
switzerland is out
at least we got one record in the world cup 2006. We are the first team in world cup history that got eliminated without receiving one goal š
sles10
Download of the pre-release version of Suse Linux Entreprise 10 is now available http://www.novell.com/linux/prerelease.html?sourceid=prerelease1
oracle magazine
I just received my Oracle Magazine yesterday. Blair Campbell from Oracle published my interview in the peer-to-peer columns. Go to otn.oracle.com/oramag
oracle partner workshop : database 10g
Last month I had an application server seminar I blogged in SOA . Yesterday it was database 10g day. First we had exactly the same talk about EMEA marketing, vision, partner and blabla for one hour. I did not expect to hear this comparison between Oracle Database and the C: prompt (origin) and fusion and […]
Germany we are coming
Germany we are coming Originally uploaded by laurentschneider. this cow is funny, it is quite exceptional for Switzerland to play in the World Cup !
exp/imp
EXP / IMP has a quite a lot of bugs and limitations. Today I had a trouble with a function based index first, generating ORA-942 table does not exist on import. I also had an error with AQ. I have a few invalid objects too : before exp, on source system (tru64/9.2.0.4) SQL> select count(*) […]
oracle 7 bin
oracle 7 bin Originally uploaded by laurentschneider. end of life of oracle 7 reference, cd and documentation
Oracle 7 Apero
Today we definitely shutdown our last productive Oracle7 database. Quite good news actually, I can now use set newp none, sqlplus “/ as sysdba” in all my scripts, svrmgrl is no longer needed (well, sometimes in 8i to do abort, but this is rare), and we garbage a hudge bin of reference manuals and cds! […]
mod_plsql
mod_plsql is an oracle module for Apache. Let’s do it from A to Z. I install HTTP server. In 10g, it is located on the companion cd and requires a separate oracle home. I copy my tnsnames.ora in COMPANIONHOME/network/admin Then, I configure COMPANIONHOME/Apache/modplsql/conf/dads.conf <Location /helloworld> SetHandler pls_handler PlsqlDatabaseUsername scott PlsqlDatabasePassword tiger PlsqlDatabaseConnectString LSC01 </Location> I […]
Michel Hascoƫt
Michel Hascoƫt Originally uploaded by laurentschneider. Michel Hascoƫt is Principal Consultant in Oracle France and gives workshop for SOA integration
Dessert Buffet at Hilton Hotel
Dessert Buffet at Hilton Hotel during the seminar Originally uploaded by laurentschneider. Taking energy for the second part of the seminar
SOA
The seminar yesterday focused on SOA, Service Oriented Architecture. Teacher Michel HascoĆ«t gave us an impressive demo with his notebook and JDeveloper; the SOA Workshop is usually taking four days, and for us he did it in one day. Ok, first ADF. With JDeveloper, he created with just a few clicks a connection to a […]
Technology Seminar Oracle Application Server 10gR2
I will attend the following OraclePartner Event : Oracle Application Server 10g Mai 11th, 2006 Hotel Hilton Zurich Airport
set my ORACLE_HOME, PATH, ORACLE_SID
I posted yesterday some of my aliases. My favorite (and most obfuscated) one is the following (for bash) eval $(awk -F: ‘/^[+a-zA-Z]/{l=tolower($1); sub(“^+”,””,l); print “alias “l”=47x=”$2″;PATH=${PATH//$ORACLE_HOME/$x}; ORACLE_HOME=$x; ORACLE_SID=”$1″; echo ORACLE_SID=”$1”; 47; “}’ /etc/oratab 2>/dev/null) I am setting my path and a default sid/home in my .profile [ -z “$ORACLE_SID” ] && export ORACLE_SID=LSC01 export ORACLE_HOME=$(sed […]
OCM preparation
The OCM 10g Upgrade is currently under development, and the OCM 10g exam should be available in May. How will I prepare for the 10g OCM? Part I, get confident with the environment : According to http://education.oracle.com/certification, the exam will be on redhat AS3 with DB 10.1.0.4. RHAS3 is not free. If I had not […]
Oracle Application Server
One month ago, I attended an Oracle Application Server course in Geneva, Switzerland. We were a group of 3 students and the 5-days lesson has been extremly interesting and intense. Starting at 9am, we used to finish at 5:30pm or later. At LC Systems, we have a few customers using OAS, that is why I […]
Ralph Bellinghausen
Ralph Bellinghausen Originally uploaded by laurentschneider. Oracle Application Server 10gR2 course in Oracle University, Geneva
oracle secure backup is out
Oracle Secure Backup is out. It enables the use encryption of backup on tapes, it can help you to save on media library costs (no need from a media manager any more). Well, I am curious how many customer will take the challenge to migrate from tivoli or netbackup to oracle secure backup…
dbms_sheduler jobs
I read in blog from Pete Finnigan about the potential security hole in DBMS_SCHEDULER package. DBMS_SCHEDULER as a new alternative for DBMS_JOB by Patrick Sinke Note that on some OS, like AIX5L / oracle 10.2.0.2, the job runs as ORACLE, not as NOBODY