I have a table with 4 columns (SCENARIO, YEAR, PERIOD, INSERT_DTS). I have created the table as below:
create or replace TABLE TEST_DB.STG_TEST.HFM_STG (
SCENARIO VARCHAR(50),
YEAR VARCHAR(4),
PERIOD VARCHAR(3),
INSERT_DTS TIMESTAMP DEFUALT CURRENT_TIMEstamp()
);
when I tried to copy the data from a text file into Snowflake using Copy Activity I get the below ERROR message - "Number of columns in file (3) does not match that of the corresponding table (4)"
Any solution to overcome this issue, as column INSERT_DTS supposed to be a default value ?

