Count Number of Characters in a String in Oracle SQL
The SQL example is given below to count number of character occurrences in a string in Oracle. You can more customize the SQL as per your requirement.[code type=”SQL”]SELECT replace(a_string, ‘ ‘,...
View ArticleHow to Update / Change Google Search Results for Your Website
Sometime happens that you posted a blog for a particular topic but you put the title which is not that relevant and after publishing the blog post you realize that you made a mistake and then you...
View ArticleSQL Query Example to Read Data from XML in Oracle
Below is the example of SQL query to read / extract data from XML in Oracle. You can query any XML easily by providing its namespace clause and the path information through SQL query. Suppose you have...
View ArticleConvert Oracle Form to Apex Using frmf2xml Utility
If you want to use your Oracle Form’s functionality in Oracle Apex application then you need to convert first Oracle Form into XML using frmf2xml utility in Oracle Forms 11g and then you need to...
View ArticleOracle Joins With Examples
Examples are given below to describe Oracle Joins using new syntax. Which is very easy to understand and very good in SQL query readability. Because if query is larger and having too many tables with...
View ArticleOracle Bulk Collect Example Using Cursor Rowtype Type Object
In this post I am giving an example to perform an insert into using Oracle Bulk Collect and FORALL command. Created a PL SQL function which will take data from EMP table using a cursor then creates...
View ArticleSelect Bulk Collect into Oracle Example
In the previous blog post I have given the example to use Oracle Bulk Collect Using Cursor Rowtype Type Object. Which first creates the cursor then type object of cursor type and then open the cursor,...
View ArticleHow to Insert a Long String into CLOB Data Type in Oracle
A simple example is given below to insert a long string into CLOB data type in Oracle. You can not insert data directly into CLOB data type, you have to use Empty_Clob() function with returning clause...
View ArticleBlogger Introduced New Themes in 2017
It’s a good news for bloggers who are using Blogger platform for their blogs that Blogger introduced many beautiful themes on 20th March 2017. These themes are fully responsive and SEO friendly with...
View ArticleHow to Pass XML as a Parameter to Stored Procedure in Oracle
Suppose you have a stored procedure in Oracle database which is using XML as parameter to process the data and you want to execute that stored procedure with XML parameter. For this case below is the...
View Article