Can’t connect to MySQL server on localhost

In mysql, Can’t connect to MySQL server on localhost error occurs when mysql is unable to connect to localhost due to the connection issue with mysql or a database configuration…

Access denied for user ‘root’@’localhost’

In mysql, Access denied for user ‘root’@’localhost’ error is due to the root user not having sufficient privilege to access the database. Either the root user password is incorrect, or…

ORA-12541: TNS:no listener

ORA-12541: TNS:no listener error occurs when the listener for the requested resource is not started or configured incorrectly. The error happens if the listener is down when it tries to…

ORA-01017: invalid username/password; logon denied

ORA-01017: invalid username/password; logon denied error occurs when an invalid username or password was submitted in an attempt to connect on to Oracle. The ORACLE username and password should be…

How to Change Date Format in Oracle Database

Date Format defines how the dates display. Oracle database allows to change the date format using to_char and to_date functions. The date format specifies the format of the date to…

ORA-00905: missing keyword

The ORA-00905: missing keyword error occurs when the Oracle parser expects a keyword in the sql query but it is missing. The error is displayed to signify a malformed statement,…

ORA-00904: : invalid identifier

ORA-00904: : invalid identifier error occurs when an invalid column name is used to refer a column in a table. The column name should follow the naming conventions. A valid…

ORA-00902: invalid datatype

ORA-00902: incorrect datatype error occurs when a column is declared with an invalid data type that Oracle does not support. when creating a table, altering a table, or declaring a…

ORA-00903: invalid table name

ORA-00903: invalid table name error occurs when the table name used to refer to a table in the sql query is invalid or does not exist in the Oracle database.…

ORA-01756: quoted string not properly terminated

The ORA-01756: quoted string not correctly terminated issue occurs when one of the surrounding single quotes in the character, string, or date value is missing. In Oracle, the string value,…

ORA-00984: column not allowed here

ORA-00984: column not allowed here error that occurs when you try to use a column that is not allowed in a particular area of the sql. The ORA 00984: column…

ORA-00947: not enough values

ORA-00947: not enough values error occurs when fewer column values are entered in the VALUES or SELECT clause than are required in the insert statement. If you attempt to run…

ORA-00913: too many values

SQL Error: ORA-00913: too many values issue appears when you enter more column values in the VALUES / SELECT clauses than the number of columns required in the insert statement.…