Archive for März, 2022

Chausson X550 – Perfekt für Städtetrips

Montag, März 14th, 2022

Landkreis Erding (Stand 14 März 2022) – so verteilen sich die Coronavirus Patienten

Montag, März 14th, 2022

… 17mal in St.Wolfgang neu

heise online – kurz informiert vom 14.03.2022

Montag, März 14th, 2022

Oracle Automated Workload Repository (AWR) Report – the easy way to generate an report from from the SQL*Plus command line

Montag, März 14th, 2022
SQL>@$ORACLE_HOME/rdbms/admin/awrrpt.sql

DietPi 8.2 – neue Kubernetes-Distribution MicroK8s K3s Korrekturen Docker-Compose v2 und mehr

Montag, März 14th, 2022

Proof Wood – Schukokupplung auf starre Leitung

Montag, März 14th, 2022

Microsoft 365 – making documents accessible

Montag, März 14th, 2022

Proof Wood – 5 Fehler die kein Elektriker machen darf

Montag, März 14th, 2022

Klinikum Ingolstadt – mit einer erweiterten Geschäftsführung soll das Klinikum eine bundesweite Vorreiterrolle einnehmen

Montag, März 14th, 2022

   Die Bereiche Personal und Organisation führt künftig Nicolai Kranz und Jochen Bocklet die Bereiche Finanzen und Infrastruktur – Andreas Tiete der für eine längere Übergangsphase das Klinikum allein geleitet hat verantwortet Medizin und Pflege

GL.iNet Mango GL-MT300N-V2 – connection site-to-site with WireGuard

Montag, März 14th, 2022

Banana Pi BPI-M1 – how to update an S3-compatible object storage server with MinIO on Armbian Bullseye

Montag, März 14th, 2022
root@rpi-iot-jsho-cam-02:~# ./mc admin update myminio
Server `myminio` updated successfully from 2022-02-18T01:50:10Z to 2022-02-24T22 -12-01Z
root@rpi-iot-jsho-cam-02:~#
root@rpi-iot-jsho-cam-02:~# wget https://dl.minio.io/client/mc/release/linux-arm/mc
–2022-02-26 09:43:49– https://dl.minio.io/client/mc/release/linux-arm/mc
Resolving dl.minio.io (dl.minio.io)… 138.68.11.125, 178.128.69.202
Connecting to dl.minio.io (dl.minio.io)|138.68.11.125|:443… connected.
HTTP request sent, awaiting response… 200 OK
Length: 20381696 (19M) [application/octet-stream]
Saving to: ‘mc’
mc 100%[================================================================================>] 19.44M 5.28MB/s in 4.0s
2022-02-26 09:43:54 (4.84 MB/s) – ‘mc’ saved [20381696/20381696]
root@rpi-iot-jsho-cam-02:~#
root@rpi-iot-jsho-cam-02:~# chmod +x ./mc
root@rpi-iot-jsho-cam-02:~# 

root@rpi-iot-jsho-cam-02:~# ./mc admin update myminio
Server `myminio` updated successfully from 2022-02-26T02:54:46Z to 2022-03-05T06 -32-39Z
root@rpi-iot-jsho-cam-02:~#
root@rpi-iot-jsho-cam-02:~# ./mc admin update myminio
Server `myminio` updated successfully from 2022-03-05T06:32:39Z to 2022-03-11T23-57-45Z
root@rpi-iot-jsho-cam-02:~#

Montag, März 14th, 2022

Montag, März 14th, 2022

Montag, März 14th, 2022

Oracle Database – find sessions consuming lot of CPU

Montag, März 14th, 2022

   Oracle Database – use below query to find the sessions using a lot of CPU

col program form a30 heading „Program“
col CPUMins form 99990 heading „CPU in Mins“
select rownum as rank, a.*
from (
SELECT v.sid, program, v.value / (100 * 60) CPUMins
FROM v$statname s , v$sesstat v, v$session sess
WHERE s.name = ‚CPU used by this session‘
and sess.sid = v.sid
and v.statistic#=s.statistic#
and v.value>0
ORDER BY v.value DESC) a
where rownum < 11;