On one of the projects we use Oracle 11g database with Label Security enabled. Last week I had a problem with adding NOT NULL constraint to a column.
This query failed due to some NULL values allegedly being present:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER TABLE tbl$portfolio MODIFY seeded DEFAULT 0 NOT NULL; |
That came to me as a surprise as I was pretty sure there were no NULL values - this query returned zero:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT COUNT(*) FROM tbl$portfolio WHERE seeded IS NULL |
The problem was resolved by disabling Label Security policy temporarily:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exec SA_POLICY_ADMIN.DISABLE_TABLE_POLICY(policy_name => 'SEC_POLICY', schema_name => 'APP_OWNER', table_name => 'TBL$PORTFOLIO'); | |
alter table TBL$PORTFOLIO modify SEEDED default 0 not null; | |
exec SA_POLICY_ADMIN.ENABLE_TABLE_POLICY(policy_name => 'SEC_POLICY', schema_name => 'APP_OWNER', table_name => 'TBL$PORTFOLIO'); |
Brak komentarzy:
Prześlij komentarz