Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
docs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
docs
Commits
9dd2a2b9
Commit
9dd2a2b9
authored
1 year ago
by
Yaroslav Dynnikov
Browse files
Options
Downloads
Patches
Plain Diff
access_control.md: revise tables_access
parent
585c9f6e
No related branches found
Branches containing commit
No related tags found
1 merge request
!382
access_control.md: address formal requirements
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/tutorial/access_control.md
+12
-15
12 additions, 15 deletions
docs/tutorial/access_control.md
with
12 additions
and
15 deletions
docs/tutorial/access_control.md
+
12
−
15
View file @
9dd2a2b9
...
...
@@ -392,26 +392,23 @@ REVOKE <role name> FROM <grantee>
удаление, чтение.
-->
В Picodata доступно создание и удаление таблиц. Над таблицами можно
совершать операции чтения и записи. Для ограничения доступа к операциям
с таблицами в Picodata доступны привилегии
`CREATE`
,
`DROP`
,
`READ`
,
`WRITE`
и
`ALTER`
. Все привилегии (кроме
`CREATE`
) могут быть выданы на
конкретную таблицу или на все таблицы сразу. Привилегия
`CREATE`
может быть
выдана только глобально.
Picodata позволяет задавать разрешение пользователям и процедурам
выполнять следующие операции в отношении таблиц БД: создание,
модификация, удаление, чтение.
Выдача привилегий осуществляется командой
`GRANT`
. На все таблицы:
Для наделения пользователя и созданных им процедур указанными
привилегиями используйте SQL-команду
[
GRANT
](
../reference/sql/grant.md
)
:
<!-- Keep in sync with #db_user -->
```
sql
GRANT
<
priv
>
TABLE
TO
<
grantee
>
```
На конкретную таблицу:
```
sql
GRANT
<
priv
>
ON
TABLE
<
table
name
>
TO
<
grantee
>
GRANT
CREATE
TABLE
TO
<
grantee
>
GRANT
ALTER
ON
TABLE
<
table
name
>
TO
<
grantee
>
GRANT
DROP
ON
TABLE
<
table
name
>
TO
<
grantee
>
GRANT
READ
ON
TABLE
<
table
name
>
TO
<
grantee
>
```
Отозвать выданные привилегии можно при помощи команды
`REVOKE`
:
Отозвать привилегию можно SQL-командой
[
REVOKE
](
../reference/sql/revoke.md
)
:
```
sql
REVOKE
<
priv
>
ON
TABLE
<
table
name
>
FROM
<
grantee
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment