In some cases, you may need to move the TEMP tablespace to another diskgroup if there is no space left in the ASM or because …
Read More »dbtut
How To Create a Restore Point On Oracle
With the flashback database we can use the restore point to return the database to a time in the past. For more detailed information …
Read More »sp_configure(Server-Level Configurations in SQL Server)
You can configure SQL Server with sp_configure at instance level. In this article I want to explain most important configurations in sp_configure. First we …
Read More »How to List PostgreSQL Users and Permission
In this article I will share a few scripts in postgres databases that I think will help you manage your users. The easiest way to …
Read More »How To Change PostgreSQL User Password
In PostgreSQL, when a user forgets a password, you can change the user’s password with an authorized user using the following script. [crayon-6740cdf425027538282876/] …
Read More »What is FLASBACK DATABASE And How To FLASHBACK
Using the FLASHBACK database, we can return the database to a time or a SCN number in the past. You can think of FLASHBACK …
Read More »How To Create a Linked Server To Connect To SQL Server From SQL Server
I have described to create linked server to connect to oracle from sql server in my article titled “How To Create a Linked Server …
Read More »How To Find PostgreSQL lib and bin Directories
We find the bin directory of PostgreSQL using the command below. [crayon-6740cdf42558e470010404/] You can see this directory in the white box in the screen …
Read More »How To Create a Linked Server To Connect To Oracle
In some cases, a database that resides on SQL Server may require the data to be retrieved from the Oracle database. Requirements First, …
Read More »How To Define a New Login To The Linked Server
Previously, I have described the definition of a linked server to connect to Oracle in my article titled “How To Create a Linked Server To …
Read More »