/* ===========================================================
Author: A. Vidhan Reddy
Role : Oracle Fusion Data Intelligence Developer
=========================================================== */
CREATE OR REPLACE PROCEDURE about_vidhan_reddy
IS
v_name VARCHAR2(100) := 'A. Vidhan Reddy';
v_education VARCHAR2(300) :=
'B.Tech in Computer Science Engineering (Honors), ' ||
'Raghu Engineering College | CGPA: 9.42';
v_current_role VARCHAR2(200) :=
'Programmer Analyst Trainee @ Cognizant Technology Solutions';
v_specialization VARCHAR2(400) :=
'Oracle Fusion Data Intelligence (FDI), ' ||
'Oracle Cloud Infrastructure โ Data Integration (OCI-DI), ' ||
'Oracle SQL & PL/SQL';
TYPE tech_stack_t IS TABLE OF VARCHAR2(100);
v_oracle_stack tech_stack_t := tech_stack_t(
'SQL', 'PL/SQL', 'FDI', 'OCI-DI', 'OBIEE', 'ODI Studio', 'OAC'
);
v_programming tech_stack_t := tech_stack_t(
'Python', 'JavaScript', 'HTML', 'CSS'
);
v_tools_concepts tech_stack_t := tech_stack_t(
'Git', 'Generative AI Tools', 'OOP', 'Cloud Analytics'
);
v_certifications tech_stack_t := tech_stack_t(
'OCI Foundations Associate',
'Oracle Fusion Data Intelligence โ Oracle University',
'Linux Unhatched โ Cisco Networking Academy & NDG',
'HTML, CSS, JavaScript, Python โ Codedex',
'SQL โ HackerRank'
);
v_interests VARCHAR2(300) :=
'Building scalable data-driven solutions, ' ||
'cloud analytics, continuous learning, ' ||
'solving real-world problems';
BEGIN
NULL; -- Profile initialized successfully
END about_vidhan_reddy;
/
Pinned Loading
-
QuoteGenerator
QuoteGenerator PublicA Quote Generator with a wonderful UI built using react with vite plugin
JavaScript
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


