Oracle VM

26.11.2007 at 13:26 (Oracle, VM)

Virtualization is the process of abstracting computing resources such that multiple operating system and application images can share a single physical server, bringing significant cost-of-ownership and manageability benefits. Through its Oracle VM product, Oracle offers scalable, low-cost server virtualization for heterogeneous applications.Available for x86 and x86_64

Useful links:

Permalink Kommentar schreiben

Oracle Grid Agent Deployment

17.10.2007 at 12:01 (Grid Control, HPUX, Oracle)

To deploy the Agents from the Grid it uses ssh/scp. On HPUX it searchs the scp binary in /usr/local/bin but the binary is in /usr/bin. So you have to create a link:

ln -s /usr/bin/scp /usr/local/bin/scp

In general if the SSH connection check part fails have a look at this logs and search for PROV errors or „not found“:$ORACLE_HOME/sysman/prov/agentpush/logs

Here an example for the bash binary which oracle search in another directory:

oracle:$ORACLE_HOME/oms10g/sysman/prov/agentpush/logs# grep found \
remoteInterfaces2007-10-18_02-46-32-PM.log
INFO: Remote id was found in REMOTE platforminfo.properties
INFO: Errstream [rnode node1]: ksh: /usr/local/bin/bash:  not found
The command ksh: /usr/local/bin/bash:  not found
The command ksh: /usr/local/bin/bash:  not found
INFO: Errstream [rnode node2]: ksh: /usr/local/bin/bash:  not found
The command ksh: /usr/local/bin/bash:  not found
The command ksh: /usr/local/bin/bash:  not found

so I have to create a link on the two target nodes:

ln -s /usr/bin/sh /usr/local/bin/bash

Or simply adapt this file with the correct path:

$ORACLE_HOME/oms10g/sysman/prov/resources/ssPaths_hpi.properties

Permalink Kommentar schreiben

Ubuntu 7.10 (Gutsy Gibbon)

11.10.2007 at 13:16 (Linux, Ubuntu)

Permalink Kommentar schreiben

Proxy FireFox

10.10.2007 at 10:47 (Firefox, Internet)

 ProxySel:The Proxy selection and processing utility is a Mozilla extension that let you select a proxy from a drop down menu….

Read more here

SwitchProxy here

Permalink Kommentar schreiben

JDK 6 Documentation

20.09.2007 at 10:46 (JAVA, JDK 6, Programming)

Here you can get the JDK 6 Documentation with a nice overview JRE, JDK and Java SE AP

Java at a Glance



Permalink Kommentar schreiben

Useful One-line Scripts for sed

14.09.2007 at 14:46 (Programming, sed)

Handy sed oneliners:

English     German

Update:

Return 1st Line
sed -n ‘1p’ file

Return all except 1st line
sed ‘1d’ file

Permalink Kommentar schreiben

Oracle 11g: The Top New Features for DBAs and Developers

05.09.2007 at 13:25 (11g, DBA, Linux, Oracle)

Permalink Kommentar schreiben

Online SQL Formatter

04.09.2007 at 10:00 (Oracle, PL/SQL)

With the online SQL Formatter you can easily format your SQL’s to a nice format.

Before

SELECT D.Dept_Name, AVG(Getdate()-DOB) FROM EMPLOYEE E
/*Comment now comes an inner join*/ INNER JOIN DEPARTMENT D ON
E.DEPT_ID=DEPT_ID GROUP BY DEPT_ID;

After

SELECT  D.Dept_Name,

        AVG(Getdate()-DOB)

FROM    EMPLOYEE E

        /*Comment now comes an inner join */

INNER JOIN DEPARTMENT D

ON      E.DEPT_ID=DEPT_ID

GROUP BY DEPT_ID;

You can also download the desktop version which requires JRE 1.5.

Update:
Another SQL and PL/SQL Formatter.

Permalink Kommentar schreiben

PartyPoker anywhere

22.08.2007 at 20:53 (Fun, Linux, Poker)

Until now you have to install wine on a linux box to play PartyPoker.

Steps

  • install wine
  • download & install partypoker
  • wine configuration –> win xp
  • execute „wine PartyGaming.exe -P=PartyPoker“
  • Play and win money ;)

Royal Flush

Now you can play it in a webbrowser on any box. Check out PartyPoker anywhere! Requirement JDK 1.4/1.5.

Permalink Kommentar schreiben

Could Linux become the dominant OS?

20.08.2007 at 20:09 (Linux)

A nice article about this subject you can read on theregister.

Here the topics:

  • Server dominance
  • The Microsoft threat and GPL 3.0
  • Linux on the desktop, eventually
  • The Linux bottom line

Read the article

Permalink Kommentar schreiben

« Vorherige Seite · Nächste Seite »