Search notes:

Oracle SQL function: DUMP

dump reveles an expression's
dump( expr [, fmt [, posStart [, length ]]] )
fmt is one of
8 Octal
10 Decimal
16 Hexadecimal
17 Print character if printable
select
   dump('abc' || chr(16)    ) d_def,
   dump('abc' || chr(16),  8) d__8,
   dump('abc' || chr(16), 10) d_10,
   dump('abc' || chr(16), 16) d_16,
   dump('abc' || chr(16), 17) d_17
from
   dual;
--
-- D_DEF                    D__8                        D_10                     D_16                     D_17                 
-- ------------------------ --------------------------- ------------------------ ------------------------ ---------------------
-- Typ=1 Len=4: 97,98,99,16 Typ=1 Len=4: 141,142,143,20 Typ=1 Len=4: 97,98,99,16 Typ=1 Len=4: 61,62,63,10 Typ=1 Len=4: a,b,c,^P

See also

sys_op_opnsize

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758203808, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/SQL/functions/misc/dump(67): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78