Cant query view but have table privileges (not found in ALL_VIEWS)

Hi guys,
I have a strange (to me~) problem where I have a view querying 4 tables. the creator and another user can call the view but a third user cannot.
If I query ALL_OBJECTS or ALL_VIEWS with this user the view is not listed. However, the user has privileges to all tables used. This has been verified by running the except same query associated with the view & the it returned the results as expected~
When I try to call the view it says it doesn't exist though. With the other users I can call either the view or the underlying query. Any idea what privilege may be missing that means the user cant call a view?
Mike

Tried to grant SELECT on view but it complained of one of the tables.
Turns out that when you grant to a view it tries to grant access to the tables underneath but it doesn't check if they already have the privileges~
I granted select access to 3 tables but the user with the view (in a different schema) needed select WITH GRANT OPTION privilege; it didn't matter that the user I was granting view access to already had select on the 3 tables :(
Thanks
Mike

Similar Messages

  • I have downloaded a music file through a downloader . But the file is not found in the captured in music player . How can I locate the physical location and move the file . I cannot do via itunes also .

    I have downloaded a music file through a downloader . But the file is not found in the captured in music player . How can I locate the physical location and move the file . I cannot do via itunes also .

    Exactly what do you mean by a 'downloader'?
    Thanks
    Pete

  • Hi ... After I have installed IOS 6 on my Iphone 4, the WiFi connection is trying to authenticate in the Apple site but the page is not found. Do you have any idea on how to bypass this authentication ??  Regards,  Gilson

    Hi ... After I have installed IOS 6 on my Iphone 4, the WiFi connection is trying to authenticate in the Apple site but the page is not found.
    Do you have any idea on how to bypass this authentication ?? 
    Regards,
      Gilson

    Hi...
    After I have wait for 30 minutes without do anything, the wifi interface worked.
    I don't know if Apple could fix the issue on their site or the reboot of the Iphone solved the problem.
    I'm installing IOS 6 on the Iphone 4 of my wife. Let's see if the behaviour is the same.
    I will post the informations after finish the installation.
    Gilson

  • XML File as Datasource -  The table is not found in file

    Hi,
    I am trying to use a xml file as datasource and want to map those columns to the existing DWH. Actually, it is additional data which should be combined with the existing DWH data. Therefore I am using the fragmentation option.
    I did it already on my privat pc and it works, but as soon as I implement it to the DEV environment it doesn' t work at all :( I am getting the following error:
    Status: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 64002] The table is not found in file C:\Ist.xml loaded. (HY000)
    Could somebody help me??
    Thanks

    If you changed environments make sure that the XML file actually exists in the location specified at C:\ist.xml.
    Also be sure that the information in the properties section of the XML data source match your DEV environment. If you used any session variables be sure that you have also modified those in the DEV environment to reflect the DEV environment.
    Did you switch from a same OS environment, i.e.: Linux to Linux or Windows to Windows? Or did you go from a Windows to Linux OS?

  • Table "StoredProcedure" not found when changing Database location in VS 2005.

    <p>I&#39;m having a problem changing the datasource location when generating a report using the report viewer in VS2005.  If the table is a stored procedure, I get the message "Table (StoredProcedureName) not found", but if the report references tables rather than a stored procedure the location is changed and the report runs successfully.  The same problem was reported in earlier versions of Crystal Reports and was fixed in a service pack, but I couldn&#39;t find any documentation on the VS2005 version. </p><p>Does anybody know how to fix this problem?  I am using CrystalDecisions.CrystalReports.Engine.dll version 10.2.3600.0 and SQL Server 2000.</p>

    Peggy, I wonder if getting the latest SP for CR 10.2 will be better for now. SP 1 can be downloaded from here:
    https://smpdl.sap-ag.de/~sapidp/012002523100006007872008E/crvs05sp1.exe
    I\Let us know if that does not resolve the issue and we'll take a closer look before going all the way to CR XI.
    With regards,
    Ludek

  • External Table error: KUP-04043: table column not found in external source

    I am trying to get the syntaxc correct for an external table.
    I keep getting this error:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04043: table column not found in external source: SITE
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    Data looks like: (some of one of many files, where the character field widths are variable)
    ZZ,ANYOLDDATA,77777,25002000,201103,12,555.555,11.222
    ZZ,ANYOLDDATA,77777,25002300,201103,34,602.162,8.777
    ZZ,ANYOLDDATA,77777,25002400,201103,12,319.127,9.666
    ZZ,OTHERDATA,77121,55069600,201103,34,25.544,1.332
    ZZ,OTHERDATAS,77122,55069600,201103,22, 1.011,0.293
    External table def I have:
    CREATE TABLE MY_INPUT (
    FIRST_CODE VARCHAR2(10),
    SECOND_CODE VARCHAR2(20),
    MY_NUMBER VARCHAR2(20),
    THIRD_CODE VARCHAR2(20),
    YEARMO VARCHAR2(6),
    N NUMBER,
    MEAN NUMBER,
    SD NUMBER
    ORGANIZATION EXTERNAL (
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY INPUT_DIR
    ACCESS PARAMETERS (
    RECORDS DELIMITED BY newline
    BADFILE INPUT_LOGDIR:'bad.bad'
    LOGFILE INPUT_LOGDIR:'log.log'
    DISCARDFILE INPUT_LOGDIR:'discards.log'
    fields terminated by ',' LRTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    ( THIRD_CODE,N,MEAN,SD) )
    LOCATION ( 'myfile.rpt')
    NOPARALLEL
    REJECT LIMIT UNLIMITED;
    I have the directories INPUT_DIR and INPUT_LOGDIR defined, and read/write access granted to the user who creates the table and tried to query from it.
    I have tried various combinations of VARCHAR2 lengths and NUMBER vs VARCHAR2 for some of the numeric fields.
    I am not getting any Bad, Log or Discard files.
    I can do a GET from the SQL prompt, and see the data:
    SQL> GET 'C:\temp\input_dir'myfile.rpt'
    and I see the data.
    Windows 7
    Oracle 11.2
    I am not positive of the newline record delimiter - these files are generated by an automated system. Probably generated on a UNIX machine.
    Any suggestions on what to try would be helpful.
    KUP-04043 error message says to check the syntax .. .I am running out of thigns to check.
    Thank you - Karen

    And the get ( I created the sanitized file, so we have a real working, failing, santiized example):
    SQL> get c:\Inputfiles\myfile.rpt
    1 ZZ,ANYOLDDATA,77777,25002000,201103,12,555.555,11.222
    2 ZZ,ANYOLDDATA,77777,25002300,201103,34,602.162,8.777
    3 ZZ,ANYOLDDATA,77777,25002400,201103,12,319.127,9.666
    4 ZZ,OTHERDATA,77121,55069600,201103,34,25.544,1.332
    5* ZZ,OTHERDATAS,77122,55069600,201103,22, 1.011,0.293
    So the full series is:
    CREATE DIRECTORY INPUT_DIR AS 'C:\InputFiles';
    -- grant READ and WRITE
    GRANT READ ON DIRECTORY INPUT_DIR TO ILQC;
    GRANT WRITE ON DIRECTORY INPUT_DIR TO ILQC;
    -- As SYS, create the bad/log/discard directory:
    CREATE DIRECTORY LOGDIR AS 'C:\InputFiles\Logs';
    -- grant READ and WRITE
    GRANT READ ON DIRECTORY LOGDIR TO ILQC;
    GRANT WRITE ON DIRECTORY LOGDIR TO ILQC;
    CREATE TABLE MY_INPUT (
    FIRST_CODE VARCHAR2(10),
    SECOND_CODE VARCHAR2(20),
    MY_NUMBER VARCHAR2(20),
    THIRD_CODE VARCHAR2(20),
    YEARMO VARCHAR2(6),
    N NUMBER,
    MEAN NUMBER,
    SD NUMBER
    ORGANIZATION EXTERNAL (
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY INPUT_DIR
    ACCESS PARAMETERS (
    RECORDS DELIMITED BY newline
    BADFILE INPUT_LOGDIR:'bad.bad'
    LOGFILE INPUT_LOGDIR:'log.log'
    DISCARDFILE INPUT_LOGDIR:'discards.log'
    fields terminated by ',' LRTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    ( THIRD_CODE,N,MEAN,SD) )
    LOCATION ( 'myfile.rpt')
    NOPARALLEL
    REJECT LIMIT UNLIMITED;
    SELECT * FROM my_input;
    and GET is as above.

  • Table Driver Not Found message during initial boot up - What is this?

    Every since upgrading to 10,5 when I boot or change accounts I get the message, "Table Driver Not Found". I am not sure what program this is but there is what looks like the letter A and an art stand? I press ok and never see it again unless I log off or reboot.
    Any clue?

    Did you mean "Tablet Driver Not Found"... oh you did in the title!
    So, did you ever have a Wacom Tablet or anything installed before?
    Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Dynamically assigning query/view to a table

    Hi All,
    i want to assign a view to a table dynamically in WAD as per certain condition, can any 1 tell me how to do this?
    thanks in advance
    Godhuli

    Just a thought
    Instead of assigning query dynamically is it possible that you will have tables with different queries as dataprovider and at run time you can show only the required table and other tables you can hide.
    Unfortunately my WAD is not working so I am just giving a pseudo code.Please don't blame me for syntax errors.Please Paste this code between <\BODY> and
    <\HTML>.
    You can write a script like this
    <script>
    var obj;
    var tablobj;
    obj = findobject("option_1");
    HideTables();
    if (obj.value == 1)
       tablobj = findobject("TABLE_1");
       tablobj.style.display = "show";
    if (obj.value == 2)
       tablobj = find_object("TABLE_2");
       tablobj.style.display = "show";
    function findobject(objname)
    var all = document.all;
    for( var i=0;i<all.length;i++ ){
    if (all<i>.name==objname)//we have found object
    return all<i>;
    return null;
    function HideTables()
    var all = document.getElementsByTagName("table");
    for( var i=0;i<all.length;i++ )
    all<i>.style.display = "hidden";
    <\script>
    Regs
    Gopi.
    Message was edited by: Gopi

  • HT201442 i have tried the above resolution,but it says command not found.Can someone help with another resolution? Thanks

    I have tried the above resolution and it said that the command was not found. Please help

    Why not ask in the appropriate Mac forum as the command in the article is run on a Mac.

  • Table AFVG not found

    Hi experts,
    This is the first time I am working on PP side of BW extractions and here is the issue I am facing. Please share your experiences.
    For Extractor 2LIS_04_P_ARBPL,  in LBWE under Maintain Structure view, I see 3 tables AFKO, AFPO and AFVG. (I took these table names from Com Structure MCAFKO etc.). Out of the 3 tables, I found the first 2 in SE11 but table AFVG is not found though. Instead there is AFVV which is very close. Please let me know if there is another way of finding table details from extract structure/com structure. Thanks in advance.

    Hi,
    AFVG mentioned in LBWE is a structure. There are lot of other Structures that start with AFVG. Check out the field of the structure and find out the tables/programs/ Function modules using Where used list in SE11.
    Check out this thread -
    How to find source table
    Regards,
    Geeta
    Edited by: PGeeta on Oct 13, 2011 10:20 AM

  • I took a back up from UFBR but....not found Business Rules

    Dear All,
    I took a back up using UJBR T.code and I have checked the back up whehter its properly come or not ..but I did not found BUsiness rulus when checked wtih T.code UJFS. But business rules not found.
    pls advise me wher can i found back up of business rules.
    Regards,
    guru

    Hi,
    Just checked my old backup file and you are right. It does not have the business rules. One reason I can think of is they are not part of UJFS structure and in fact uses a table driven. All the rules can found with the tables UJP*.
    You can print them into html and copy into an excel. From there I think you have to manually copy into the target system. If you are using transport route, you do not have worry as the transports cover the table driven rules with the required config in the UJT_TRANS_CHG table.
    Thanks,
    Sreeni

  • Problem with ALV-Table: attruibut not found

    Hello experts,
    I've created an input-view with an alv-table as output list.
    I've mapped the alv-table called 'daten' with the component controller 'daten'.
    Check is ok, but when I start the application I get shortdump:
    attribut 'daten' not found.
    Method: IF_WD_CONTEXT_NODE_INFO~GET_ATTRIBUTE of program CL_WDR_CONTEXT_NODE_INFO======CP
    Method: IF_WD_CONTEXT_ELEMENT~GET_ATTRIBUTE of program CL_WDR_CONTEXT_ELEMENT========CP
    Method: GET_ATTRIBUTE_INTERNAL of program CL_WDR_VIEW_ELEMENT_ADAPTER===CP
    Has anybody an idea what this could be  ?
    Thanks
    Gerd

    Hi,
    this is all code I've yet written:
    METHOD wddoinit .
    data lr_node type ref to if_wd_context_node.
    Data lt_el_datensaetze type wdr_context_element_set.
    lr_node = wd_context->get_child_node( 'DATENSAETZE' ).
    lt_el_datensaetze = lr_node->get_elements( ).
      DATA: ls_smot005t TYPE smot005t,
            lt_smot005t TYPE TABLE OF smot005t.
      DATA lo_nd_laender TYPE REF TO if_wd_context_node.
      navigate from <CONTEXT> to <OPPORTUNITY_STATUS> via lead selection
      lo_nd_laender = wd_context->get_child_node( name =
      wd_this->wdctx_laender ).
    Länderkennzeichen auslesen und an Context übergeben
      SELECT * FROM smot005t INTO ls_smot005t WHERE spras = 'DE' ORDER BY
    landx ASCENDING.
        IF sy-subrc = 0.
          APPEND ls_smot005t TO lt_smot005t.
        ENDIF.
      ENDSELECT.
      lo_nd_laender->bind_table( new_items = lt_smot005t ).
      lo_nd_laender->set_lead_selection_index( index = 40 ).
    ENDMETHOD.
    BR
    Gerd

  • Following Beginner's Guide, but one command is "not found" - alsact1

    Hello
    I'm following the Beginner's guide and doing everything exactly as it says. However, when i get to the Sound Card setup instructions (using ALSA) one of the commands it is telling me to use returns the error "-bash: alsact1: command not found"
    I have done everything exactly as per the directions. According to the instructions, this command saves the mixer settings so that on boot-up, the volume levels are as they were previously.
    I wasn't able to create the file that "alsact1" is supposed to create, but upon boot-up, the sound levels appear to be as they were last time. so everything works just fine.
    Should I just forget about the "alsact1" command and move on? Anyone else have this issue? Is there a fix? or is it a typo in the instructions?
    Thanks in advance!

    The last letter is an L, not a 1
    ie ALSACTL rather than ALSACT1

  • Have an xpcom not found error, reinstall executable does not run!

    I am on Windows Vista, German version.
    I deleted an old folder which I thought wasn't used - unfortunately, it was the Firefox folder, and only some files were deleted. Ever since, I keep getting the error "xpcom not found" when I try to run firefox.
    I tried to download a fresh copy of the installable. When I run it, it asks me whether I wish to run it as the current user, or another one. If I click on "current user", then nothing happens. Nothing at all.
    If I click on the user "administrator", along with my Windows password, then it says my credentials are invalid. I have no other user on my laptop; my current user has administrator rights.
    What do I do, please?

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!
    Thank you.

  • Table SRGBTBREL not found in SAP 4.6c version

    Hi All,
    when i have checked the table name SRGBTBREL in se16. it is saying table does not exist. 
    I have attatched the PDF files in FB03 transaction.  when i am checking SRGBTBREL table system saying table does not exist.
    Is there any version problem...
    Double-post

    Hi,
      You have to have some patch.Pls refer to SAP oss notes 626010.
    Pls reward if useful.
    Sushil.

Maybe you are looking for

  • Adding memory of different sizes

    I have a Mac Pro 8 core running with two 1GB memory sticks. I'd like to add additional memory. I'm looking at adding 4x2GB memory sticks. Is there any reason why I couldn't install the 2GB sticks and leave the 1GB sticks in the system for a total of

  • Text elements and key figures with multiple restrictions

    Hi, I'd like to display text elements in my query according to the restricted key figures in it. There is a restricted key figure used multiple times with different base of restriction. (For exmple Sales in the past week and yesterday.) KF restricted

  • It's Smart Sync selective posible?

    We need technical advising about Synchronization methods on Mobile Engine 2.1 or 2.5. (The plataform is still undefined). We have to develop a customer application which have to implement management of orders. Our customer would like us to implement

  • How to record generated sound to a file ?

    I have a program that can generate sound, I can hear the sound sequence from my headphone, now I'm trying to save the generated sound to an .au file, it should have a few seconds of sound, but instead I just heard a short beep, seems it didn't record

  • Core dump using iostream with Sun Studio 8

    I'm running on Solaris 9 using C++ compiler Sun Studio 8, and encoutered a very strange problem. My application failed with a core and here is the stack. [1] t_splay(0x3774b470, 0x387a0ec0, 0x389aec60, 0x39e5ef1f, 0x3774b470, 0x1), at 0xfc347930 [2]