Product/components used and version/fix level:
ADABAS
Detailed explanation of the problem:
Hello, I appreciate some explanation about one curiosity related to STORE command.
In Oracle we have this feature below. Is there something similar in ADABAS? ( not system fields )
Oracle Default Value
A column can be given a default value using the DEFAULT keyword.
The DEFAULT keyword provides a default value to a column when the Oracle INSERT INTO statement does not provide a specific value.
The default value can be literal value, an expression, or a SQL Function, such as SYSDATE.
CREATE TABLE demo_tbl (
salary number(8,2) DEFAULT 9500,
hire_date DATE DEFAULT '01-JAN-2011' ,
birthdate DATE DEFAULT SYSDATE
)