Archive for Juni 20th, 2023

Dienstag, Juni 20th, 2023

Oracle Database – Performance by Example

Dienstag, Juni 20th, 2023

‚Bad‘ Performance by Example in the SQL Where Clause

WHERE (:v_name IS NULL OR last_name = :v_name)
AND (:v_odate IS NULL OR TO_CHAR(order_date,’DD-MM-YYYY‘) = :v_odate)
AND (:v_cid IS NULL OR cust_id = :v_cid)

Das Problem dabei ist das ‚OR‘ – auf Grund von ‚OR‘ für jede Spalte schätzt der Oracle cost-based optimizer (CBO) einerseits die Selektivität falsch ein und andererseits werden die Kosten für Indexzugriffe oft genug so teuer veranschlagt dass das Resultat ein Full Table Scan ist

‚Better‘ Performance by Example in the SQL Where Clause

WHERE last_name = NVL(:v_name,last_name)
AND order_date = TO_DATE(NVL(:v_odate,order_date),’DD-MM-YYYY‘)
AND cust_id = NVL(:v_cid,cust_id)

Bayerischer Staatskanzleiminister Dr. Florian Herrmann – Pressekonferenz nach der Kabinettssitzung am 20.06.2023

Dienstag, Juni 20th, 2023

Scality RING – is the storage foundation for your smart flexible cloud data architecture

Dienstag, Juni 20th, 2023

Scality RING – Digital transformation projects are changing how companies consume and store data many businesses have put vast amounts of unstructured data into legacy storage appliances creating silos that don’t scale or they’ve tried public cloud storage only to be shocked by the cost of access

Microsoft Windows 11 – create a portable installation

Dienstag, Juni 20th, 2023

Dienstag, Juni 20th, 2023

Mit dem bundesweiten Aktionstag am 20. Juni unter dem Titel „Alarmstufe Rot Krankenhäuser in Not“ – machen die Kliniken in Deutschland auf ihre verheerende wirtschaftliche Situation aufmerksam

Dienstag, Juni 20th, 2023

Protesttag ‚Krankenhäuser in Not‘ – das kann keiner auf Dauer durchhalten

Dienstag, Juni 20th, 2023