I have a table where all columns are auto-populated whenever an insertion happens:
CREATE TABLE … ( ItemID INT NOT NULL IDENTITY(…), DateC
Use the DEFAULT VALUES option:
DEFAULT VALUES
INSERT INTO IndentitySpecification DEFAULT VALUES;