I recently stubmbled upon this website that hosts a publicly available Oracle RDBMS instance running Oracle v2.3.2, which according to this Wikipedia article is the first commercially available version of Oracle. This version is not written in C, but in PDP-11 assembly. The website also has the manuals available. At this time the company was called Relational Software Incorporated or RSI for short, which they later renamed to Oracle Systems Corporation and then to Oracle Corporation. Before this the company was called Software Development Laboratories (SDL). Let’s have a quick look at this and see how it compares with newer versions. This version uses “UFI”, the predecessor of SQL*Plus. Let’s first create a table SQL>CREATE TABLE T1 SQL>ID(NUMBER NONULL UNIQUE IMAGE), SQL>NAME(CHAR(20) NONULL) SQL>/ Table created. And let’s do the same with Oracle 26ai SQL> CREATE TABLE T1 ( 2 ID NUMBER PRIMARY KEY, 3 NAME CHAR(20) NOT NULL 4 ) 5 / Table created. ...
The new protocol dissector for X Protocol in MySQL was just merged to the master branch in Wireshark. To get it build Wireshark from the master branch or wait for the next release. This protocol is using Google Protobuf, which makes it much easier to work with than the regular MySQL protocol. See also: https://dev.mysql.com/doc/dev/mysql-server/latest/page_mysqlx_protocol.html If you like what Wireshark does, consider donating on https://wiresharkfoundation.org/donate/