I have created an oracle table with this command: create Table MyTable(Nr Integer not null, Name VARCHAR(50), CONSTRAINT PK_MyTable Primary key(Nr)) tablespace USERS storage (initial 4K next 4K minextents 2 maxextents 50 pctincrease 0);
Then I tried to get the constraints with this command: SELECT * FROM user_constraints where TABLE_NAME = 'MyTable';
But the select only returns an empty result? What did I wrong? Or can this happen because of insufficient permissions?
Thanks