Skip to content

Raspberry PI – Notes

raspberry pi 4 4g model b (cortex-a72) USB Keyboard & Mouse power supply for raspberry pi (and potentially a plastic case) micro sd card (64G), with adapter so that it can be connected to laptop… 

Oracle – SQL – demo deadlock

create table t (processed_flag varchar(1)); create bitmap index t_idx on t(processed_flag); From Tom Kyte “Expert Oracle Database Architecture – 3rd Edition” insert into t values (‘N’); declare pragma autonomous_transaction; begin insert into t values (‘N’);… 

Mini Keepass – Database File from iPhone to PC

Move keepass Database File from iPhone to PC tap Share icon (square/arrow) at bottom centre select “copy to (Google) Drive” save it somewhere on the drive In Google Drive, find the file and tap three… 

Oracle – Monitor TEMP Tablespace

Monitor TEMP Tablespace with a DBMS_SCHEDULER job I was faced with a situation in which a process (Oracle pl/sql procedure within a package, scheduled outside Oracle in the evenings) was exhausting the TEMP tablespace. In…