Hilary Forbes <[EMAIL PROTECTED]> writes: > I have an existing table suppliers and I have created a new user > 'hilary'<br><br> > REVOKE ALL on TABLE suppliers FROM hilary;<br><br> > now login as hilary<br> > SELECT * from suppliers;<br> > and I get all the records!!!<br><br>
Most likely there's been a grant of (at least) select privilege to PUBLIC. You'll need to revoke that if you don't want every user to have that privilege implicitly. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend