Neue Seiten

Aus Matts Wiki
Neue Seiten
Registrierte Benutzer ausblenden | Bots ausblenden | Weiterleitungen einblenden

21. Dezember 2025

  • 14:2014:20, 21. Dez. 2025 SQL Syntax for SAP BW in Oracle (Versionen | bearbeiten) [489 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article contains examples for different SQL statements on Oracle servers to read data from a SAP BW database. == String Operations == Get first five characters for all rows from specified column: SELECT DISTINCT SUBSTR("/BIC/ZCONTRNO",1,5) FROM "/BIC/AZCONTR0100" Return one column for all records from a table starting with a given character in a particular column: SELECT "/BIC/ZCONTRNO" FROM "/BIC/AZCONTR0100" WHERE "/BIC/ZCONTRNO" LIKE '7%' Kat…“) Markierung: Visuelle Bearbeitung
  • 13:5613:56, 21. Dez. 2025 Enable WebGUI (SAP) (Versionen | bearbeiten) [658 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „SAP WebGUI with transaction code <code>WEBGUI</code> needs its own WebGUI service to be activated. How to check if it is active: # T-Code: SICF # Go to /default_host/sap/bc/gui/sap/its # Double click on webgui # Check if next to the field "Service-Name: webcgui" it says "Service (active)" # Either go back to /default_host/sap/bc/gui/sap/its # Right click on webgui → Select test If this procedure does not work try following URL for the WebGUI with yo…“) Markierung: Visuelle Bearbeitung

8. Dezember 2025

  • 19:4319:43, 8. Dez. 2025 Geo Blocking with GeoIP on Apache (Debian) (Versionen | bearbeiten) [744 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This article holds my notes on how to implement geo blocking on Apache web server. It is based on '''mod_geoip''' module which itself is based on GeoIP database from Maxmind. According to Maxmind the GeoIP database format was retired in May 2022: https://github.com/maxmind/geoip-api-mod_geoip2 Maxmind recommends to switch to GeoIP2 database format, which can be accessed with Maxmind's own '''mod_maxminddb''' module according to: https://github.com/maxm…“) Markierung: Visuelle Bearbeitung

8. November 2025

29. September 2025

26. September 2025

  • 22:0622:06, 26. Sep. 2025 Awk Knowledge Base (Versionen | bearbeiten) [2.293 Bytes] Matt (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „This is my ongoing knowledge base for the <code>awk</code> command in Linux. == General Knowledge == Return n-th column, i.e. first one: awk '{print $n}' -f file.csv cat file.csv | awk '{print $n}' Return last column or n-th to last column: awk contains the constant <code>NF</code> which holds the number of columns, which allows printing the last or the second to last column: cat file.csv | awk '{print $NF}' # Last column cat file.csv | aw…“) Markierung: Visuelle Bearbeitung

20. September 2025

11. September 2025

7. September 2025