Skip to content

Commit febc7be

Browse files
authored
Create newtork-encryption-check.sql
1 parent a429801 commit febc7be

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

newtork-encryption-check.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- http://dba.stackexchange.com/questions/31847/verifying-oraclenet-network-encryption
2+
select a.sid,a.serial#, a.machine, a.username, a.osuser, b.osuser,
3+
b.AUTHENTICATION_TYPE, b.NETWORK_SERVICE_BANNER
4+
from v$session a, v$session_connect_info b
5+
where a.sid=b.sid and a.serial#=b.serial# order by a.username, a.machine;

0 commit comments

Comments
 (0)