How to create a non nullable dummy column in Netezza View. In the metadata of the view that column should show as notnull.
CREATE OR REPLACE VIEW [VIEW_NAME] AS SELECT CAST('01/01/9999' AS DATE) EFFV_DT;
For the above statement the view is creating properly but the metadata of the EFFV_DT column is showing as NULLABLE. But i want that as NOT NULLABLE.
Thanks