privileges for partitions and see them in object

Hello

Anyone seen this before? The dw team has an appid with privileges from read/write to a partitioned table.

connected under appid adshX, I am able to choose among stgadm3. TMUTL_FND_POSN partition (p1)

1 * select count (*) in the stgadm3. TMUTL_FND_POSN partition (p1)
SQL > /.
COUNT (*)
--------------------------------------------------------------------------------
927282

again, logged in as adshX appid, I am able to choose among object, but only the name of the table is returned.
SQL > select subobject_name, object_name, object_type, owner
of object where owner = 'STGADM3' AND object_name = "TMUTL_FND_POSN";

OWNER TYPE_OBJET PARAMETER SUBOBJECT_NAME
--------------- ---------------------- --------------------- ----------------------
STGADM3 TABLE TMUTL_FND_POSN

If connected as sys or system, the partition table AND are returned from all_objectds.
OWNER TYPE_OBJET PARAMETER SUBOBJECT_NAME
--------------- ---------------------- --------------------- ----------------------
STGADM3 TABLE PARTITION P1 TMUTL_FND_POSN
STGADM3 TABLE TMUTL_FND_POSN P_MINUS_1 PARTITION
STGADM3 TABLE TMUTL_FND_POSN

In addition, the ID adshX have access to views dba_ *, but which returns the correct results.
OWNER TYPE_OBJET PARAMETER SUBOBJECT_NAME
--------------- ---------------------- --------------------- ----------------------
STGADM3 TABLE PARTITION P1 TMUTL_FND_POSN
STGADM3 TABLE TMUTL_FND_POSN P_MINUS_1 PARTITION
STGADM3 TABLE TMUTL_FND_POSN

My first thought was that some private was missing, but because they can read/write/create tables and partitions with this id, I don't know what other private, they would need so that the information will be displayed.

It is an oracle 10g db.

Thanks, Pete

>
My first thought was that some private was missing, but because they can read/write/create tables and partitions with this id, I don't know what other private, they would need so that the information will be displayed.
>
You can make it appear by granting the user to SELECT ANY TABLE or DBA, but you may not want to do. Even grant ON the table to the user allows you to hide the information of subpartion.

Tags: Database

