Skip to main content

Career Accomplishments in 2022


May 2023 be the best year of your life. May you find success, happiness and everything your heart desires. Wishing you and your loved ones a very Happy New Year 2023!

In 2022, I earned a number of professional achievements that I would like to share with you.

I) Certifications (3)

1) Earned Oracle Machine Learning using Autonomous Database 2021 credential

2) Earned Oracle Autonomous Database Cloud 2021 Certified Specialist credential

3) Earned Oracle Cloud Infrastructure 2022 Certified Foundations Associate Credential

II) Honors & Awards (6)

1) Joined India Oracle APEX User Group (INOAUG) as Regional Leader, Chennai

2) Awarded Member of the Month by Oracle APEX Community

3) Promoted to Director of Training & Special Projects of INOAUG

4) Awarded as an Oracle ACE Pro 

5) My Technical Blog is Listed in Top 25 Oracle APEX Blogs and Websites to Follow in 2022

III) Trainings & Workshops (7)

1) Organized and Trained 129 Students and 5 Staff Members on Oracle APEX at National Engineering College, Kovilpatti, Tamil Nadu, India

2) Organized and Trained 77 Students on Oracle APEX at P.S.R Engineering College, Sivakasi, Tamil Nadu, India

3) Conducted a One Day Workshop on Oracle APEX at Manonmanium Sundaranar University, Tirunelveli, Tamil Nadu, India


4) Conducted a One Day Workshop on Oracle APEX at National Engineering College, Kovilpatti, Tamil Nadu, India

5) Conducted a One Day Workshop on Oracle APEX at K.R. College of Arts and Science, Kovilpatti, Tamil Nadu, India

6) Conducted a One Day Workshop on Oracle APEX at P.S.R Engineering College, Sivakasi, Tamil Nadu, India



7) Organized and Trained 123 Candidates on Oracle APEX at Manonmanium Sundaranar University, Tirunelveli, Tamil Nadu, India

IV) Technical Presentations & Seminars

12 presentations on Oracle APEX were delivered at various national & international conferences, colleges, seminars & user groups throughout the world.

V) Technical Blog Posts

Write, Write, Write and finally I have written 12 technical posts in 2022

A huge thank you goes out to everyone who follows me, likes my posts, and shares my content. I really appreciate your support and enjoy engaging with you.

Blog Posts: Orclking

VI) LinkedIn Followers

I am excited to share that my LinkedIn profile recently hit the 5000 followers mark. I look forward to welcoming new followers and continuing to grow my LinkedIn base.


Comments

Post a Comment

Popular posts from this blog

Printing Page Numbers in RTF Template [Oracle BI Publisher]

Here I am giving an example to print the page numbers dynamically in the RTF (Rich Text Format) template. Step 1:  Go to page footer and copy and paste the below script. Page |  <?fo:page-number?>  of  <?fo:page-number-citation:xdofo:lastpage-joinseq?> <fo:page-number> :   This is the object, which is used to represent the current page-number. <?fo:page-number-citation:xdofo:lastpage-joinseq?> :  This is the syntax, which is used to represent the total number of pages. Step 2:  Load the XML and preview the result. Output: That's it. References: fo:page-number Printing Page Number Code in Oracle XMLP RTF Template

Generating the report with APEX_DATA_EXPORT

With the APEX_DATA_EXPORT package, you are able to export data from Oracle Application Express in the following file types: PDF, XLSX, HTML, CSV, XML, and JSON. Step 1: Create a table and populate it with some sample records. CREATE TABLE emp   (     empno        NUMBER,     first_name   VARCHAR2(240),     last_name    VARCHAR2(240),     mgr          NUMBER,     deptno       NUMBER,     sal          NUMBER,     created_date TIMESTAMP (6),     comm         NUMBER,     hiredate     DATE,     JOB          VARCHAR2(240),     ename        VARCHAR2(240),     PRIMARY KEY (empno) USING INDEX ENABLE   ); /    INSERT INTO emp (empno, first_name, last_name, mgr,                   deptno, sal, created_date)         VALUES                 (1, 'Larry', 'Ellison', ,                  10, 5000, LOCALTIMESTAMP);   INSERT INTO emp (empno, first_name, last_name, mgr,                   deptno, sal, created_date)         VALUES                 (2, 'Juan', 'Juan', 1,  

Save Selected Interactive Grid Records into a Collection - Oracle APEX

Here I am giving an example to save selected interactive grid records into a oracle apex collection. Step 1: Create a new blank page. Note: Mine was page 20. You will need to update reference to " P20 " with your page number if it's different. Step 2: Create a new interactive grid report region to the page using below query. Set Static Id "EmpDetails" to the region. SELECT  *     FROM   ( SELECT  emp . empno ,                emp . ename ,                emp . JOB ,                dept . dname department ,                dept . loc  LOCATION ,                mgr . ename  manager ,                emp . hiredate ,                 nvl ( emp . sal , 0 )  salary ,                 nvl ( emp . comm , 0 )  commission            FROM  eba_demo_chart_emp emp ,                eba_demo_chart_dept dept ,                eba_demo_chart_emp mgr           WHERE  emp . deptno = dept . deptno             AND  emp . mgr      = mgr . empno  ( + )           ORDER   BY  emp . ename