Plsql

Hier ist ein einfaches und effektives PL/SQL-Beispiel, um eine große Menge von IDs im SELECT IN zu verarbeiten, indem die IDs in Chunks aufgeteilt werden. Der Code verwendet eine temporäre Tabelle oder eine Collection (z. B. PL/SQL-Tabelle) zum Zwischenspeichern der IDs. Beispiel: PL/SQL mit Chunks DECLARE — Große Menge an IDs als Beispiel IN_IDS SYS.ODCINUMBERLIST […]

Read more
PWD mit Bitbucket

Das Speichern von Passwörtern oder sensiblen Daten in einer Pipeline (wie Bitbucket Pipelines) erfordert einen sicheren Ansatz, um versehentliche Offenlegungen zu vermeiden. Der empfohlene Weg ist, diese Daten als Umgebungsvariablen zu speichern und sie in der Pipeline nur dort zu verwenden, wo sie benötigt werden. Wenn du Passwörter in eine properties-Datei schreiben möchtest, kannst du […]

Read more
REST JSF

Um aus einer JSF-Seite ein JSON-Objekt an einen REST-Endpunkt zu senden, kannst du JavaScript oder AJAX verwenden. Hier ist eine Schritt-für-Schritt-Anleitung: 1. Voraussetzungen • Ein REST-API-Endpunkt, der JSON-Daten akzeptiert. • Eine JSF-Seite mit Eingabefeldern, die Daten sammelt. • JavaScript für den HTTP-Request. 2. Beispielstruktur JSF-Seite mit Formular: 3. JavaScript zum Senden des JSON Du kannst […]

Read more
How to setup Tensorflow on MacBook Pro M1

this introduction is based on: https://betterdatascience.com/install-tensorflow-2-7-on-macbook-pro-m1-pro/ I’ll show you how to install TensorFlow 2.7 on MacBook Pro M1 Pro. Everything you’ll see will work on regular M1 and M1 Max chips, as long as it’s Apple Silicon. We’ll also verify TensorFlow was installed by training a simple neural network. Prerequisites You’ll need a couple of things installed […]

Read more
Lizenz- und Supportstrategie für Java

Auszüge aus Java Magazin 12.18  (Artikel: Startschuss für neue Features) Mit Java 11 [2] das erste Long-Term-Support-(LTS-)Release seit Java 8 fertig geworden. Mit Java 11 führt Oracle eine neue Lizenz- und Supportstrategie ein. Freie Updates für die letzte Long-Term-Support-Version 8 wird es ab Januar 2019 nicht mehr geben. Zudem ist ab Java 11 das Oracle JDK nur noch in der Entwicklung kostenlos […]

Read more
Setup a local test-environment for PL/SQL with utPLSQL

Preamble utPLSQL is a very versatile open source unit testing framework for Oracle PL/SQL. It allow for automated testing of the below listed structures of PL/SQL: Packages Functions Procedures Anything that can be execute or observed in PL/SQL such as: Table Default Values Table Triggers View Triggers Objects utPLSQL was originally developed by Steven Feuerstein and is […]

Read more
Agile approach in Softwarearchitecture: The base patterns

Requirements of Quality are often risky. Such decisions are normally expensive to revert. So this decisions often relevant for architecture. This article describe patterns for the identify, categories and maintenance requirements which are essential for Softwarearchitecture. This article base on the book „Vorgehensmuster für Softwarearchitektur“ written by Stefan Toth (embarc GmbH)  and published by the Carl Hanser Verlag […]

Read more
Requirements specification template

Volere is a collection of documents about the topic requirements engineering in the process of Softwaredevelopment. Populare are particularly the following document templates: Volere Requirements Specification Template Volere Atomic Requirement Template Engineering  also known as Snow Card Furthermore with the Requirements Process will recommend a process for finding and collect requirements. Since 2009 for a […]

Read more
A crib for Software Solution

You or Your Team is missing a compact overview about your existing Solution? You want describe  a new team member or a partner of cooperation the Softwarearchitecture of your system? Sourcecode is to much information and includes to much details? The crib for Software-Architecture support you in write down relevant aspects of your Softwarearchitecture in […]

Read more
Modularity Maturity Model

The Modularity Model was introduced by Dr Graham Charters at the OSGi Community Event 2011 (slides). It is an extension of the Capability Maturity Model, which was created as a result of research funded by the US Department of Defense and published in 1993. The Capability Maturity Model allows organizations or projects to measure their improvements […]

Read more