We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e818ae commit 6dafb5cCopy full SHA for 6dafb5c
.github/workflows/sql/oracle.sql
@@ -1,20 +1,33 @@
1
WHENEVER SQLERROR EXIT SQL.SQLCODE
2
3
alter session set container = freepdb1;
4
+
5
create user k identified by k;
6
7
grant
8
create user
9
to k;
10
11
12
drop user
13
14
15
16
create session
17
to k with admin option;
18
19
grant resource to k with admin option;
20
21
grant connect to k with admin option;
22
23
24
unlimited tablespace
25
26
27
+grant select on v_$session to myuser with grant option
28
29
+grant
30
+ alter system
31
+to myuser
32
33
exit;
0 commit comments