With CTE we can generate recursive queries. We can create a code block and use it over and over again. In this article, I …
Read More »How To Create a Materialized View On PostgreSQL
By using Materialized Views in PostgreSQL, you can access data faster by physically holding the data in the view. I will go over an example …
Read More »Oracle Redo Log And Archive Log
Oracle uses Redo Logs and Archive Logs to ensure that the data written to the database will not be lost once it has been written …
Read More »Oracle Background Processes
The most important two components of Oracle Instance are SGA and Background Processes. Each Oracle Database process on the operating system is responsible for one …
Read More »How To Create a View On PostgreSQL
In PostgreSQL, views are logical tables. By turning queries into views we can use complex queries with a simple select statement. For example, if …
Read More »ORA-00600: internal error code, arguments: [kpoal8-1]
Problem: When attempting to pull data from sql server with db link in Oracle database, ORA-600 error occurs. Reason: Setting the cursor_sharing parameter to force …
Read More »ORA-04052: error occured when looking up remote object
When using dblink in Oracle 11.2.04, we get ORA-04052 error when we want to create an object with the query result from dblink. To …
Read More »When Running Linked Server Created For Oracle, SQL Server Service Crashes. Error Code:0xc0000374
I have already mentioned how to create a linked server that will connect to Oracle in the article named “How To Create a Linked …
Read More »How To Change The Remote Login Password For The Linked Server
When you create a linked server to connect to Oracle, you need to put an oracle user into the linked server. Before reading this …
Read More »How To Create Stored Procedure,Function On PostgreSQL
Stored Procedure and Function concepts in PostgreSQL are not the same as in other relational databases. Functions are used like stored procedures. In some …
Read More »