authorization issue..pls [message #181443] |
Mon, 10 July 2006 02:58 |
sreehari
Messages: 101 Registered: May 2006
|
Senior Member |
|
|
Hi all..
Today, i have imported a schema from one server to another..
when i try to create a procedure which have sysnonyms from another schema..it is giving the following error message..
ORA-00942: table or view does not exist
what could be the reason...
The following is the update statement failing..
in which address,sales_order_party are not been identified by the new server..
UPDATE DIM_SALES_ORDER_PARTY
SET (ENDSR_USER_ID,
ENDSR_PUB_XREF_NUM) =
(SELECT SALES_ORDER_PARTY.USER_ID,
ADDRESS.PUBLISHER_X_REF_NUMBER
FROM SALES_ORDER_PARTY, ADDRESS
WHERE DIM_SALES_ORDER_PARTY.SALES_ORDER_ID = SALES_ORDER_PARTY.SALES_ORDER_ID
AND SALES_ORDER_PARTY.ADDRESS_ID = ADDRESS.ADDRESS_ID
AND SALES_ORDER_PARTY.SALES_ORDER_PARTY_TYPE_CODE = 'ENDSR');
Thanks
|
|
|
|
Re: authorization issue..pls [message #181450 is a reply to message #181448] |
Mon, 10 July 2006 03:33 |
sreehari
Messages: 101 Registered: May 2006
|
Senior Member |
|
|
when i query the data dictionary...
select * from tab;
i am able to find all the synonyms in the new servers...
but when i try to query them i am getting the message like
Table or View does not exist...
what could be the reason..
Thank u
|
|
|
|
|