Dear readers of our blog, we'd like to recommend you to visit the main page of our website, where you can learn about our product SQLS*Plus and its advantages.
 
SQLS*Plus - best SQL Server command line reporting and automation tool! SQLS*Plus is several orders of magnitude better than SQL Server sqlcmd and osql command line tools.
 

REQUEST COMPLIMENTARY SQLS*PLUS LICENCE

Enteros UpBeat offers a patented database performance management SaaS platform. It proactively identifies root causes of complex revenue-impacting database performance issues across a growing number of RDBMS, NoSQL, and deep/machine learning database platforms. We support Oracle, SQL Server, IBM DB2, MongoDB, Casandra, MySQL, Amazon Aurora, and other database systems.

Symbolic / string Oracle PL/SQL functions

5 August 2020

Symbolic Oracle functions

Symbolic Oracle functions

FunctionDescription
ASCIIThe Oracle/PLSQL ASCII function returns the numeric representation of the leftmost character of the string.
ASCIISTRThe Oracle/PLSQL ASCIISTR function converts a string of any character set to an ASCII string using the database character set.
CHRThe Oracle/PLSQL CHR function is the opposite of the ASCII function. CHR returns a character that is based on numeric code.
COMPOSEThe Oracle/PLSQL COMPOSE function returns the Unicode string.
CONCATThe Oracle/PLSQL CONCAT function allows two lines to be connected together.
THE CONCATENATION OPERATOR ||Oracle/PLSQL concatenation operator || allows to combine two or more lines together.
DUMPThe Oracle/PLSQL DUMP function returns a value of varchar2, which includes data type code, length in bytes, and the internal representation of the expression.
INITCAPThe Oracle/PLSQL INITCAP function sets the first character of each word in upper case, and the rest in lower case.
INSTRThe Oracle/PLSQL function INSTR returns the n-th occurrence of a substring in a string.
INSTR2The Oracle/PLSQL INSTR2 function returns substring occurrence in a string using UCS2 code points.
INSTR4The Oracle/PLSQL INSTR4 function returns substring occurrence in a string using UCS4 code points.
INSTRBThe Oracle/PLSQL INSTRB function returns substring occurrence in a string, bytes instead of characters.
INSTRCThe Oracle/PLSQL INSTRC function returns substring occurrence to a string using Unicode full characters.
LENGTHThe Oracle/PLSQL LENGTH function returns the length of the specified string.
LENGTH2The Oracle/PLSQL LENGTH2 function returns the length of the specified string using UCS2 code points.
LENGTH4Function In this tutorial you will learn that LENGTH4 returns the length of a specified string using UCS4 code points.
LENGTHBThe Oracle/PLSQL LENGTHB function returns the length of the specified string using bytes instead of characters.
LENGTHCThe Oracle/PLSQL LENGTHC function returns the length of the specified string using full Unicode characters.
LOWERThe Oracle/PLSQL LOWER function converts all characters in a specified string into lower case. If there are characters in the string that are not letters, they do not affect this function.
LPADThe Oracle/PLSQL LPAD function adds a certain set of characters from the left side of the string (at non-zero string1).
LTRIMThe Oracle/PLSQL LTRIM function removes all specified characters from the left side of the string.
NCHRThe Oracle/PLSQL NCHR function returns a character based on number_code in the national encoding.
REGEXP_INSTRFunction Oracle/PLSQL REGEXP_INSTR is an extension of function INSTR. It returns the regular expression template location in the string. This function, presented in Oracle 10g, will allow you to find a substring in a string using a regular expression pattern mapping.
REGEXP_LIKEThe Oracle condition REGEXP_LIKE allows regular expressions in the WHERE sentence in SELECT, INSERT, UPDATE or DELETE queries.
REGEXP_REPLACEThe function Oracle/PLSQL REGEXP_REPLACE is an extension of the function REPLACE. This function, introduced in Oracle 10g, allows you to replace a sequence of characters in a string with a different set of characters using regular expression pattern mapping.
REGEXP_SUBSTRFunction Oracle/PLSQL REGEXP_SUBSTR is an extension of function SUBSTR. This function, represented in Oracle 10g, allows you to extract substring from a string using regular expression pattern matching.
REPLACEThe Oracle/PLSQL REPLACE function replaces a sequence of characters in a string with another character set.
RPADThe Oracle/PLSQL RPAD function supplements a certain character set from the right side of the string (at non-zero string1).
RTRIMThe Oracle/PLSQL RTRIM function removes all specified characters from the right side of the string.
SOUNDEXThe Oracle/PLSQL SOUNDEX function returns the phonetic representation (as it sounds) of the string.
SUBSTRThe Oracle/PLSQL SUBSTR function allows extracting a substring from a string.
TO_CHARThe Oracle/PLSQL TO_CHAR function converts a number or date into a string.
TRANSLATEThe Oracle/PLSQL TRANSLATE function replaces the sequence of characters in a string with another character set. However, it replaces one character at a time.
For example, it replaces the first character in string_to_replace with the first character in replacement_string. Then the second character in string_to_replace with the second character in replacement_string will be replaced, and so on.
TRIMThe Oracle / PLSQL TRIM function removes all specified characters from the beginning or end of a string.
UPPERThe Oracle/PLSQL UPPER function converts all characters of a string into upper case. If there are characters in a string that are not letters, they do not affect this function.
VSIZEThe Oracle/PLSQL VSIZE function returns the length in bytes for the internal representation of the expression.

Introduction to PL/SQL functions in Oracle Database

 
Tags: , , , , ,

MORE NEWS

 

Preamble​​NoSql is not a replacement for SQL databases but is a valid alternative for many situations where standard SQL is not the best approach for...

Preamble​​MongoDB Conditional operators specify a condition to which the value of the document field shall correspond.Comparison Query Operators $eq...

5 Database management trends impacting database administrationIn the realm of database management systems, moreover half (52%) of your competitors feel...

The data type is defined as the type of data that any column or variable can store in MS SQL Server. What is the data type? When you create any table or...

Preamble​​MS SQL Server is a client-server architecture. MS SQL Server process starts with the client application sending a query.SQL Server accepts,...

First the basics: what is the master/slave?One database server (“master”) responds and can do anything. A lot of other database servers store copies of all...

Preamble​​Atom Hopper (based on Apache Abdera) for those who may not know is an open-source project sponsored by Rackspace. Today we will figure out how to...

Preamble​​MongoDB recently introduced its new aggregation structure. This structure provides a simpler solution for calculating aggregated values rather...

FlexibilityOne of the most advertised features of MongoDB is its flexibility.  Flexibility, however, is a double-edged sword. More flexibility means more...

Preamble​​SQLShell is a cross-platform command-line tool for SQL, similar to psql for PostgreSQL or MySQL command-line tool for MySQL.Why use it?If you...

Preamble​​Writing an application on top of the framework on top of the driver on top of the database is a bit like a game on the phone: you say “insert...

Preamble​​Oracle Coherence is a distributed cache that is functionally comparable with Memcached. In addition to the basic function of the API cache, it...

Preamble​​IBM pureXML, a proprietary XML database built on a relational mechanism (designed for puns) that offers both relational ( SQL / XML ) and...

  What is PostgreSQL array? In PostgreSQL we can define a column as an array of valid data types. The data type can be built-in, custom or enumerated....

Preamble​​If you are a Linux sysadmin or developer, there comes a time when you need to manage an Oracle database that can work in your environment.In this...

Preamble​​Starting with Microsoft SQL Server 2008, by default, the group of local administrators is no longer added to SQL Server administrators during the...