Share via

Technical resoource availability

Gláucio Bastos 26 Reputation points
2021-06-16T22:31:29.487+00:00

I want to create a read-only database for each record only once appending and never changed, including transactions log resource. All to guarantee integrity for third parties with authorized access. Can I do that on Azure?

Azure SQL Database
0 comments No comments

Answer accepted by question author

Alberto Morillo 35,506 Reputation points MVP Volunteer Moderator
2021-06-17T04:38:52.533+00:00

But you just need to create a normal database and give users only INSERT and SELECT permissions on all tables (the whole database)

GRANT INSERT, SELECT  TO SomeUser

or you can specify on which tables.

GRANT INSERT ON YourTable TO SomeUser

You can also deny all users to delete/update data on all tables

REVOKE UPDATE, DELETE TO abc;

Was this answer helpful?

1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.