Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Paste
P218
(An Untitled Masterwork)
Active
Public
Actions
Authored by
stwalkerster
on Aug 17 2018, 8:10 AM.
Edit Paste
Archive Paste
View Raw File
Subscribe
Mute Notifications
Tags
None
Referenced Files
F88466:
Aug 17 2018, 8:10 AM
2018-08-17 08:10:51 (UTC+0)
Subscribers
None
CREATE
OR
REPLACE
trg_login
AFTER
LOGON
ON
DATABASE
IS
v_firstpart
VARCHAR2
(
30
);
BEGIN
v_firstpart
:
=
SUBSTR
(
CURRENT_USER
(),
1
,
INSTR
(
CURRENT_USER
(),
'_'
));
EXECUTE
IMMEDIATE
'ALTER SESSION SET ROLE = '
||
v_firstpart
||
'_ROLE IDENTIFIED BY bread'
;
END
;
Event Timeline
stwalkerster
created this paste.
Aug 17 2018, 8:10 AM
2018-08-17 08:10:51 (UTC+0)
stwalkerster
created this object with visibility "Public (No Login Required)".
Log In to Comment