Tag: errors

ORA-01480: trailing null missing from STR bind value

ORA-01480: trailing null missing from STR bind value Cause: A bind variable of type 5 (null-terminated string) does not contain the terminating null in its buffer. Action: Terminate the string with a null character ORA-01480: trailing null missing from STR bind value: The column that is being read has a value which is too large to […]

ORA-00905: missing keyword

Oracle/PLSQL: ORA-00905 Learn the cause and how to resolve the ORA-00905 error message in Oracle. Description When you encounter an ORA-00905 error, the following error message will appear: ORA-00905: missing keyword Cause You tried to execute a statement, but you missed a required keyword. Resolution The option(s) to resolve this Oracle error are: Option #1 […]

ORA-00903: invalid table name

Oracle/PLSQL: ORA-00903 Learn the cause and how to resolve the ORA-00903 error message in Oracle. Description When you encounter an ORA-00903 error, the following error message will appear: ORA-00903: invalid table name Cause You tried to execute a SQL statement that included an invalid table name or the table name does not exist. Resolution The […]

ORA-00902: invalid datatype

Oracle/PLSQL: ORA-00902 Learn the cause and how to resolve the ORA-00902 error message in Oracle. Description When you encounter an ORA-00902 error, the following error message will appear: ORA-00902: invalid datatype Cause You tried to execute a CREATE TABLE or ALTER TABLE statement that contained an invalid datatype. Resolution The option(s) to resolve this Oracle […]

ORA-00900: invalid SQL statement

Oracle/PLSQL: ORA-00900 Learn the cause and how to resolve the ORA-00900 error message in Oracle. Description When you encounter an ORA-00900 error, the following error message will appear: ORA-00900: invalid SQL statement Cause The statement that you’ve tried to execute is not a valid SQL statement. Resolution The option(s) to resolve this Oracle error are: […]

ORA-01722: invalid number

Oracle/PLSQL: ORA-01722 Learn the cause and how to resolve the ORA-01722 error message in Oracle. Description When you encounter an error, the following error message will appear: ORA-01722: invalid number Cause You executed a SQL statement that tried to convert a string to a number, but it was unsuccessful. Resolution The option(s) to resolve this […]

ORA-00304: requested INSTANCE_NUMBER is busy

Oracle/PLSQL: ORA-00304 Learn the cause and how to resolve the ORA-00304 error message in Oracle. Description When you encounter an ORA-00304 error, the following error message will appear: ORA-00304: requested INSTANCE_NUMBER is busy Cause You tried to start an Oracle instance by using an INSTANCE_NUMBER parameter value that is already in use. Resolution The option(s) […]