donderdag 28 mei 2009

View table info in Oracle

select * from dba_tables

View queries in Oracle

select * from v$sql

maandag 25 mei 2009

Triangle

A = 0.5 * (b * h)

Circle

d = 2 * r
C = 2 * pi * r
A = pi * r^2

donderdag 14 mei 2009

Linux symbolic link

ln -s [source] [target]

woensdag 13 mei 2009

Parse date in batch file

@For /F "tokens=2,3,4 delims=/ " %%A in ('Date /t') do @(
Set Month=%%A
Set Day=%%B
Set Year=%%C
)

@echo DAY = %Day%
@echo Month = %Month%
@echo Year = %Year%

donderdag 7 mei 2009

window.Open

Window names cannot contain spaces in "window.open" scripts for IE

woensdag 6 mei 2009

MySQL string replace

select replace([column], 'replace_this', 'with_that') from [table]