ORA-06512 at string line string Tips and Example
Cause: Backtrace message as the stack is unwound by unhandled exceptions. This is basically to indicate where a particular error number occurred in an operation.
|
| |||
Oracle, SQL, PL/SQL, Microsoft SQL Server and T-SQL related Tips and Techniques |
|
Cause: Backtrace message as the stack is unwound by unhandled exceptions. This is basically to indicate where a particular error number occurred in an operation.
Alter system kill session – command in Oracle. This post explains scenarios when you may need to use this command
A very simple and easy to understand example of Stored procedure. An Oracle stored procedure is an Oracle object that you create using PL/SQL. PL/SQL is a procedural language which is used by Oracle developers to process and manipulate data stored in an Oracle database.
You want to view all tablespaces and their sizees in your Oracle database? Learn a very simple query that gives you that ability.
Answer: This Oracle core process is responsible for recovering/freeing up resources when a user process fail. It cleans up the cache of the failed user process.
This post explains the Oracle tablespace concept and provides all the commands that you will need to administer Oracle tablespaces.
Use
ALTER INDEX schemaz.Ind_IDX1 STORAGE ( MAXEXTENTS UNLIMITED);
or
ALTER INDEX schemaz.Ind_IDX1 STORAGE ( MAXEXTENTS 700);
depending on what you need.
Learn TRUNCATE command : TRUNCATE a table you can not rollback the data. But when you DELETE data from a table you can execute rollback to get back your deleted data (that is if you run this before you commit the transaction).
Sometime you may want to ENABLE or DISABLE a constraint for some reason. Learn here the way to do it.