DUMP17 Mar 2025 | 1 min read DUMP is a String function of Oracle. This function returns the string datatype code, length in bytes and some internal representation of the given string. SyntaxParametersexpression: string or an expression for the result. return_format: it is optional. The return value format can be in one of the following values.
start_position: it is Optional. Starting position of the given expression. Length: it is optional. Length of the given expression ReturnThis function returns a VARCHAR2 value. Example 1![]() Example 2![]() Next TopicOracle String |
Oracle Function LENGTHC is a String function of Oracle. This function returns the size using Unicode complete characters from the given string. Syntax LENGTHC( string1 ) Parameters string1: string for getting length. Return This function returns a numeric value. Example 1 Select lengthc('oracle') from dual; Example 2 Select lengthc('javatpoint') from dual; TopicOracle String ...
1 min read
Oracle Function The is a String function of Oracle. This function returns a Soundex string which sounds almost same and have identical soundex strings. Syntax SOUNDEX(string1) Parameters String1 : string from getting soundex, which sounds exactly same Return It returns a string value. Example 1 SELECT SOUNDEX('javatpoint') FROM dual; Example 2 SELECT SOUNDEX ('oracle')...
1 min read
Oracle Function RTRIM(str) is a String function of Oracle. This function returns the string by removing given characters from the right side. Syntax RTRIM( string1 [, trim_string] ) Parameters string1 : string to be trimmed from right-hand side. trim_string : it is optional. It is the string to be removed from...
1 min read
Oracle Function RPAD is a String function of Oracle. This function returns the right-padded to the given length. Syntax RPAD( string1, padded_length [, pad_string] ) Parameters string1: string to be padded from the right. padded_length : length to be padded from the right. pad_string: it is optional. It is the string that...
1 min read
Oracle Funcion SUBSTR is a String function of Oracle. This function is used to extract the sub string from the given string. Syntax SUBSTR( string, start_position [, length ] ) Parameters String : string for getting sub string. start_position : strating position of the string. Length : it is optional. Length of...
1 min read
is a String function of Oracle. This function returns the numeric value of given character. It converts given string to character and then to ASCII string. Syntax (string) Parameters string: It is a string in any character set. Returns This function reruns a string value. Example 1 SELECT ('J Ä V Ä')...
1 min read
VSIZE is a String function of Oracle. The length function provides a byte count for provided expressions. Syntax VSIZE( expression ) Parameters Expression: It represents the input value against which memory size in bytes is tested. The input can be a string, a numeric value, or even a NULL...
3 min read
Oracle Function REGEXP_INSTR is a String function of Oracle. It is an extension of INSTR function. This function is used for pattern matching in a string. Syntax REGEXP_INSTR( string, pattern [, start_position [, nth_appearance [, return_option [, match_parameter [, sub_expression ] ] ] ] ] ) Parameters String: string...
4 min read
Oracle Function LENGTHB is a String function of Oracle. This function returns the size using bytes instead of characters from the given string. Syntax LENGTHB( string1 ) Parameters string1: string for getting the length. Return This function returns a numeric value. Example 1 Select lengthb('javatpoint') from dual; Example 2 Select lengthb('oracle') from dual; TopicOracle String ...
1 min read
Oracle Function LENGTH is a String function of Oracle. This function returns the size of the given string. Syntax LENGTH( string1 ) Parameters string1: string for getting the length. Return This function returns a numeric value. Example 1 Select length('oracle') from dual; Example 2 Select length('javatpoint') from dual; TopicOracle String ...
1 min read
We request you to subscribe our newsletter for upcoming updates.
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India