Preamble
The Oracle/PLSQL DUMP function returns a value of varchar2, which includes data type code, length in bytes, and the internal representation of the expression.
Oracle/PLSQL DUMP function syntax
DUMP( expression, [return_format_id], [start_position_id], [length_id] )
Parameters and function arguments
- expression – expression for analysis.
- return_format_id – is not obligatory. It defines the format of the returned value. This parameter can be any of the following values:
Meaning | Description |
8 | octal notation |
10 | decimal notation |
16 | hexadecimal notation |
17 | single characters |
1008 | octal notation with the character set name |
1010 | decimal notation with the character set name |
1016 | hexadecimal notation with the character set name |
- start_position and length are optional. They determine which part of the internal view will be displayed. If these parameters are not specified, the DUMP function will show the entire internal representation of the decimal number system.
The DUMP function returns VARCHAR2.
If return_format, start_position and length parameters are omitted, the DUMP function will return the entire internal representation in decimal notation.
The DUMP function can be used in the following versions of Oracle/PLSQL
Oracle 12c, Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i
Let’s look at some examples of the DUMP function and learn how to use the DUMP function in Oracle PLSQL.
SQL> SELECT DUMP('abc') FROM DUAL;
--Result: Typ=96 Len=3: 97.98.99
SQL> SELECT DUMP('abc', 10) FROM DUAL;
--Result: Typ=96 Len=3: 97.98.99
SQL> SELECT DUMP('abc', 16) FROM DUAL;
--Result: Typ=96 Len=3: 61,62,63.
SQL> SELECT DUMP('abc', 1016) FROM DUAL;
--Result: Typ=96 Len=3 CharacterSet=CL8MSWIN1251: 61.62.63
SQL> SELECT DUMP('abc', 1017) FROM DUAL;
--Result: Typ=96 Len=3 CharacterSet=CL8MSWIN1251: a,b,c
About Enteros
Enteros offers a patented database performance management SaaS platform. It proactively identifies root causes of complex business-impacting database scalability and performance issues across a growing number of clouds, RDBMS, NoSQL, and machine learning database platforms.
The views expressed on this blog are those of the author and do not necessarily reflect the opinions of Enteros Inc. This blog may contain links to the content of third-party sites. By providing such links, Enteros Inc. does not adopt, guarantee, approve, or endorse the information, views, or products available on such sites.
Are you interested in writing for Enteros’ Blog? Please send us a pitch!
RELATED POSTS
Harnessing Generative AI for Smarter Database Performance Management in the BFSI Sector—Powered by Enteros
- 18 September 2025
- Database Performance Management
Introduction The Banking, Financial Services, and Insurance (BFSI) sector is the backbone of the global economy. With millions of transactions occurring every second, the industry relies heavily on the ability to store, process, and analyze massive volumes of data. From real-time fraud detection and credit risk assessments to claims processing and regulatory compliance, databases play … Continue reading “Harnessing Generative AI for Smarter Database Performance Management in the BFSI Sector—Powered by Enteros”
Driving RevOps Efficiency in the Healthcare Sector with Enteros: AIops-Powered Database Performance Optimization
Introduction The healthcare sector is under immense pressure to modernize operations while delivering high-quality, cost-effective care. Hospitals, research institutions, and pharmaceutical companies are generating massive amounts of data from electronic health records (EHRs), diagnostic imaging, genomic sequencing, clinical trials, IoT-enabled medical devices, and insurance claim systems. Managing and optimizing these vast databases is critical not … Continue reading “Driving RevOps Efficiency in the Healthcare Sector with Enteros: AIops-Powered Database Performance Optimization”
Black Friday e-commerce crashes from DB latency
Introduction Black Friday is the biggest day of the year for e-commerce. Shoppers flood online stores, hunting for deals, and businesses prepare for record-breaking traffic. But too often, excitement turns into frustration as websites freeze, checkouts fail, and carts vanish. Behind the scenes, it’s not just the servers struggling—it’s the databases. When databases can’t keep … Continue reading “Black Friday e-commerce crashes from DB latency”
Space research simulations collapsing from DB overload
Introduction Space research depends on simulations that push technology to its limits. From modeling rocket launches to predicting orbital dynamics, these simulations generate massive streams of data. But increasingly, the bottleneck isn’t computing power—it’s the databases that store and process this information. When databases fail, simulations stall, research timelines slip, and millions in funding are … Continue reading “Space research simulations collapsing from DB overload”