hi
I am creating Schema using following sql commands with SYSTEM as user
Create Schema Live2;
CREATE COLUMN TABLE "Connections" (
"memberIdFrom" INTEGER NOT NULL,
"memberIdTo" INTEGER NOT NULL,
PRIMARY KEY ("memberIdFrom","memberIdTo")
);
Then I goto
Security-->users-->SYSTEM-->object privileges
there is not schema Live2 there
When I add LIVE2 then it's privileges are set to CREATE ANY only
Why this is happening?
I think by default user should have all privileges.
If i try to assign privileges then error exception occurs that Granter and Grantee are identical.