Hi All,
This blog post will show you how to launch an OCI Compute Instance.
Once you log in to the OCI Cloud using your tenancy, click on compute on the top left side and then Instance as shown below.
Hi All,
This blog post will show you how to launch an OCI Compute Instance.
Once you log in to the OCI Cloud using your tenancy, click on compute on the top left side and then Instance as shown below.
Hi Everyone,
after creating the database link, I was trying to fetch record from the remote database server but receive the following error as below
ORA-02085: database link String connects to String
Solution:
ORA-02085: database link string connects to string
a database link connected to a database with a different name. The connection is rejected.
create a database link with the same name as the database it connects to or set global_names=false.
If the global_names is set to TRUE, then run the below command:
Alter system set global_names=FALSE scope=both;
then recreate the database link.
It worked for me.
Hope the Solution worked for you as well.
Thanks for reading
Shaik Ahmed Ali
Oracle Cloud provide a new set of databases as a service called the Autonomous. it is a part of database which can automate the DBA administration task such as creation, patching, upgrade, performance tuning, backups and daily maintenance task while the database is up and running.
Oracle Autonomous is a cloud database which uses machine learning to automate database management task traditionally perform by DBAs.
With Oracle Autonomous database, oracle makes it easy and quick for you to have a secure, fully managed, database service in oracle cloud.
In Oracle Cloud Infrastructure (OCI), Autonomous Database comes with 3 varieties of DB.
The Autonomous Database is revolutionizing database which fully automates the management of database lifecycle and enables you to pay less and ensure data safety when compared to traditional database.
You have auto indexing feature in oracle autonomous database which ensures you to provide a better execution plan to optimizer for executing the SQL by monitoring the application workloads and creating, maintaining the index automatically. Auto indexing is disabled by default in ADB.
To enable the auto indexing feature, use the below command:
EXEC DBMS_AUTO_INDEX.CONFIGURE('AUTO_INDEX_MODE','IMPLEMENT').
The Autonomous database is a self-driving, self-secure, self-tuning, self-repairing, and self-scaling.