Sunday, January 29, 2012

Sauce bearnaise

I know it's not related to Oracle i any way but i-ve been asked to post a recipi for sauce Bearnaise so here it goes in danish

1 portion til 4 voksne

150 gram blødt saltet smør i mindre tern,
6 æggeblommer
1 deciliter kylling-, kalve- eller grønstags-suppe
salt
frisk estragon.
2 til tre spsk bearnaise essens

alle ingredienserne kommes i en tykbundet gryde og stilles på kogeplande.
tænd for kogeplande på 3/4 styrke.

pisk vedvarende i gryden, og blive ved med at pisk til saucen har den velkendte
legerende konsistens. juster smagen med essensen og salt/peber.

Hvis saucen får for meget varme så skillerne. man kan rede den ved at tage den af varmen og tilsætte en spsk koldt vand også piske den op igen, men det kommer an på hvor skildt saucen er.

Omkring bearnaise essens så kan man med fordel lave sin essens selv(1 dl købe essens koster næste 30 kr). se evt denne opskrift

Thursday, February 11, 2010

back to designer 6i

I've started in a new workplace where i'm developing oracle forms applications using designer 6i.
I've used this tool in the past, and i'm happy to say that i'm glad to be back. It still amases me how productive you can be in this tool as a developer, sad that it's a stale product, no new features there from big O.

i'll be happy to hear from anyone who's used designer in the past, and who's moved on to other highly productive tools out there.

Thursday, January 14, 2010

simple full export/import of 11g database

The following script will make the nessecary database object for making a full backup set of a oracle 11g database on a windows machine.

log in as sys

create a directory object pointing to the direktory where the backup set is to be created

Create directory expdp_dir as  'C:\Oracle\backupset';

grant the nessecary priviliges to the system user

Grant read,write on directory expdp_dir to system;

finally from the command prompt

expdp system/manager DIRECTORY=expdp_dir DUMPFILE=expfull_DB.dmp FULL=y LOGFILE=expfull_DB.log

thats it!, two files expfull_DB.dmp and expfull_DB.log in the c:\oracle\backupset directory.

if you only want to backup a schema then use the following from the command prompt

C:\>expdp scott/toger DIRECTORY=expdp_dir DUMPFILE=scott_exp.dmp SCHEMAS=scott LOGFILE=scott_imp.log

Importing a backup set i equally simple

from the command prompt

impdp system/manager DIRECTORY=expdp_dir DUMPFILE=expfull_DB.dmp FULL=y LOGFILE=impfull_DB.log

and for a single schema

impdp scott/tiger DIRECTORY=expdp_dir DUMPFILE=scott_exp.dmp
SCHEMAS=scott LOGFILE=scott_imp.log

Monday, May 19, 2008

My first Blog ever

Hi all, this is my first blog ever.
My intension with this blog is to share my experiences with oracle development tools, and methodology using oracle tools.

The subjects will change as the projects i'm working on change.