Mv references a synonym in the FROM list

i want to create fast refreshable MV using synonym.
First of all it does allow to create fast refreshable MV using synonym.
I have created MV using force option.
While using DBMS_MVIEW.EXPLAIN_MVIEW to know capability of the MV , i found that "REFRESH_FAST" is not possible due to "mv references a synonym in the FROM list" .
But while i communicated with Metalink it answered me that "There is no indication that use of a synonym is restricted in this case. "
So i need help here .
Would it be possible to create fast refreshable MV using synonym or any other way around ?

Yes i reported this fact that fast refreshable MV is not allowed on synonym in 9.2 but at first communication they said that there is no such restriction, but when sent output of MV_CAPABILITIES_TABLE for that MV when restriction was mentioned like fast refresh not allowed due synonym then they lastly said that this restriction is there in 9i and even in 10.1 release. in 10.2 it has been removed.
Anyways Thanks for your reply.

Similar Messages

  • [MaterializedView] : "mv references a synonym in the FROM list "

    I want to create fast refreshable MV using synonym.
    First of all it does allow to create fast refreshable MV using synonym.
    I have created MV using force option.
    While using DBMS_MVIEW.EXPLAIN_MVIEW to know capability of the MV , i found that "REFRESH_FAST" is not possible due to "mv references a synonym in the FROM list" .
    But while i communicated with Metalink it answered me that "There is no indication that use of a synonym is restricted in this case. "
    So i need help here .
    Would it be possible to create fast refreshable MV using synonym or any other way around ?

    Yes i reported this fact that fast refreshable MV is not allowed on synonym in 9.2 but at first communication they said that there is no such restriction, but when sent output of MV_CAPABILITIES_TABLE for that MV when restriction was mentioned like fast refresh not allowed due synonym then they lastly said that this restriction is there in 9i and even in 10.1 release. in 10.2 it has been removed.
    Anyways Thanks for your reply.

  • Os x lion email compose - how to clear "from" list

    how do you get mail to clear the entires in the "from" list when you are replying or composing a new messages. also how do these entires get on the list ?

    They come from the accounts you have configured, specifically, the configured smtp servers.
    Go to Mail Preferences, Accounts, select an account, and select the Account information tab.
    Click on the outgoing mail server dropdown and select Edit smtp Server List…
    Get rid of the ones you don't want.
    Also, in the Account preferences, you can set each email account to only use a specific server.

  • How to Hide or Disable the Edit option of the Sharepoint list from the Ribbon Bar

    hi,
    i want to hide the Sharpoint list  Edit Item option from the ribbon bar for all the users
    below is the screen shot for reference
    Thanks & Regards 
    sal

    if it is for all libraries in a site, then u have to activate a feature. Follow this http://msdn.microsoft.com/en-us/library/ff408060.aspx 
    if it is for one single library, add a content editor webpart to your page and add the below  css to it.
    this is for hiding the Upload Button in ribbon, likewise, get the id of the edit button, using F12 developer tools :)
    <style type="text/css">
    #Ribbon\.Documents\.New\.AddDocument-Large
    display:none !important;
    </style>
    worked for me  :) 
    Let me know if u need further help.

  • The truth about objects, references, instances and cloning (Trees and Lists

    Hello
    As a few of you may have know from my postings over the past few weeks, ive been building my first real java ap and trying to learn along the way, hitting a few snags here and there.
    One main snag i seem to have been hitting a fair bit is objects and instances, im kinda learning on how they work and what they mean but as a php programmer it seems to be very different.
    as pointed out to me if you have objectA=objectB then in php you have two objects that share the same value but in java you have still one object value and one object pointing to the value.
    sooo my first question is
    if i have this
    Object objA=new Object()
    Object objB=objA()then object A creates a new memory allocation for the object data right? and object B is simply a reference to the object A memory allocation right?
    so therefore there is no instance of objectB? or is there an instance of object B but it just takes up the same memory allocation as object A?
    anyway, what is the point of being able to say objB=objA what can that be used for if not for making a copy of an object (i understand now that it doesnt copy an object)
    My second question (which i think i actually understand now, but im posting it to see if the answers may help others)
    If i have a List structure (e.g. arraylist) then when i add a datatype such as a treemap does it not add the changed treemap, ill try and explain with code
    ArrayList mylist=new ArrayList()
    Treemap myTree=new Treemap()
    myTree.put("hello","howdy");
    myTree.put("bye","cya");
    mylist.put(myTree);
    System.out.println(mylist.toString());
    myTree.put("another","one");
    mylist.put(myTree);
    System.out.println(mylist.toString());now to be honest ive not actually tried that code and it may actually procude the right results, but from my experience so far that similar sort of thing hasnt been working (by the way i know the above code wont compile as is :p)
    anyway what i assume is that will output this
    [Hello,howdy,bye,cya] <<this is the first system out
    [Hello,howdy,bye,cya,another,one  <<this is the second system out
    Hello,howdy,bye,cya,another,one] <<this is the second system out
    where it should produce this
    [Hello,howdy,bye,cya,
    Hello,howdy,bye,cya,another,one]
    Why when I update the treemap does the arraylist change, is this because the thing that is being put in the array list is infact not an object but simply a reference to an object?
    thanks for everyones help so far :)

    as pointed out to me if you have objectA=objectB then
    in php you have two objects that share the same value
    but in java you have still one object value and one
    object pointing to the value.Some years ago, I built a small website managing data saved in an XML file using PHP. Being used to Java, I used an OO approach and created classes managing data structures and having setter/getter methods. The fact that PHP did actually create a copy of any object being passed as and argument made me crazy. This way, I wasn't able to reach the same instances from several different places in my code. Instead, I had to put a certain operator ("&" I think) before any reference to force PHP not to make a copy but pass the reference. I also found a note on the PHP site saying that copying was faster than passing the reference, which I actually couldn't believe. If I'm not wrong, they changed the default behaviour in PHP5.
    if i have this
    Object objA=new Object()
    Object objB=objA()then object A creates a new memory allocation for the
    object data right? and object B is simply a reference
    to the object A memory allocation right?The statement "new <Class>" allocates memory. The reference itself just takes up a few bytes in order to maintain some administrative data (such as the memory address). References are basically like pointers in C, though there's no pointer arithmetics and they can't point to any arbitrary place in memory (only a legal instance or null).
    so therefore there is no instance of objectB? or is
    there an instance of object B but it just takes up
    the same memory allocation as object A?There is an instance of objectB, but it's just the same instance that objectA is pointing at. Both references objectA and objectB contain the same memory address. That's why they'd produce a result of "true" if compared using the "==" operator.
    anyway, what is the point of being able to say
    objB=objA what can that be used for if not for making
    a copy of an object (i understand now that it doesnt
    copy an object)Sometimes you don't want to make a copy, as 1) it consumes more memory and 2) you'd lose the reference to it (making it more difficult to tell what instance is actually accessed). If there was no way to pass a reference to an object into a method, methods wouldn't be able to affect the original instance.
    Why when I update the treemap does the arraylist
    change, is this because the thing that is being put
    in the array list is infact not an object but simply
    a reference to an object?The ArrayList doesn't change at all. It's the instance that's being changed, and the ArrayList has a reference to it.

  • Select from table without specifying the column list.

    I want to reference the columns in select list without specifing the column name of a table.
    For example i am having a table called emp(id number,name varchar2(30)).
    I want to write a query which will display the name of the employees.
    But i don't want to specify the column name in the select list.
    Can anybody help me in this regard.
    Thanks in advance.

    I want to write a query which will display the name
    of the employees.
    But i don't want to specify the column name in the
    select list.So what do you want to specify in the select list?
    One way to display the names of the employees without specifying that you want the names of the employees would be
    select * from emp

  • How can we remove items from the VF04 list?

    We have a long list of items in VF04 that, for various reasons (some process related, some due to errors), are not to be billed. We have looked at applying filters to the list but there is nothing really suitable to hide these individual documents e.g. we could filter out some dates where none of the items on that date are to be billed but other dates have a mix of items we want to bill and others we don't.
    I have done a search of this forum but didn't find a previous topic with a quick and simple method to remove items from the list .
    Is there a method, other than billing them or sorting each issue individually, to permanently remove individual documents from the VF04 list?
    Thanks in advance for any help.
    David

    Hi,
    David,
    Download a list of Pending delivers doc form VF04.
    Paste the list in T.Code : VL09 (Delivery reversal) and reverse the delivery.
    Then go to T.Code: VL06G Select the list of deliveries that has been reversed, select/delete all un- wanted deliveries.
    This way you can remove all unwanted pending deliveries forn Billing due list (VF04).
    Thanks & Regards,
    R.Janakiraman

  • I can't print wirelessly using Airport Express.  I have my HP printer connected to a USB hub, and the hub to the Airport Express, but when I select the HP from the printer list, my MacBook says the printer is "off-line" - even when it is not.

    I can't print wirelessly using Airport Express.  I have my HP printer connected to a USB hub, and the hub to the Airport Express, but when I select the HP from the printer list, my MacBook says the printer is "off-line" - even when it is not.  I've tried several USB connectors, and several different ports on my USB hub; same result.  I need to have the HP connected to the hub 'cause from there it's connected to our desktop Mac.

    Hi,
    I am currently replying to this as it shows in the iChat Community.
    I have asked the Hosts to move it to Snow Leopard  (you should not lose contact with it through any email links you get)
    I also don't do Wirelss printing so I can't actaully help either.
    10:01 PM      Friday; July 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • I've a new account on iMac.  When composing an email the contact list does not show up on the bar.  WWhen I start keying in a name, it comes up with the address.  How do I engage the  contact list from the email?

    I've a new account on iMac.  When composing an email the contact list does not show up on the bar, which would allow me to select the persons I want to include on the distribution of the email.  When I start keying in a name in the email, it comes up with the person's address, which shows it is synced.  How do I engage the contact list from the email like I do on my old account (where a contact list icon shows up, along with the "attach" and other icons) ?

    With the New Message window open, go to the View menu and select "Customize Toolbar...".
    In the screen that opens, drag the item labelled "Address" into the Toolbar area of the New Message window, then click the "Done" button.
    That item should be then added to the Toolbar for the New Message window.
    Note that the main Mail window and the New Message window (as well as the separate message window if you open a message that way) use different toolbars - the settings/inclusions for one do not carry over to another.

  • I have the iPhone 5 and have with 6.0.1 software version.  Although I had them when I moved from iPhone 4 to the 5, the latest update has most of my songs on the phone listed in grey (over 95% of them) and I can't play them.  They are still listed though.

    I have the iPhone 5 and have with 6.0.1 software version.  Although I had them when I moved from iPhone 4 to the 5 (could play them), the latest update has most of my songs on the phone listed in grey (over 95% of them) and I can't play them.  They are still listed in the iTunes library.  When I look in the Summary for the iPhone, it shows Audio as only .16 GB - I have over 5 GB of songs, so what gives?
    P.S. When I look at my Playlists most of the songs are greyed out.  However, at the bottom of the list there is a cloud icon with a downward facing arrow.  When I click on it each song starts to "load" and after a few minutes I have the songs back on in the list.  I have to do this to all my playlists (I had over 100) in order to get access to all my songs.  Then I did a sync and it happened again!
    I use iCloud for documents and some other things (calendar, contact, etc.) but am not aware that I have anything music-wise in the cloud.  Any thougnts?

    You may have to try deleting all the music from your phone (by going to Settings>General>Usage>Music, swipping All Music and tapping Delete), then sync it all back on with iTunes in order to fix this.

  • I have a iPod nano 5th generation and there's a song I'm trying to play, but each time I click it from artist it just shows the songs name again. And when I try to click the song from the song list it just skips. How can I fix this?

    Pretty much I have a song on my iPod 5th gen nano that doesn't wanna play, its just one song every other song works. I click it and it show the thing when a song is about to play but then it instantly goes back to where you click on the song. And when I click on it in the songs list it skips immediately to the next song on the list. I have tried restoring my iPod but the song still won't work I've also tried removing the song from the library and the putting it back on iTunes but still no luck. What do you guys suggest I do?

    Can you play the song in iTunes?
    If you can't the song file is probably corrupt and needs to be replaced.

  • The bullet list, numbered list and the normal text is not converting when I am converting from RH 9 to MS Word 2010

    Hi all,
    Greetings for the day
    I am created a new CSS in Robohelp 9. I have also created a new template in Word 2010. The style sets for different information elements like (Heading, bullets, body text, ) are more or less same between the CSS and the new templates. I am also able to map the .css styles to Word template when I am converting from RH to Word as I am getting the necessary option in the drop-down list.
    However, when the output is generated, the bullet, the numbered list and the body text is not converting at all. The body text works sometimes. However, the numbered list and bullet list is coming out as images.
    If anybody knows the solution, I can share the .css and Word template.
    Thanks in advance.
    Regards,
    Parag Deb

    Create a new project with two or three topics containing lists of both types. Generate a printed output that shows the problem. Then zip it up and send it to me. See the Contact page on my site for instructions.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to get additional field from the second list base on lookup information column ?

    Hi everyone,
    Currently I created a SharePoint hosted Apps project and I need to know how can I get additional field from the second list base on lookup information column. example List1 Have 2 columns column1 and column2(Lookup Information from list2 (category)),
    List2 have 3 columns title, and category, and color.  so how can get the title and color from list2 base on this lookup information column (SharePoint Hosted apps and Javascript code)? that is possible?
    Best regards,
    ------------------------------------------------------------ ---Tola---

    You can build one custom lookup control. Refer to the following post
    http://www.stuartroberts.net/index.php/2012/10/03/enhanced-lookup-field-part-1/
    Alternatively, try the following solution from codeplex
    http://sp2010filteredlookup.codeplex.com/
    http://filteredlookup.codeplex.com/
    --Cheers

  • How to select multiple addresses from the contacts list to send an email?

    How do I select multiple addresses from the contacts list at one time to send an email. Each time I select one, the address book closes and I have to touch the "+" key to open it back to select another address. Is there a way to select all of them at one time instead of making a group? Thanks.

    Yes, once you select a person from your Contacts app, you either need to select more from the '+' button or you can tap in the 'to:' field and type in the first few letters of a contact and select from the list. Kinda bummer but gotta make do.

  • Delete songs from the purchased list

    Is there any way to delete songs from the purchased library list?

    I no longer like the song, so I would like to get rid of it. If I was tired of a CD, I would get rid of it. It seems like I should be able to do the same thing with the purchased list.

