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