If you increase the value of the MAX_Connections parameter in the postgresql.conf file, you can get this error while starting the PostgreSQL service. You should …
Read More »dbtut
How To Get User’s Password With Hash On Oracle 12c
In this article, I will show you how to get a user’s create script in Oracle12c, with the hash of the password. We may …
Read More »How To Create Temp Table On SQL Server
In SQL Server, tsql code developers may occasionally want to temporarily keep records on a table. This can be done by creating a table …
Read More »ORA-28001: the password has expired
When the user password expires, we get the error “ORA-28001: the password has expired“. The expiration date of the user’s password is defined in …
Read More »How To Create CHECK CONSTRAINT
Check Constraint limits the values that can be entered into a column. Check Constraint works on Row basis. Allow Null Values to be inserted. …
Read More »ORA-01555 Snapshot Too Old / ORA-30036: unable to extend segment by string in undo tablespace
ORA-01555 Snapshot Too Old The “ORA-01555 Snapshot Too Old” error usually comes in long-running queries. In Oracle, previous changes of the data are retained in …
Read More »How To Send Email For Failed Logons
As a Database Administrator, we need to follow Failed Logons. And we need to warn users for unauthorized access attempts. Or if there is a …
Read More »Automatic Undo Management On Oracle
To run the database in automatic undo management mode, you must set undo_management to auto from the oracle startup parameters. You can use …
Read More »SQL Server Trigger Types
Trigger is used to trigger another event when an event occurs in the database server. There are 3 types of trigger. 1) DML(Data Manipulation Language) …
Read More »Cursor Usage In SQL Server
WHAT IS CURSOR? In SQL Server, the Cursor walks through the recordset, which is returned as a select result, to perform a transaction on each …
Read More »