Maybe you are looking for

  • Sample ECC 6.0 program to display table structure

    As an exercise after taking a OO class, I created the following.  Hope some people can find it useful.  I have to admidt, I do not really understand everything it does.  It was created by reviewing some of the SAP Demo programs and some notes from cl

  • How do I customize the Mac OS X screen inactive settings?

    can someone tell me how i can change the settings so that when my screen is inactive is doesn't dim and then turn off so quickly? thanks.

  • Sql in jsp

    can n e 1 tell me where i am going wrong i am trying to use sql in a jsp to try to take out specific tuples from a table in my db but it is not working. i have been looking at the code for ages and can't figure out where i'm going wrong. please help!

  • PI7.1 install error on windows server 2008 64 bit

    error at import ABAP TRACE: 2009-03-14 06:50:03 com.sap.inst.migmon.LoadTask run Loading of 'SAPNTAB' import package is started. INFO: 2009-03-14 06:50:03 com.sap.inst.migmon.LoadTask processPackage Task file 'C:\Program Files\sapinst_instdir\PI71\IN

  • Export with Photokit Sharpening

    I am trying to figure out how to use the export function of LR to somehow export and sharpen with Photokit. There is a box for "post-processing" in the LR export window but I'm not sure if I need to make a droplet from CS3 or an action or what to get