Problem: A column 'Names' contains following values:
'Nitin'
'Ashok'
'Sanjeev'
Write a SQL to break these values into individual characters.
Solution:
select names,
substr(names,level,1) ch
from
(
select 'Nitin' names from dual
union all
select 'Ashok' names from dual
union all
select 'Sanjeev' names from dual
)
connect by prior names=names
and level<=length(names)
AND prior DBMS_RANDOM.STRING ('p',10) IS NOT NULL
To TLS or to NNE? Postquantum hints the former
-
When encrypting Network traffic to your database server, there are two
different approaches. One is to use Oracle Native Encryption by setting
SQLNET.ENCRY...
1 week ago
No comments:
Post a Comment