मैं पोस्टग्रैज पर नया हूं (और सभी डेटाबेस जानकारी सिस्टम पर)। मैं अपने डेटाबेस पर sql स्क्रिप्ट का अनुसरण कर रहा हूं:
create table cities (
id serial primary key,
name text not null
);
create table reports (
id serial primary key,
cityid integer not null references cities(id),
reportdate date not null,
reporttext text not null
);
create user www with password 'www';
grant select on cities to www;
grant insert on cities to www;
grant delete on cities to www;
grant select on reports to www;
grant insert on reports to www;
grant delete on reports to www;
grant select on cities_id_seq to www;
grant insert on cities_id_seq to www;
grant delete on cities_id_seq to www;
grant select on reports_id_seq to www;
grant insert on reports_id_seq to www;
grant delete on reports_id_seq to www;
जब उपयोगकर्ता www, के रूप में:
insert into cities (name) values ('London');
मुझे निम्नलिखित त्रुटि मिलती है:
ERROR: permission denied for sequence cities_id_seq
मुझे लगता है कि समस्या सीरियल प्रकार के साथ है। यही कारण है कि मैं www के लिए * _id_seq के लिए चयन, सम्मिलित करता है और हटाता हूं। फिर भी यह मेरी समस्या को ठीक नहीं करता है। मैं क्या खो रहा हूँ?