What is the 'Alter summary'

Hi All,
My DB is 11.2 Exadata box. When I checked one sql in v$sql, I found the sql it exeutes is 'ALTER SUMMARY "XXX"."XXXX_MV" COMPILE'
But I checked all distinct object type in dba_objects, no summary object_type at all.
I also googled this command but no many useful links.
Could someone give me some tips here, please?
Best regards,
Leon

You're right that SNAPSHOT was the old term.
Actually the current documentation talks about materialized views consisting of a summary table and the query.
http://download.oracle.com/docs/cd/E11882_01/server.112/e25554/basicmv.htm#i1007299
"ALTER SUMMARY ... COMPILE" is synonymous with "ALTER MATERIALIZED VIEW ... COMPILE".
I imagine that the double terms are either the result of indecision at some point or some ANSI requirement but there's no reference to "ALTER SUMMARY" in the documentation.

Similar Messages

  • What are the  FIELD SUMMARY in the API

    Hi
    I am kind of newbie to java. I was looking at the API and found that there was the class, methods for the class and the FIELDS.
    For example if we take String
    FIELD SUMMARY has one entry called CASE_INSENSITIVE_ORDER
    What does this FIELD SUMMARY mean.
    Any help will be greatly appreciated

    Fields are member variables of a class.
    You can access to the field by using SomeClass.FieldName provided your class has the access right.
    However, field access is not recommended in OOP design, find or create its get/set method instead.
    --lichu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • What does the 'Other' summary mean in iTunes

    whenever i sync my ipad to iTunes i always see the yellow bar that represent 'other' taking up quite a lot of space, so i'm wonder what does it mean.
    i have a lot of ebooks/files in the ipad is it because of this that i have about 1+GB of other space being taken up. i'm afraid that if i continue to add more ebooks/files into my ipad that it is going to eat up all of the space i currently have available.
    p.s. if i helps i'm using dropbox, adobe reader, and other various book/managing app to sort and organize my ebooks/files.
    p.p.s. is there a way for me to clear out some of the files that is being store in 'other' if it's not important?
    thank for the help in advance.
    Message was edited by: Linnt

    "Other" is app data and settings (including your ebooks in app date), Safari History and bookmarks, Notes, Calendar entries, the camera roll, text and email messages and any photos associated with contacts, - items that do not fall into the media category - apps, music, books, TV Shows, Movies, podcasts and so on.
    I have read that "other" should be around 250 - 750 MB in size. Of course, the more files that you have on the device, the larger"other" will be.
    If you see 4GB or 5GB of "other" that is probably indicative of a corrupt sync or bad files on the iPad. Sometimes syncing again will clear it up, removing and then resyncing photos might help as well. Sometimes the only thing that works is to restore the iPad.
    You can actually see what apps are accounting for the storage on the device. Go to Settings>General>Usage>Storage - tap on the app and you can see how much document and data storage each app is taking up in the documents and data setting.
    I have about 1.3 GB of "other" and that may be a bit too much, but my iPad is running great and I'm not about to restore it unless I run into a problem.
    Message was edited by: Demo

  • What is the use of 'ALTER DATABASE CLOSE'?

    Hello Everybody,
    SQL*Plus: Release 10.1.0.2.0 - Production on Ma Aug 15 21:28:30 2005
    Copyright © 1982, 2004, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> conn / as sysdba
    Connected.
    SQL> startup force
    ORACLE instance started.
    Total System Global Area 171966464 bytes
    Fixed Size 787988 bytes
    Variable Size 145750508 bytes
    Database Buffers 25165824 bytes
    Redo Buffers 262144 bytes
    Database mounted.
    Database opened.
    SQL> select status from v$instance;
    STATUS
    OPEN
    SQL> alter database close;
    Database altered.
    SQL> select status from v$instance;
    STATUS
    MOUNTED
    SQL> alter database open;
    alter database open
    ERROR at line 1:
    ORA-16196: database has been previously opened and closed
    If i have to shutdown the instance and database then
    WHAT IS THE USE OF 'ALTER DATABASE CLOSE' ?
    I need explanation. Why should i shutdown?
    Dont give me this answer.
    ORA-16196: database has been previously opened and closed
    Cause: The instance has already opened and closed the database, which is allowed only once in its lifetime.
    Action: Shut down the instance.

    If you read the documentation you will see that there is no ALTER DATABASE CLOSE command.
    This is an undocumented Oracle command, which we are not supposed to use. Consequently we are not allowed to complain about the way that it works. Instead we're supposed to use SHUTDOWN IMMEDIATE.
    Cheers, APC

  • Under Option Summary, the usage includes AUDIO, PHOTOS, APPS and OTHERS. What are the things included in OTHERS? It is using up my storage space.

    Under Option Summary, the usage includes AUDIO, PHOTOS, APPS and OTHERS. What are the things included in OTHERS? It is using up my storage space. Can someone please help?

    To add to Nick's comments, "Other" is typically approximately 1 gigabyte.  Occasionally for some users, it gets much (many times) bigger because they have some corrupt files.  If that's the case, it's best to restore the iPhone.
    Plug the iPhone into (current) iTunes, let it sync, then choose "Restore" on the right.  If restoring from the iPhone backup does not help, then restore (again) as new and then manaully sync the iPhone.

  • What is the Use of  "Alter database activate standby database"

    Hi ,
    I appreciate your time.
    I just wanted to know what is the use of "Alter database activate standby database" command when doing the failover. How different it will act in failover process. Can we use this command in SwitchOver.
    Thanks in advance.

    Hi Uwe Hesse,
    Wonderfull... good info....
    So my understanding is that the use of "ACTIVATE PHYSICAL STANDBY DATABASE" is conditional and depends on the redo log gap and the Database status(Able to mount or not).
    Condition 1: If the Db is in Mount state and Redo log gap is successfully filled.
    1) Flush any unsent redo from the primary database to the target standby database.
    SQL> ALTER SYSTEM FLUSH REDO TO target_db_name;
    Note: If the above Statement Completes successfully without any errors.
    2) Stop Redo Apply.
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
    3) Finish applying all received redo data.
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE FINISH;
    4) Verify that the target standby database is ready to become a primary database.
    SQL> SELECT SWITCHOVER_STATUS FROM V$DATABASE;
    5) Switch the physical standby database to the primary role.
    SQL> ALTER DATABASE COMMIT TO SWITCHOVER TO PRIMARY WITH SESSION SHUTDOWN;
    Condition 2: If the DB is not able Mount and Redo Gap can't be filled.
    Important Note: If the the above command in STEP3 gives error, some received redo data was not applied. Try to resolve the cause of the error and re-issue the statement before proceeding.
    If the error condition cannot be resolved, a failover can still be performed (with some data loss) by issuing the following SQL statement on the target standby database:
    SQL> ALTER DATABASE ACTIVATE PHYSICAL STANDBY DATABASE;
    Thanks in advance.

  • What is the option of 'parallel' do in alter index.. ?

    In the alter index command the option of parallel is there ?
    alter index <indexname> parallel <integer>
    What exactly does it do ?
    PARALLEL integer : Specification of integer indicates the degree of parallelism,
    which is the number of parallel threads used in the parallel operation. Each parallel thread may use one or two parallel execution servers. Normally Oracle calculates the optimum degree of parallelism, so it is not necessary for you to specify integer.

    Parallel clause if used allows one to break-up a given SQL statement so that its parts can run simultaneously on different processors in a multi-processor machine. Uisng parallel while rebuilding indexes is a good option to fasten up things.But this parallelism should be change back to noparallel or to degree 1(both are same) after rebuilding.When you use parallel clause you can check in the V$session view , many (P000,P001,P002 etc) processes get started, to fasten the query. You can go through through the below link which would be helpful for you.
    Link: [http://www.orafaq.com/faqopq.htm#PERF]
    Re: Parallel degree for index
    HTH
    Anand

  • TS1503 Does anyone know what "other" means in the sync summary bar? I have 850mb using storage space in my iphone and can't understand what that is. I have tried to delete everything, restore to factory settings and change the icloud account. Thanks.

    Does anyone know what "other" means in the sync summary bar? I have 850mb using storage space in my iphone and can't understand what that is. I have tried to delete everything, restore to factory settings and change the icloud account. Thanks.

    Hi there AnthPy,
    You may find the troubleshooting steps in the article below helpful.
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    -Griff W. 

  • Alter database OR alter system?? what is the logic?

    Hi,
    this is just a general question not related to any particular issue. I seem to be missing the logic behind when we need to use the "alter system ... " statements and when we need to use the "alter database ..." statements. Is there a logic I can use to guess ? Or we only need to remember them (or look up for them)?
    Let's take an example.
    alter database archivelog; & alter system checkpoint;
    OR
    alter database add logfile; & alter system set undo_retention=800;
    If you have a key that can be generally applied please let me know as I am not able to find it. Thank you,
    enrico

    I am not sure if there is a general rule but this is what I use:
    alter database is about modifying the database architecture, like data files, archived log files etc.
    alter system is about modifying the instance. so, you are modifying the way oracle runs. Remember that all parameters should be done with alter system (like undo_retention)
    hope this will help you.

  • What is the difference between alter database and alter tablespace?

    Hi
    I was searching for the difference between these 2 commands and have gotten not much conclusive result. Can anyone enlighten me on what is the difference if I were to use ALTER DATABASE OPEN READ ONLY compared to ALTER TABLESPACE x READ ONLY?
    My objective to is control, such that sometimes users can edit the database, and other times, not possible to do so.
    Thanks in advance.
    wy

    Hi,
    A database can be made with more than one tablespace.
    You can have a table called A into a tablespace TSA and a table called B into a tablespace TSB, then if you use ALTER DATABASE OPEN READ ONLY any tablespace can be writen, but if you use ALTER TABLESPACE A READ ONLY, you can't write, insert into table A because it is read only, but you can write, insert rows into the table called B because the tablespace B isn't read only.
    You need to do ALTER TABLESPACE B READ ONLY to deny the inserts into table B.
    You should do this for all tablespace that make the database.
    Regards,
    Jordi

  • In the memory summary, what is "Other Players?"

    Currently I have a Flash program which, in IE9, has a 1GB footprint with 311MB of "Uncategorized" allocations and 541MB of "Other Players."
    1) What does the "Other Players" categorization in the memory panel mean?
    2) What's the plan for adding additional memory categories to help developers understand what's going on at runtime?
    Thanks.

    Hi Joe.
    A Flash player process can simultaneously play multiple SWFs, either because you are in a browser that has more than one SWF playing (on the same web page, or in different browser windows), or because you are using worker threads. When you look at the Scout session for one of the SWFs, the "Total Memory" number tells how memory the Flash Player process is using, and the "Other Players" category tells how much memory is being used by SWFs other than the one you're currently looking at.
    Our highest priority right now is to improve the reporting of memory usage. Watch for some cool new memory features in future release(s).
    Best regards,
    Mark Shepherd
    Scout Engineering

  • What determines whether an application gets a green check or a yellow warning sign in the deployment summary screen when using an MDT/UDI task sequence?

    I am trying to get Office 2010 to install using a UDI task sequence, and it IS installing, but it has a yellow exclamation point next to it at the summary screen after the task sequence completes, as does another app I am trying to install.
    The apps that use an .MSI are fine, and get the green check, but the two apps that use .exe for their installers get the yellow warning sign.  I assume this has to do with exit codes or detection rules, but I am very new to SCCM (using 2012 and MDT
    2012 Update 1), so I need some help.
    Thank you! 
    EDIT: This probably has to do with the fact that SuccessOrFailureCode being blank.  I have been pouring over .vbs scripts and logs, but they all seem to indicate that my application installs just fine, with an exit code of 0. Where does this screen
    get the SuccessOrFailureCode?
    Like
    This
    Quote
    MultiQuote
    Edit

    I have some updated info on this problem.
    I am trying to install Symantec Endpoint Protection with a custom wrapped .EXE file, and I have created detection rules for the install.
    According to AppEnforce.log, SEP is installing and returning an Exit code of '1', and that is being handled with my custom return code handling, which I've defined as a 'success'.  However, the deployment summary is still showing a yellow exclamation point
    next to the SEP install, and the SuccessOrFailureCode is blank.
    Why isn't the SuccessOrFailureCode equal to '1'?  Where is the disconnect between the AppEnforce.log and the deployment summary.

  • Any way to change the ESS Summary Screen and reimbursement amount?

    Hi All,
    We are on ECC 6.0, EHP4 and using ESS.
    Employee's have a company paid corporate card but employees are allowed to enter 'out of pocket' transactions so that they may be reimbursed for cab fares, parking, tips, or other situations that require cash.
    We have a problem with these 'out of pocket' entries on the summary screen in ESS (and in PR05 for that matter but we don't use PR05). This might also be known as the 'Review and Send' screen. The Summary section displays Total Paid reciepts, Mileage Reimbursement (if any), Total Travel Expenses, Paid by Company, Amount Reimbursed and Amount Paid Out.
    When a user enters one of these 'out of pocket' expenses we exepect them to be reimbursed for this amount. The FI and Payroll postings do reflect this requirement but the summary screen does not show it. I have determined how to update the summary screen in the ABAP code but there is no user-exit or the like to actually make the alterations. Does anyone know what fields control how the system determines what is to be reimbursed? I have tried making updates to the reciept data using interface: IF_EX_TRIP_WEB_CHECK but haven't had any luck. I was hoping changing PTRV_UTIL_BELEG-CFIRMA (paid by company) would make a difference or some other value in PTRV_UTIL_BELEG. If there is some combination I have not been able to figure it out.
    Any help or direction is appreciated.
    Thanks,
    Scott

    Hi Raj,
    Thanks for your reply. Let me explain a little more on what we are trying to do. Our requirement is that we have 1 and only 1 expense type for each type of expense. We have not created both a "paid by company" and "reimburse to employee" expense type for each. All of our expense types are set up as "paid by company". There are over 100 so you can imagine how awful this would be for the users if it was doubled.
    We are controlling the reimbursement with the service provider field (PAYOT). Thus we have assigned each expense type to 2 wage types. An expense that comes from the credit card feed has a service provider "VI" for our VISA card. An expense that is entered manually has a "blank" service provider field which we then classify as being "out of pocket" and this amount should be reimbursed to the employee.
    As I said, this all works fine other than the summary screen. Postings to FI and Payroll work well. I could of course, change the config as you mentioned but then we would have other problems.
    Any other ideas? Maybe what we are trying to do just should not be done. Our last resort is to completely hide the summary screen if I can't figure anything out. This is not ideal but would be better than showing incorrect data.
    -Scott

  • What is the Tcodes for Uploading of data using BDC & CATT

    PP members:
    I was going through the <b>cutover activities</b> ,  and what I understood is  we transfer all the legacy system data into SAP before going live
    The data upload follows certain steps (depends on the organizational design load strategies)
    First we upload all the master data ( material master, BOM, W/C's & Routings)
    Then the transaction data ( Ideally speaking, there should no open orders i.e. WIP as on the day of cutoff )
    If the WIP (Work in Process) is unavoidable then the materials consumed shall be treated as <b>materials of the previous stage</b> and necessary adjustments shall be made after cutover day
    At this point, I could not able to understand what does the author mean <b>materials of the previous stage</b>
    Now comming to the uploading of data into SAP from legacy system, we use tools like LSMW, CATT & BDC
    Is it a must to use <b>only LSMW tool</b> to upload master data or any other upload tools are fine
    Lastly,. I am not sure about the Tcode of CATT & BDC
    Summary of the questions:
    1.What does the author mean  <b>material of previous stage</b>, for WIP materials during cutover activities
    2. Is it mandatory to use only LSMW tool for uploading for master data
    3. What are the Tcodes for upload tools CATT & BDC ?
    Thanks for your time
    Suren R

    Dear,
    1.What does the author mean material of previous stage, for WIP materials during cutover activities - as i understood, what is the stage of material..like it must have gone through 2 work centers and other 2 is left. i.e. you need to create Production order with only 2 operation as other 2 is already over. - usually it is done in such a way that we will create Production order and confirm till 2 operations and WIp is calculated so thatb FI will tally the books in SAP and lagacy.
    2. Is it mandatory to use only LSMW tool for uploading for master data - no you can use any tool as required and suits yr requirement
    3. What are the Tcodes for upload tools CATT & BDC- BDC through a prog in SE38. CATT through - SCEM.

  • What is the difference between ActionEvent and SelectionEvent?

    Technical Environment:
    Oracle jDeveloper 11.1.1.4.0
    Windows XP
    I think there is something behind ActionEvent and SelectionEvent that makes my code doesn't work.
    Here is my problem:
    I have three tables. One is a master table, contains summary of something. If I select a row on this table, the second table will show some data, based on the selected row on the first table. Yup, this is a ViewLink, and it is working perfectly. Now, I want the same thing works between the second and third table. If I select a row in second table, the third table should show some data, based on the selected row on the second table. The third table is a ViewObject with some bind parameters. I need to assign values to these parameters, which I get the value from the selected row on the second table. How can I do this?
    I have tried to use ExecuteWithParams. Select the row from second table, get the values, pass it into ExecuteWithParams Form, execute and.. it works.. I get the result on the third table. Here is the code how I do that:
    public void updateTableEvent(ActionEvent actionEvent) {
    DCIteratorBinding iter = gen.getIteratorBinding("SearchView3Iterator");
    Row rw = iter.getCurrentRow();
    oracle.jbo.domain.Date strDate = (oracle.jbo.domain.Date) rw.getAttribute("Tgl");
    String strRkno = (String) rw.getAttribute("Rkno");
    oracle.jbo.domain.Number strRkId = (oracle.jbo.domain.Number) rw.getAttribute("Rkid");
    DCIteratorBinding iterParam = gen.getIteratorBinding("variables");
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pRkId", strRkId);
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pTgl", strDate);
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pRkNo", strRkno);
    OperationBinding operationBinding = gen.getOperationBinding("ExecuteWithParams");
    Object result = operationBinding.execute();
    But when I tried the same thing on SelectionEvent, I got nothing.. no error and also no result. What I want is just select the row on the second table, and get the result on the third table, with no any button pressing. Here is the code:
    public void onRowSelect(SelectionEvent selectionEvent) {
    DCIteratorBinding iter = gen.getIteratorBinding("SearchView3Iterator");
    Row rw = iter.getCurrentRow();
    oracle.jbo.domain.Date strDate = (oracle.jbo.domain.Date) rw.getAttribute("Tgl");
    String strRkno = (String) rw.getAttribute("Rkno");
    oracle.jbo.domain.Number strRkId = (oracle.jbo.domain.Number) rw.getAttribute("Rkid");
    DCIteratorBinding iterParam = gen.getIteratorBinding("variables");
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pRkId", strRkId);
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pTgl", strDate);
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pRkNo", strRkno);
    OperationBinding operationBinding = gen.getOperationBinding("ExecuteWithParams");
    Object result = operationBinding.execute();
    So.. what is actually happening here? What is the differece between ActionEvent and SelectionEvent? Why do they give me difference response?
    Thanks for any comments.
    Regards,
    Novan Ananda

    Hi,
    ActionEvent :
    A semantic event which indicates that a component-defined action occured. This high-level event is generated by a component (such as a commandbutton,commandLink) when the component-specific action occurs (such as being pressed).
    SelectionEvent :
    Event that is generated when the selection of a component changes.
    //you can also search in api's

Maybe you are looking for

  • Error while creating a VIEW.Please GUIDE.

    Hi, I am getting the error FROM sdi S where S.sdi_num=35128 Error: missing expression when I Try to create a VIEW AS defined below: Am I missing out anything please? Create or Replace VIEW sdiview AS SELECT sdi_num, vers_num, cursor(SELECT acnt FROM

  • Decryption of image using AES in windows 8.1

     Hi ,     I am developing an app in windows 8.1, in which I got image in decryption format , it was encrypted using AES and I know the key I tried in oneway but i am getting an error "The supplied user buffer is not valid for the requested operation"

  • Email Address Link Issues

    Ok, I like to think that I am able to understand the basic items in this program. That being said, there are small parts that would make me pull my hair out, if I had hair. I have a form that I have finished up. At the bottom of the form there is a l

  • App Store not loading over wifi on iOS 6

    Since I've updated to iOS 6, I haven't been able to load pretty much anything in the App Store while connected to wifi. It all works perfectly fine over 3G... But I have 130 updates waiting and I'm not using my 3G data for that. I've also been having

  • How do i attach a photot to a phone number

    Hi, I am an old git so a techno biff.  How do i attach a photo to a phone number so that when i ring the number that photo pops up? Thanks