Monthly Archives: January 2024

Behind the ORA-02020 Error: A Deep Dive into Database Link Troubleshooting.

This blog is intended for DBA’s who have error while using a database links.Let’s work on a journey to decode, troubleshoot, and over the challenge posed by the ORA-02020 error. Issue: Error While Fetching data against a database link, got below error.ORA-02020: Too Many Database Links In Use Sql>select sysdate from dual@Daatbase_link5; * ERROR at line 1: ORA-02020: too many database links in use CAUSE & SOLUTION: n open_links parameter control, the number of database links each session can use without closing it. n If you access a database link in a session, then the link remains open until you close the session. Check the below parameter: SQL> show parameter open_link NAME TYPE VALUE ———————————— ———– —————————— open_links integer 4 open_links_per_instance integer 4 Here open_links is set to a session can access only 4 open database links in that session.When the open db_link connection reaches the limit(open_links), it throws ORA-02020: too many database links in use. Solution:1 n  Close the open db_link connections n  Increase the open_links parameter (bounce required) Let’s reproduce this error. SQL> select sysdate from dual@Database_link1; SYSDATE ——— 30-JUL-17 SQL> select sysdate from dual@Database_link2; SYSDATE ——— 30-JUL-17 SQL> select sysdate from dual@Database_link3;…

Read More

Create users and assign access in DynamoDB

Introduction: Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. When working with DynamoDB, creating users and assigning access rights is…

Read More

Steps to backup Dynamo DB

Introduction: DynamoDB, Amazon’s managed NoSQL database service, is a scalable and highly available solution for storing and retrieving data. Despite its robust infrastructure, it is essential to implement regular backups…

Read More

Steps to migrate Non-container Database to Container Pluggable Database

Steps to migrate Non-container Database to Container Pluggable Database Introduction: This document is intended for DBA’s who need to know how to migrate the Non-container database to container PDB. This…

Read More

AWS certificate Import in OCI

AWS certificate Import in OCI Introduction: This document is intended for DBA’s who need to know how to import AWS certificates into Oracle Cloud Infrastructure (OCI) databases. This brief walkthrough…

Read More

What are the logs and their location in MYSQL

What are the logs and their location in MYSQL Introduction:- MySQL logs are very important to manage database roles in monitoring, troubleshooting, and maintaining the health of a MySQL database…

Read More

User Management in MYSQL

User Management in MYSQL Introduction:- Effective user management is a critical aspect of MySQL database administration. Creating users and assigning access in MySQL involves creating, configuring, and maintaining user accounts…

Read More

Unifying Your OCI Monitoring with Service Connector and Logging Analytics

Introduction: In the fast-paced world of cloud computing, effective monitoring and management of resources are crucial for maintaining optimal performance and ensuring a seamless user experience. Oracle Cloud Infrastructure (OCI)…

Read More

Understanding and Setting Up OCI Alarms with Topic-Based Notifications

Introduction In the ever-changing world of cloud computing, ensuring your resources are working well is important. Oracle Cloud Infrastructure (OCI) has a cool way to keep an eye on things…

Read More

Deploying plugin on OEM

                              Deploying plugin on Oracle Enterprise Manager (OEM 13c) Introduction Greetings! This blog is all about deploying Oracle E-business suite (EBS) plugins on OEM and is your go-to guide for…

Read More