Similar Questions

  • Need to take stats twice for partitions and subpartitions?

    Hello world

    I'm taking a new approach for making statistics.

    First my system:

    Oracle 10.2.0.1
    3 instance RAC running on Linux RH AS 3, 64-bit

    I'm currently my stats using dbms_stats.gather_schema_stats with the option "rally car", it's good because only the data tables with stale and empty tables are being analyzed, but the process takes 3 to 4 days...

    Now I want to spread the statistical processes on nodes in the cluster using gather_table_stats (stale tables and empty tables only), while I was doing my procedure, I discovered the following, and here's where I need your help.

    If I run the following command:

    exec dbms_stats.gather_table_stats (ownname = > 'CACOSTA', tabname = > 'subpart_date', granularity = > 'SUBPARTITION', partname = > 'P200901')

    I can see the stats from my server BUT no stats have been taken for the partition.

    If I change the granularity on the "PARTITION": gather_table_stats

    exec dbms_stats.gather_table_stats (ownname = > 'CACOSTA', tabname = > 'subpart_date', granularity = > 'PARTITION', partname = > 'P200901')

    It will take the stats ONLY for the partition, but not for subparts.

    If I take the stats twice for 'PARTITION' and 'SUBPARTITION', I'll get all stats but it will take twice as long to complete.

    Is someone can you please tell me if I'm on the wrong approach? is it possible to understand that when I use the granularity of the "PARTITION", it can take the opportunity to use this same information it is collecting and provide statistics for subparts too to the RDBMS?

    Thank you and sorry for the long post.

    Carlos Acosta

    Carlos Acosta wrote:
    I'm taking a new approach for making statistics.

    First my system:

    Oracle 10.2.0.1
    3 instance RAC running on Linux RH AS 3, 64-bit

    exec dbms_stats.gather_table_stats(ownname=>'CACOSTA',tabname=>'subpart_date',granularity=>'SUBPARTITION',partname=>'P200901')

    I can see the stats from my server BUT no stats have been taken for the partition.

    If I change the granularity on the "PARTITION": gather_table_stats

    exec dbms_stats.gather_table_stats(ownname=>'CACOSTA',tabname=>'subpart_date',granularity=>'PARTITION',partname=>'P200901')

    It will take the stats ONLY for the partition, but not for subparts.

    If I take the stats twice for 'PARTITION' and 'SUBPARTITION', I'll get all stats but it will take twice as long to complete.

    Is someone can you please tell me if I'm on the wrong approach? is it possible to understand that when I use the granularity of the "PARTITION", it can take the opportunity to use this same information it is collecting and provide statistics for subparts too to the RDBMS?

    Carlos,

    This composite partitioning (range-list, range-hash) do you use?

    First of all I think it's important to understand that statistical subpartition will actually not to be used by the cost based optimizer in previous versions 10.2.0.4 (but in 10.2.0.4 only with bugs without patch installed, see the link to the message below) and 11.1.0.6:

    http://Oracle-Randolf.blogspot.com/2007/03/subpartitions-and-optimizer-statistics.html

    http://Oracle-Randolf.blogspot.com/2008/04/revisiting-subpartition-pruning-and.html

    http://Oracle-Randolf.blogspot.com/2009/03/partition-oddities-part-1-severe-bug-in.html

    So, I'd be interested to see a case in the database pre - 10.2.0.4 where the optimizer actually using subpartition level statistics; I have not yet found one.

    Second, he must be aware of what Oracle offers several ways how to maintain the different level of statistics:

    -Less consumption of resources, but less quality: collection of statistics on the lowest level (e.g. subpartition) only. I hope all subparts of the partition have statistics, the higher levels (partition / global) will be inspired by the aggregation. This way, you get the low quality statistics on levels higher (e.g. no histograms will be generated by aggregation, number of distinct values potentially quite inaccurate), but you do not need to collect statistics on these levels. Note that if once you have collected statistics on the higher levels (indicated by the "GLOBAL_STATS = YES" column in the DBA_\ * views STATISTICS) will not perform this statistical aggregation. You must first remove the statistics of higher level using DELETE\ * _STATS have enabled new aggregation (next time gather you statistics on low levels and all partitions (sub-) have statistics)

    For more information about this approach, see for example here: http://oracle-randolf.blogspot.com/2008/04/exchange-partition-and-aggregated.html

    -Consumption of resources, but of better quality most: separate statistics on all levels

    - And the new modes supported by 10.2.0.4 and especially 11.1.0.6: APPROX_GLOBAL AND PARTITION (10.2.0.4), true incremental global statistics in 11.1.0.6 and the new algorithm for estimating AUTO_SAMPLE_SIZE introduced in 11g:

    http://structureddata.org/2008/07/16/Oracle-11g-incremental-global-statistics-on-partitioned-tables/

    http://structureddata.org/2007/09/17/Oracle-11g-enhancements-to-DBMS_STATS/

    http://optimizermagic.blogspot.com/2009/02/maintaining-statistics-on-large.html

    Another very good synthesis about the management of statistics has recently been published by Karen Morton: http://karenmorton.blogspot.com/2009/02/new-paper-and-cj-date-advert.html

    So in your case a database pre - 10.2.0.4 you should not bother with subpartition statistics at all (or you can show me otherwise I would be interested), and you can then try to find out if you could live with the above statistical approach of "sum" by simply collecting statistics on the level of partition, or if you need to collect statistics on the partition and the global level separately (you did not mention your current strategy to the global level statistics).

    If you install the 10.2.0.4 patch game you have several options and statistics subpartition can be used by the optimizer (but only in the case of beach-list composite partitioning, as far as I know), for example by using the option of PARTITION AND APPROX_GLOBAL introduced in this version. Note that you must install the unique patches to get this working properly as described by my post and the optimizer of blog post for the development group.

    Kind regards
    Randolf

    Oracle related blog stuff:
    http://Oracle-Randolf.blogspot.com/

    SQLTools ++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676 /.
    http://sourceforge.NET/projects/SQLT-pp/

  • Adding a few values for tab and use them in page

    I have an apex page that I want to use the same page for different tabs except that the query condition changes.

    Lets say, I have 3 tabs - Finance, sales, Marketing.

    I have a page which requests for the list of employees in a specific area (finance, sales, Marketing).

    I will eventually have 3 different types of queries, as below. The only change between them is the area.

    SELECT name, salary from employee where area = 'funding '.

    SELECT name, salary from employee where area = "sales";

    SELECT name, salary from employees where area = 'Marketing ';

    Is it possible to make my query in the following way to ensure that I get the TAB_ID of the value of the tab that I store.

    SELECT name, salary from employees where area is TAB_ID;

    What is the way to store one or more values of the TAB and use them in queries for a page.

    Your help is appreciated.

    Thank you

    user756931 wrote:

    Please update your forum profile with a real handle instead of 'user756931 '.

    I have an apex page that I want to use the same page for different tabs except that the query condition changes.

    Lets say, I have 3 tabs - Finance, sales, Marketing.

    I have a page which requests for the list of employees in a specific area (finance, sales, Marketing).

    I will eventually have 3 different types of queries, as below. The only change between them is the area.

    SELECT name, salary from employee where area = 'funding '.

    SELECT name, salary from employee where area = "sales";

    SELECT name, salary from employees where area = 'Marketing ';

    Is it possible to make my query in the following way to ensure that I get the TAB_ID of the value of the tab that I store.

    SELECT name, salary from employees where area is TAB_ID;

    What is the way to store one or more values of the TAB and use them in queries for a page.

    Assuming that by "tabs" you mean standard tabs and that the page contains a report of the region, so there is no way to do out of the box. Try to apply it using the standard tabs would hit two major obstacles:

    • He has no way of passing item values using tabs.
    • As all 3 tabs linking to the same page, they would be displayed under the current name of the page, which are strange and confusing.

    While it would be possible to work around this using the value ASK emanate a branch of each tab, and JavaScript, which would take you away from standard tab behavior, which is pretty weird, as is.

    Another possibility is to use the list rather than the standard tabs tabbed browsing, but which raise problems in integrating into the layout and navigation of the application structure.

    Therefore, I would propose two alternative approaches:

    1. by far the easiest way to implement this should forget the tabs and use a group of radio buttons or select list page to allow users to select the area, to include this item in the property Page to send Items of the region report and add dynamic action to refresh the report when the selection is changed. The report query would be:

    select
        e.name
      , e.salary
    from
        employees e
    where
        e.area = :p1_area
    

    In addition to being simple to understand and build, this has the advantage of being low maintenance and relatively future proof if the LOV which underlies the question of selection is dynamic and so automatically meets the future changes to the areas.

    2. If you are really determined to use tabs, then create 3 separate pages in finance, sales and Marketing with a tab for each, but locate the region report on an overall Page and display it conditionally on the necessary pages. The report query can then determine the desired area of the APEX_APPLICATION_TABS view by using the ID of the page to get the name of the associated tab:

    select
        e.name
      , e.salary
    from
        employees e
    where
        e.area = (select
                      aat.tab_label
                  from
                      apex_application_tabs aat
                  where
                      aat.application_id = :app_id
                  and aat.tab_page = :app_page_id)
    
  • How multi select documents out for signature and remove them?

    During the test a form, I sent many forms for signature. Now they clutter the page manage. Is there a way multi SELECT and delete them without doing them one by one?

    Hello Balusha,

    From now on, we do not have bulk option remove documents on the tab manage in E-Sign. But, I probably took this as a feedback.

    Kind regards

    -Usman

  • When someone calls me via Facebook chat, I can hear and see them, they can see me, but NOT to hear me. How can I fix it

    My brother and I are both on Facebook.  Last night, he used the video chat call.  I could see and hear. He could see me. but NOT to hear me.  How can I solve this problem.  My speakers were at the time.  Is there something else I have to do so that he can hear me?

    Hi Camgran,

    Thanks for posting in the Forum the Microsoft community.

    From the description, it seems that you have a problem with the appeal hearing problem video chat via Facebook.

    To better understand the question, please answer the following questions:

    1. is the Facebook-specific question?

    2. what browser do you use?

    3. What is the brand and model of the computer?

    4. have you made changes on the computer before this problem?

    5. are you able to hear the sound from the speakers?

    6. using a stand-alone microphone? Or a headset with external speakers?

    Check if the microphone is set as the default value under Speaker settings:

    http://support.Microsoft.com/kb/935309?WA=wsignin1.0

    Reference: How is the volume of the Microphone.

    Come back with more information to help you better.

  • How can I change the columns in the fluid grid to a darker color.  The default color is too gray for me to see them on my screen

    Thanks for any comments I receive. This version is CC2015.

    peoj

    Dreamweaver does not create columns colored for a grid "bootstrap" for good reason: each line has its own set of columns in the layout. So, if you nest a row within another column, the nested line gets a new grid layout of 12 columns (assuming you are using a default grid). Although having a color grid layout looks like a good idea, it would become very difficult to work as soon as you start the nesting of the lines.

    In Live View mode, Dreamweaver adds a handle to resize the column to the right edge of the currently selected column:

    There are also a handful of column Offset on the left edge

    When you drag handles, Dreamweaver snaps to the next column and it will update the .col-*-* or the classes in the display of the item. In the previous screenshot, you can see immediately that the currently selected column is an important feature of 10 columns wide and is offset by a column.

    It takes a little practice to get used to its operation, but it quickly becomes clear what are the columns of size without the distraction of a color to the background grid.

  • JS for resizing and scaling of grouped objects

    Hi, someone at - it pls advise how to write JS to resize and scale grouped objects...

    For example, if the group objects consists of forms and texts, when resized and scaled the text must also be enlarged or reduced as appropriate...

    Thank you very much..

    App.Selection [0] .horizontalScale = app.selection [0] .verticalScale = 50;

    Works for me - text frames get revised down with text and everything. It seems not serious if they are in a group or not.
  • When I type some characters often do not appear but if I wait for awhile and tap them again once they appear.

    This happens in all programs that I can type, (e-mail, WP). Sometimes I can type the characters if I come back, space or both using the arrow key and then forward and try again.

    Laura V:

    Thanks for your help. It was a very frustrating experience, not being is not in a position to have all the I type characters appear. I did a full scan and who was clean. I was not able to boot mode safe then I deleted all the programs that I installed for several months, but the problem of many characters not appearing not when I typed persistent. I was about to bite the bullet and to restore an image of my C drive from a hard drive external when I decided, just for completeness, to test the keyboard. I unplugged my wireless Logitech keyboard and plugged an old keyboard. Eureka! Typing all appeared OK. What a relief. I think that the rf in my wireless keyboard transmitter was at fault and that it was not send all the characters I typed. I should have checked the keyboard first, but it was only 3.5 years old and I couldn't believe that it went wrong so little time. All's well that ends well. Thanks again.
    Dave
  • want to create end-user for applicationa and allow them to log in application

    Hi friends
    In my application, I want end users can register and after registering themselves, they will be able to log in application with their user name and password... at this moment I am developing application developer apex... any ideas for that...

    any help, you will enjoy
    Rommy

    Published by: rommy on April 13, 2009 14:07

    The user have certain additional rights granted in order to create new apex users? I'd be VERY suspicious of allowing the right to be granted and again suggest using a custom table to hold user information...

    Thank you

    Tony Miller
    Webster, TX

  • I recently started to receive bank statements in the form of files PDF - can open and see them just fine, but how can I save to a folder on my computer?

    I have recently started to receive bank statements in the form of PDF files - can open and read files fine, but how can I save the files to a folder on my computer?

    The best way is to right click (Ctrl-click on Mac) on the url that you use to save the file on your computer. If you have a pdf file open in your browser, move your icon to the bottom of the screen, there should be a contextual toolbar. Click the floppy disk icon to save the file.

  • I have Ps CS6 running on a MAC Pro partitioned and using Windows 8.1. It was mainly for the resolution of the screen. However, as the Ps work the tiles on my screen and the icons at the top and to the bottom of the face are so small I don't see the correc

    I have Ps CS6 running on a MAC Pro partitioned and using Windows 8.1. It was mainly for the resolution of the screen.

    However, as the Ps work the tiles on my screen and the icons at the top and to the bottom of the face are so small I don't see the correctly.

    Can I enlarge these and the layers on the right to a box size readable?

    My UI elements appear tiny. | Error postal codes of Mylenium

    Mylenium

  • Download that takes a man and women face photo and combined see them what would look like a "child"?

    Download that takes a man and women face photo and combined see them what would look like a "child"? Photo and combined see them what would look like a "child"?

    Hello

    I suggest that you try to use the Google or Bing search engines for your question.

    These Forums are to help the poster having problems with Microsoft Products.

    See you soon.

  • When I'm signed Windows Live, my screen shows two lines and when I type my name and password I can't see them.

    When I sign live Windows my screen only showed when I type my name and passoword and lines I can't see them, and yet it opens to my email. What happens and how can I fix.  Also on some Microsoft sites, I can also not read the page it is blanck and only a few show blue lines but no words. Help I know not if I maybe downloaded somethng but need to read websites and I can't.  I went on the essential Microsoft website to download and I can see a picture but no words.

    Hi Marlene,

    The best place to ask your question of Windows Live is inside Windows Live help forums. Experts specialize in all things, Windows Live, and would be delighted to help you with your questions. Please choose a product below to be redirected to the appropriate community:

     

    Windows Live Mail

    Windows Live Hotmail

    Windows Live Messenger

    Looking for a different product to Windows Live? Visit the home page Windows Live Help for the complete list of Windows Live forums to www.windowslivehelp.com.

  • I tried to install windows 7 themes for xp and when I restarted my computer it keeps on opening of session and disconnects me immediately.

    I can't log on because of windows I tried to install windows 7 themes for xp

    Hello

    Step 1:

    Check if you are able to boot to the desktop in safe mode. To start in safe mode follow the link given below.

    http://support.Microsoft.com/kb/315222

     

    Step 2:

    If the problem does not occur in safe mode then boot to the desktop in normal mode and check that the third-party program is causing the problem. To configure your computer to clean boot follow the link below.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353

    Note: When you are finished troubleshooting, follow step 7 in the article to start on normal startup.

    Step 3:

    If this does not help you try to perform a system restore and see if that helps.

    http://support.Microsoft.com/kb/306084

    Note: When you perform the system restore to restore the computer to a previous state, programs and updates that you have installed are removed.

    Hope this information is useful.

    Amrita M

    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • The sp1 and sp2 already included if I just reinstall vista hp? Windows Update is not offer them and I can't see them in the history of the update.

    The sp1 and sp2 already included if I just reinstall vista hp? Windows Update is not offer them and I can't see them in the history of the update.

    We do not know what is on your HP recovery disks.

    Click Start > right click on computer > properties > he'll tell you he which SP you have installed.

    For all Service Pack/Windows Update issues:

    Windows Update Forum:

    It comes with Vista, upgrade install and activate Forum.

    You will get the best help for any problem of Update/Service Pack in the Windows Update Forum; the link below:

    http://social.answers.Microsoft.com/forums/en-us/vistawu/threads

    You will receive the best help here.

    See you soon.

    Mick Murphy - Microsoft partner

Maybe you are looking for

  • Strange (for me) email hack, need advice please

    Sorry if this isn't the right place to post this question but I need help please! A friend forwarded an email to me from his iPad, request information on the content of the e-mail.  The title of the e-mail with the phrase "Bill and W - 9.  I said to

  • HP Pavilion Notebook P1A79UA # a: cannot find #ABA P1A79UA Bluetooth

    Could not find the bluetooth settings in settings > devices or in Device Manager.  Help! Product name: HP Pavilion NotebookProduct number1A79UA #ABABIOS:F.61-09/24/2015Total memory: 8.00 GBName:Intel (R) processor Core i7-4510U CPU @ 2.00GHz

  • Why used my put nextbook my games on I had before I reset?

    Why my nextbook usually give my games I had on before resetting the * thing not happy at all and not any use to me if I can't plasy my games Original title: nextbook Moved from the community involvement Center

  • AUDIO & SOUND

    Hai accidentally, I uninstalled my audio & sound on my pc, can I know how to install their return.

  • Automatic Updates does not not for Windows XP

    Try to update my Windows XP from SP2 to SP3 but keep getting error code 0 x 80240036 and can't figure out what to do?  I cannot set up automatic updates website.  Help, please!