Prior to the Oracle 12c version, droping an index was an offline process that put a lock on the original table in exclusive mode. Exclusive …
Read More »dbtut
BULK INSERT in SQL Server
With BULK INSERT you can upload text, csv data files to the database in any format. Users must have insert privileges in the database and …
Read More »How To Check All Session Information in Oracle
We often need to get information about existing sessions in databases. We can find the below details with the help of the following query. Which …
Read More »How To Use OPENROWSET in SQL Server
With OPENROWSET, you can access remote data using OLE DB. OPENROWSET is a system function as you will see below. With this method, we provide …
Read More »How To Drop a Database Link in Another Schema
If a user want to drop a DB link belonging to a schema in Oracle databases, it searches for that DB link under the schema …
Read More »Query Hints in SQL Server
What is Query Hint? You can change the execution plan of the query by adding the query hints to the end of the query. For …
Read More »Check When Password Was Last Changed in Oracle
The most recent password change date for users in the Oracle database is in the ptime field in the sys.user $ table. With a query …
Read More »Optimize for ad hoc workloads and Parameterization in SQL Server
In this article, we will examine what happens when we enable Optimize for ad hoc workloads and when we use parameterization. We will see what …
Read More »How To Test Multicast Between Oracle Rac Database Servers
Any problem with multicast traffic between Oracle RAC database servers can cause network heartbit problems between servers. In this case you need to see the …
Read More »How To Disable System Triggers in Oracle
In the database, it may sometimes be necessary to disable system triggers during operations such as java installation, downgrade, or upgrade. An error in a …
Read More »