Ora - 01456

Tengo el siguiente tema:
Desde una aplicacion VB6.0 cuando intenta hacer un delete de una tabla en oracle me da el error ORA-01456.
El owner de las tablas es el mismo usuario con el cual se conecta la aplicacion y con el usuario sys de oracle hicimos un grant dba to "usuario".
sin embargo no consigo hacer insert,delete ni update.
Si alquien tiene alguna sugerencia desde ya se lo agradezco.

2 Respuestas

Respuesta
1
Problem Description
-------------------
When running a RAM build you get the following error as seen in the RAM build
log file:
14:52:50 2> Updating warehouse tables with build information...
Process Terminated In Error:
[Oracle][ODBC][Ora]ORA-01456: may not perform insert/delete/update operation inside a READ ONLY transaction
(SIGENG02) ([Oracle][ODBC][Ora]ORA-01456: may not perform insert/delete/update operation inside a READ ONLY transaction
) Please contact the administrator of your Oracle Express Server application.
Solution Description
--------------------
Here are the following suggestions to try out:
1. You may want to use oci instead of odbc for your RAM build, provided you
are running an Oracle database. This is setup through the RAA (relational access
administrator) maintenance procedure.
Also make sure your tnsnames. Ora file is setup correctly in either net80/admin
or network/admin directory, to point to the correct instance of Oracle.
2. Commit or rollback the current transaction, then retry running your
RAM build. Seems like one or more of your lookup or fact tables have a
read-only lock on them. This occurs if you modify or add some records to your
lookup or fact tables but forget to issue a commit or rollback. You need to do
this through SQL+.
3. You may need to check what permissions has been given to the relational user.
The error could be a permissions issue.
You must give 'connect' permission or roll to the RAM/relational user. You may
also try giving 'dba' and 'resource' priviliges/roll to this user as a test. Inorder to
keep it simple, make sure all your lookup, fact and wh_ tables are created on
a single new tablespace. Create a new user with the above privileges as the
owner of the tablespace, as well as the owner of the lookup, fact and wh_
tables, inorder to see if this is a permissions issue.
In this particular case, the problem was resolved by using oci instead of odbc,
as explained in suggestion# 1.
Respuesta

Thanks for giving me a better understanding of this issue. Good and useful topic.

wuxiaworld

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas