The sys user can not see tables belonging to the other schema

Hello

We have a database used to store the metadata of the soa suite, yesterday, we asked to grant select on certain tables of the prodsoa_bam schema, but we found this sys cannot see the tables of prodsoa_bam.

If we question dba_tables we can list the tables of prodsoa_bam, but if we execute a query on the tables that we get an ORA-00942 error.

Someone suggested a work around?

Kind regards.

try using double quotes. It seems that your table name is case-sensitive (which I do like):

SELECT COUNT (*) FROM PRODSOA_ORABAM. SysIterPrivilege ';

Tags: Database

Similar Questions

  • some domain users can not see the printer

    Hello

    We have a suite mixed TECHNOLOGY in schools:

    -a Server Windows 2008 newish

    -some 6yo Fujitsu customer's PC

    -some nine HP client computers

    HP thin clients have been compiled via WDS from the old Fujitsu customers.

    We have, in fact, three types of users: administrator, staff and students - with a reduction of administrative privileges.

    I have the weirdest problem - when I connect to new customers of HP as a student, I don't see the list of printers, so they cannot print to the network printer. The staff can print OK, and students can print (as they always could) when connected to a former customer of Fujitsu.

    I've tried everything I can think of, such as

    -Reinstall the printer locally and as a domain administrator - no joy

    -don't connect to a network printer shared by another machine - no joy

    -security settings on printer sharing

    I can't believe it's a server problem, as nothing is changed there, and it is specific to the type of user and the type of customer, and all other combos work OK. I have run out of ideas and will accept with gratitude any help staff is running out of patience.

    Thank you

    SAL

    Hello

    Your question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public.

    http://social.technet.Microsoft.com/forums/en-us/w7itpronetworking/threads

  • My macbook called in a weird way, when I appear to connect to the user, can not see anything. How can I fix?

    ...

    Need more information. When you connect, what do get you a black screen or something else? Are what type of login screen you?

  • ERROR / T_ITEMS in the TABLE is changing, function of triggering/can not see ORA-06512... ?

    Hi all

    I CREATED THE TRIGGER TO CHECK NOM_ELEMENT BEFORE UPDATE ON THE T_ITEMS TABLE IF AN ANOTHER NOM_ELEMENT LIKE NOM_ELEMENT CURRENT OR NOT, IF AS AN ANOTHER NOM_ELEMENT DON'T SAVE UPDATED CURRENT NOM_ELEMENT.

    MY NO IS:

    1 - I CREATED the FUNCTION CALL CH_UNIQUE_ITEM_NAME

    CREATE OR REPLACE FUNCTION CH_UNIQUE_ITEM_NAME
    (NUMBER OF P_ID, P_ITEM_NAME IN VARCHAR2)
    RETURN NUMBER
    AS
    NUMBER OF X_COUNT;
    -FUNCTION "CH_UNIQUE_ITEM_NAME" TO CHECK NOM_ELEMENT LIKE OTHER NOM_ELEMENT OR NOT.
    BEGIN
    SELECT COUNT (ITEM_NAME)
    IN X_COUNT
    OF T_ITEMS
    WHERE ID! P_ID =
    AND UPPER (ITEM_NAME) AS UPPER (P_ITEM_NAME);
    RETURN X_COUNT;
    END CH_UNIQUE_ITEM_NAME;

    2. I CREATED TRIGGER CALL TRG_CH_UNIQUE_T_ITEMS

    CREATE OR REPLACE 'TRG_CH_UNIQUE_T_ITEMS' before FIRING
    UPDATE
    ON T_ITEMS FOR EACH LINE
    DECLARE
    NUMBER OF X_CHECK;
    BEGIN
    SELECT CH_UNIQUE_ITEM_NAME (: OLD.ID,: NEW.) NOM_ELEMENT) IN DOUBLE X_CHECK;
    IF (: NEW.) NOM_ELEMENT DISLIKES: OLD. Nom_element AND X_CHECK > 0)
    THEN RAISE_APPLICATION_ERROR (-20007, "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
    END IF;
    END;

    NOW WHEN I UPDATE ANY ITEMS FOUND ERROR "ERROR / T_ITEMS in the TABLE is changing, function of triggering/can not see ORA-06512.

    Form on T_ITEMS22222.png

    Please help me TO RESOLVE THIS ERROR. I TIRED TO SOLVE...

    Thank you

    You don't realize that you have just set a UNIQUE INDEX of several columns?

    create unique index index_name_uq on table_name( user#, upper(item_name) );
    

    In addition, a GUI Design point, (using the terms of the APEX) that you want to validate the data before submit you.

    (use a Page-level Validation)

    MK

  • Hi, I have a question. After installing this program in my (brand Asus k 4 table) the icon of my program its very small and I can not see all of the icons...

    Hi, I have a question. After installing this program in my (brand Asus k 4 table) the icon of my program its very small and I can not see all of the icons...

    What exact version of After Effects you are trying to use? 13.7.1 is?

  • Why a specific user would not see the personalization site level?


    Hello

    We have a personalzation of site level to change the number of lines paginated in a table.  However, at least 1 user does not see this customization.

    Can someone tell me why?     I thought that maybe some strange way, the user has a specific customization by the user, but the personalization shows page only through RESPS level and everything seems OK

    Hello

    You can remove the customization by using the script that AJ has already provided you below:

    DECLARE

    BEGIN

    jdr_utils.deletedocument (p_document => ' / ge/oracle/apps/getsux/rtnpaymentErrors/webui/customizations/user/117790/GetsPayErrorSummaryPG ');

    END;

    /


    Notice given scripts to remove the document from the instance. Do not use for any page of seeds/custom, otherwise it will remove pages also. (You can import the page once again, finding the same page of some other instance..!)


    aJohny


    The profile option is "Disable personal self" that you can set to true to disable customizations in any level.

    Nice day..!!

    Kind regards

    Maulik Shah



  • Table is changing, function of triggering/can not see?

    Hello
    I had this error before, and I solved it with the help of this forum.
    But I didn't ask then why is - this error happening at all?
    Now I have it again, with different trigger:

    ORA-04091: table TRACKER. APPLICATIONS is changing, function of triggering/can not see

    My trigger code is:
    create or replace trigger "REQUEST_EMAIL_T2"
         after update of assigned_to_assigned_id
         on requests
         referencing new as new old as old
         for each row
    begin
            if :new.assigned_to_assigned_id != :old.assigned_to_assigned_id
         then
          for emp_rec
           in (select      username, assigned_email, form_name
              from      assigned, form_type, requests
                 where  assigned.assigned_id = form_type.assigned_id
                      and assigned.assigned_id = :new.assigned_to_assigned_id
                      and requests.request_id = :new.request_id)
                    loop
               apex_mail.send (
                   p_to          => emp_rec.assigned_email,
                   p_from     => emp_rec.upline_email,
                   p_body     => 'You have been assigned a new Request. '
                                    || CHR (10)
                                    || ' Request: '
                                    || :new.request_id
                                    || CHR (10)
                                    || ' Type: '
                                    || emp_rec.form_name
                                    || CHR (10)
                                    || ' Login: '
                                    || emp_rec.username
                                    || CHR (10)
                                    || ' Pass: '
                                    || '******',
                   p_subj     => 'New Request'
              );
         end loop;
    end;
    / 
    The relaxation will compile without error. The error I get trying to update the table!

    I absolutely need to define a trigger as "after" update and need to know how to avoid the same mistake again?

    Thank you!

    But I didn't ask then why is - this error happening at all?

    Have you looked at the error message? It is very explicit:
    >
    ORA-04091: table String is changing, the function of triggering/can not see
    Cause: A trigger (or a plsql function defined by the user referenced in this statement) attempted to watch (or modify) a table that stood in the middle of being modified by the statement that shot.
    Action: Rewrite the trigger (or function) so it does not read this table.
    >

    Should this request to join the table of queries ? Does not look like it...

  • Hi I can not see the App health or my pulse in the looks on my watch even if she is selected to appear on eyes on my phone?

    Hi I can not see the App health or my pulse in the looks on my watch even if she is selected to appear on eyes on my phone?

    Hello

    Slide your finger left or right on the screen.

    Also go to ibooks on the user guide iphone download Apple Watch is free.

    See you soon

    Brian

  • Import photos no problem can not see the photos on iPhone

    I upgraded my MacBook Pro to El Capitan.  Since moving from iPhoto to Photos (even before I updated the operating system) when I plug my iPhone 5 to import pictures in the selected library I do not see the photos appear in the import window so that I can select for imports.  I literally had to email it to myself, and then import it into the e-mail.  I work with different libraries within pictures, so I excluded it only love the library system.  Same result, can not see the photos.  Also, I have unplugged and replugged in and tried the other USB port to rule out hardware, while the Photos could force them to see the device as new, and that does not work either.  I tried something another user who had to open Image Capture to see if she could see all the pictures on my phone and it doesn't work, I found (theory was that opening would make Photos recognize as well).  However the Image Capture wouldn't add a USB scanner so I think it's not worthy of trust.  Photos only setting I have enabled is the automatic update to iCloud.  Otherwise, I don't know what another parameter to seek that could block it.

    When the phone is connected USB the phone reboot - many have found this will clear this problem

    LN

  • Changing table - SQL error: ORA-04091: table XYZ is changing, function of triggering/can not see

    Hi all

    I am a newbie to Oracle and I am faced with the above error. Please see the below code snippets. Can someone please tell what I am doing wrong? Thank you in advance.

    Thank you

    CREATE TABLE ABC

    (

    ID VARCHAR2 ENABLE NUMBER NOT NULL,

    FIELD1 ACTIVATE THE NUMBER NOT NULL,

    FIELD2 ACTIVATE THE VARCHAR2 (8 BYTE) NOT NULL,

    CONSTRAINT JOB_PK PRIMARY KEY (ID)

    )

    ;

    CREATE TABLE XYZ

    (

    ACTIVATE THE NUMBER 4 R_ID NOT NULL,.

    ID VARCHAR2 ENABLE NUMBER NOT NULL,

    Column1 NUMBER (2.0) default 0.00,.

    Column2 NUMBER (2.0) default 0.00,.

    COLUMN3 NUMBER (2.0).

    NUMBER (2.0) TOTAL 0.00 default.

    CONSTRAINT TRIP_PAYMENT_PK PRIMARY KEY (ID)

    )

    ;

    create or replace trigger trigger1

    After Insert on XYZ

    for each line

    Declare

    number of newTotal;

    Start

    newTOTAL: =: new. Column1 +: new. Column2 +: new. COLUMN3;

    setting a day of XYZ together Total = newTotal;

    end;

    Insert into ABC (1, 45, ' Demo');

    insertion in XYZ (1, 1, 12.50, 10.20 33,50, ");

    Error report:

    SQL error: ORA-04091: table XYZ is changing, function of triggering/can not see

    Try one before line

    create or replace trigger trigger1

    before inserting on XYZ

    for each line

    Start
    : new. TOTAL: =: new. Column1 +: new. Column2 +: new. COLUMN3;
    end;

  • MY PHONE SCREEN IS BLACK, PHONE WILL RING AND ICAN HEAR THROUGH THE MESSAGES BUT CAN NOT SEE ANYTHING AT ALL

    MY PHONE SCREEN IS BLACK, PHONE WILL RING AND ICAN HEAR THROUGH THE MESSAGES BUT CAN NOT SEE ANYTHING AT ALL

    Try this restart your iPhone, iPad or iPod touch - Apple Support

    If this does not work, it may be a hardware problem.

    Hope this helps, good luck to you.

  • in Firefox can not see the window of downloads, specialist of the jump in the trunk to be saw - the speed downloaded a lot and now can not see how to fix it?

    in Firefox can not see the downloads window, specialist of the jump in the trunk to see - the download speed
    Downloaded a lot and now can not see how to fix it?

    The download Panel has been moved to the upper right corner with a circle arrow down. You can also visit on: downloads of your browser to visit all your downloads.

  • Can not see the images of the patent (i.e., D/359 691) on research of patent USPTO.gov, it tells me I need a plugin (7.7.1.0 Quicktime) that I've already updated.

    Can not see the images of the patent (that is, D/359 691) on USPTO.gov patent search, it tells me I need a plugin (Quicktime) that I've already updated.
    In the 'quick search' I give terms & it compiles a list. I have then cross to every doc and look to see the doc and associated drawings. I don't know what to say at this stage.

    Thank you.

    QuickTime cannot handle images in TIFF format.

    You can watch AlternaTIFF - http://www.alternatiff.com/

  • Can not see any of the website features especially icons to link

    Can not see any of the website features especially icons to link

    See:

  • Skype to the Japan number - call is OK but call the receiver can not see my number

    Hi all.

    Today I received number of Skype to the Japan, receiving another appeal is OK but when bringing in another receiver can not see my number. I went to the caller identification settings and cannot see the Japan in the list, while number of Skype to the Japan cannot do that, right?

    Thanks for reading.

    Update: I received Skype confirmatiom. It is correct. Caller ID cannot be used in the Japan.

Maybe you are looking for

  • Satellite A200-130 - had black screen after BIOS updated

    I have Satellite A200-130 I install a windows Vista OS with success and after that, I have saved all the driver I DOWNLOAD and put on a single folder... but then I accidentally open the configuration files of the BIOS that is "setup.exe" with the fil

  • Y570 Windows 8 drivers

    They all seem to be dismantled for update (with the exception of the old power management which is still not working properly, when they will be back online?

  • How can I check the validity of an email from Windows Live team

    Dear owner, NOTIFICATION OF VIRUS A Virus of the DGTFX were found in your folders. Your email account must be upgraded to our new version of 2012 DGTFX secure antivirus to prevent damage to our web mail log and your important files. Click the respons

  • HP G72-250USNotebook: error at startup main internal battery (601) my laptop HP G72-250US

    Error message at startup time primary starter battery internal Battery (601). What is the CMOS battery? A forum q / said they have a CR-2032 battery. Is it the same thing for my laptop? & How to install it please? Thank you

  • Computer laptop Windows 7 won't turn off completely

    6 months ago, I bought a new laptop with windows 7 64 bit installed. has worked well until 2 weeks ago. whenever I stopped, she stays on the screen of closing until the battery is flat. When I turn the back says windows has recovered from an unexpect