Skip to content

Commit 73c8c68

Browse files
committed
Client info
1 parent 6f67d05 commit 73c8c68

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

oracle/dev/client_info.sql

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
-- set
2+
exec DBMS_APPLICATION_INFO.SET_CLIENT_INFO('some client string');
3+
4+
DECLARE
5+
client_info V$SESSION.CLIENT_INFO%TYPE;
6+
BEGIN
7+
-- read
8+
DBMS_APPLICATION_INFO.SET_CLIENT_INFO(client_info);
9+
10+
-- do stuff
11+
-- ...
12+
END;
13+
/

0 commit comments

Comments
 (0)