Search notes:

ORA-06550: line …, column …:

An ORA-06550 error is thrown when attempting to execute an anonymous PL/SQL block which is invalid.
The message indicates the line and column in the block where the invalidity originates.
Because ORA-06550 errors are related to PL/SQL, they're typically (always?) followed by a PLS-xxxxx error message.

Simple example

The following block has a type which makes it impossible for Oracle to execute:
declare
   txt varchar2(20);
begin
   txt := 'Hello world.';
   dmbs_output.put_line(txt);
-- ^^
-- ||  Note the typo!
end;
/
Trying to execute the block results in the error message
ERROR at line 5:
ORA-06550: line 5, column 4:
PLS-00201: identifier 'DMBS_OUTPUT.PUT_LINE' must be declared
ORA-06550: line 5, column 4:
PL/SQL: Statement ignored
The identifier which is found at line 5, column 4, is the erroneus dmbs_output.

See also

Other Oracle error messages such as

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1743262606, '18.222.220.80', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-06550_line-column/index(70): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78