Hi,
I have registered a table in dql as:
register table dm_dbo.user_type_s
(
USER_TYPE_ID INTEGER ,
USER_TYPE_NAME CHAR(2000),
ATTRIBUTE1 CHAR(1000),
ATTRIBUTE2 CHAR(1000)
)
with key(USER_TYPE_ID)
synonym for 'DEVREP.USER_TYPE'
where user_type_s is the name of synonym ,DEVREP is the owner name
and USER_TYPE is the actual table in the RDBMS.
it is registered successfully.
then i update the permissions using:
UPDATE DM_REGISTERED OBJECT
SET OWNER_TABLE_PERMIT=15,
SET GROUP_TABLE_PERMIT=15,
SET WORLD_TABLE_PERMIT=15
WHERE R_OBJECT_ID = '1900XXXXXX'
now when i execute a query select * from dm_dbo.user_type_s
it is giving error
Dql--Enter Query: |
select * from dm_dbo.user_type_s |
Show the SQL |
Error occured during query execution :[DM_QUERY2_E_TABLE_NOT_FOUND]error: "The database table or view was not found in the database. Error from the database was: 'ORA-00942: table or view does not exist
some one plz correct me where i am wrong.