AWM 10.2.3.0 version update questions

Hi to all,
I have created a cube on Analytic Workspace Manager 10.2.3.0 and created a materialized view using View Generator plug-in. Now, I need that, if i change data on my fact table, the materialized view is refreshed with new data. I've read that Analytic Workspace Manager 11g offers a visual GUI to do this, but I use an Oracle Database 10g, so i cannot use 11g version (is this right???). How can i refresh my materialized view manually when my fact table changes? I am not an expert so I would need a step by step tutorial.
Thanks
Giancarlo

Hi,
I have problems yet. I creates 3 views for my 2 dimensions (ASSISTITO, TEMPO) and 1 cube (CUBO1) using View Generator plug-in. Plug-in generates following code:
ASSISTITO_DIM_DIMVIEW:
CREATE OR REPLACE VIEW ASSISTITO_DIM_DIMVIEW
(ASSISTITO_DIM, ASSISTITO__LEVEL, ASSISTITO__SDSC, ASSISTITO__LDSC, ASSISTITO__NOMINATIVO_LVLDSC,
ASSISTITO__ASSISTITO_GE_PRNT)
AS
SELECT "ASSISTITO_DIM","ASSISTITO__LEVEL","ASSISTITO__SDSC","ASSISTITO__LDSC","ASSISTITO__NOMINATIVO_LVLDSC","ASSISTITO__ASSISTITO_GE_PRNT"
FROM table(OLAP_TABLE ('MMGDWH.WORKAREA duration session',
'&(ASSISTITO_DIM_LIMITMAP)'))
MODEL
DIMENSION BY (
ASSISTITO_DIM)
MEASURES (
ASSISTITO__LEVEL,
ASSISTITO__SDSC,
ASSISTITO__LDSC,
ASSISTITO__NOMINATIVO_LVLDSC,
ASSISTITO__ASSISTITO_GE_PRNT
) RULES UPDATE SEQUENTIAL ORDER()
TEMPO_DIM_DIMVIEW:
CREATE OR REPLACE VIEW TEMPO_DIM_DIMVIEW
(TEMPO_DIM, TEMPO_DIM_LEVEL, TEMPO_DIM_LDSC, TEMPO_DIM_SDSC, TEMPO_DIM_TEMPO_DIM_DSO_1,
TEMPO_DIM_END_DATE, TEMPO_DIM_TIME_SPAN, TEMPO_DIM_MESE_LVLDSC, TEMPO_DIM_QUARTO_LVLDSC, TEMPO_DIM_ANNO_LVLDSC,
TEMPO_DIM_CALENDAR_YEA_PRNT)
AS
SELECT "TEMPO_DIM","TEMPO_DIM_LEVEL","TEMPO_DIM_LDSC","TEMPO_DIM_SDSC","TEMPO_DIM_TEMPO_DIM_DSO_1","TEMPO_DIM_END_DATE","TEMPO_DIM_TIME_SPAN","TEMPO_DIM_MESE_LVLDSC","TEMPO_DIM_QUARTO_LVLDSC","TEMPO_DIM_ANNO_LVLDSC","TEMPO_DIM_CALENDAR_YEA_PRNT"
FROM table(OLAP_TABLE ('MMGDWH.WORKAREA duration session',
'&(TEMPO_DIM_LIMITMAP)'))
MODEL
DIMENSION BY (
TEMPO_DIM)
MEASURES (
TEMPO_DIM_LEVEL,
TEMPO_DIM_LDSC,
TEMPO_DIM_SDSC,
TEMPO_DIM_TEMPO_DIM_DSO_1,
TEMPO_DIM_END_DATE,
TEMPO_DIM_TIME_SPAN,
TEMPO_DIM_MESE_LVLDSC,
TEMPO_DIM_QUARTO_LVLDSC,
TEMPO_DIM_ANNO_LVLDSC,
TEMPO_DIM_CALENDAR_YEA_PRNT
) RULES UPDATE SEQUENTIAL ORDER()
CUBO1_CUBEVIEW:
CREATE OR REPLACE VIEW CUBO1_CUBEVIEW
(TEMPO_DIM, ASSISTITO_DIM, TEMPO_DIM_LEVEL, TEMPO_DIM_LDSC,
TEMPO_DIM_SDSC, TEMPO_DIM_TEMPO_DIM_DSO_1, TEMPO_DIM_END_DATE, TEMPO_DIM_TIME_SPAN, TEMPO_DIM_MESE_LVLDSC,
TEMPO_DIM_QUARTO_LVLDSC, TEMPO_DIM_ANNO_LVLDSC, TEMPO_DIM_CALENDAR_YEA_PRNT, ASSISTITO__ASSISTITO_GE_PRNT, ASSISTITO__LEVEL,
ASSISTITO__SDSC, ASSISTITO__LDSC, ASSISTITO__NOMINATIVO_LVLDSC, QTA_PRESCRITTA, SPESA_PRESCRITTA,
OLAP_CALC)
AS
SELECT "TEMPO_DIM","ASSISTITO_DIM","TIPO_EVENTO_DIM","TEMPO_DIM_LEVEL","TEMPO_DIM_LDSC","TEMPO_DIM_SDSC","TEMPO_DIM_TEMPO_DIM_DSO_1","TEMPO_DIM_END_DATE","TEMPO_DIM_TIME_SPAN","TEMPO_DIM_MESE_LVLDSC","TEMPO_DIM_QUARTO_LVLDSC","TEMPO_DIM_ANNO_LVLDSC","TEMPO_DIM_CALENDAR_YEA_PRNT","ASSISTITO__ASSISTITO_GE_PRNT","ASSISTITO__LEVEL","ASSISTITO__SDSC","ASSISTITO__LDSC","ASSISTITO__NOMINATIVO_LVLDSC","QTA_PRESCRITTA","SPESA_PRESCRITTA","OLAP_CALC"
FROM table(OLAP_TABLE ('MMGDWH.WORKAREA duration session',
'&(CUBO1_CUBE_LIMITMAP)'))
MODEL
DIMENSION BY (
TEMPO_DIM,
ASSISTITO_DIM)
MEASURES (
TEMPO_DIM_LEVEL,
TEMPO_DIM_LDSC,
TEMPO_DIM_SDSC,
TEMPO_DIM_TEMPO_DIM_DSO_1,
TEMPO_DIM_END_DATE,
TEMPO_DIM_TIME_SPAN,
TEMPO_DIM_MESE_LVLDSC,
TEMPO_DIM_QUARTO_LVLDSC,
TEMPO_DIM_ANNO_LVLDSC,
TEMPO_DIM_CALENDAR_YEA_PRNT,
ASSISTITO__ASSISTITO_GE_PRNT,
ASSISTITO__LEVEL,
ASSISTITO__SDSC,
ASSISTITO__LDSC,
ASSISTITO__NOMINATIVO_LVLDSC,
QTA_PRESCRITTA,
SPESA_PRESCRITTA,
OLAP_CALC
) RULES UPDATE SEQUENTIAL ORDER()
Then I modify Assistito's name n Assistito Dimension Table and I launch:
DBMS_SNAPSHOT.REFRESH('ASSISTITO_DIM_DIMVIEW','C');
but I have following error:
ORA-23401: materialized view "MMGDWH"."ASSISTITO_DIM_DIMVIEW" does not exist's
ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2255
ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2461
ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2430
ORA-06512: at line 1
Notice that procedure is under SYS Schema, but my view ASSISTITO_DIM_DIMVIEW is under MMGDWH Schema. But I've tried to launch procedure as SYS and I have same problem, so I don't believe it's the problem.
I notice, however that ASSISTITO_DIM_DIMVIEW apperas under Views Tab under my DB Client and not under Materialized Views.
How Can I resolve the problem?
Thanks
Giancarlo

Similar Messages

  • Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update.  EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off.

    Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update. EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off. never had this trouble with my 3...I don't even want to talk to anyone on this phone! Is the sensor bad? That is what the AT&t rep suggested.

    Restore as new... if the problem still continues then there is a hardware issue.
    If it stops after a restore as new, then the issue is with the backup the device is currently setup with.

  • How do I tell what version (update / release level) of version 6 has been applied to my system?

    Question
    How do I tell what version (update / release level) of version 6 has been applied to my system? I have applied several different release levels to version 6 of FF but all the about feature tells me is Version 6.0. no version! This seems to be a change in the way updates are handled. Is that a bending because of the speed of which you're pushing out updates and new releases?
    contact me if you need something more
    ''deleted email address''

    @cchur <br />
    Nope, I never used Chrome, but I did try Chromium on my Windows desktop PC for a few months last year. I got tired of the Google updater. exe running all the time and Google's method of doing updates, so it's gone. I do have Chromium on my Linux EeePC since last summer, but Ubuntu handles all updates and gives the user the capability to accept or deny, any or all updates - much more to my liking, similar to the way Mozilla does it. I don't like software developers forcing to update until I am ready to proceed.
    There's a lot more about this new Fast Release system, than just the lack of visible version numbers, that I don't like. The Nightly, Aurora, Beta, & Release sequence is dumb with the way it changes the version numbers. I prefer installing (for instance) what will become version 7 and have that installation progress thru the 4 stages, instead. Now it's like Nightly going from 7 to 8, Aurora going from 6 to 7, and Beta doing - hell, I won't know if it becomes a Release or if it just dies and I will have to install the Release version myself. ''Quite honestly I don't care, because I don't think this new "system" is going to last too long without major modifications. Too damn many users are so pissed off, that when Firefox starts losing large numbers of users, Chrome keeps growing and eventually passes Firefox in number of users and market share of usage - Mozilla will wake up and see the "light" and change back to the way things used to be done, to a certain extent.''
    I also dislike the UI changes in 4/5/6/7 enough that I am still using Firefox 3.6 for almost everything and Firefox 2.0.0.20 for the rest. I have been setting my toolbars up almost like Mozilla did for Firefox 4, since Firefox '''0.7''' in 2003 and I haven't come up with a workable combination of mods and extensions to configure Firefox to look and work the way I have been doing for almost 8 years now.

  • I have Microsoft Word for Mac 2011, version 14.3.1.  When I try to open a document, an error occurs, says file type is "blocked from opening in this version."  This was NOT immediately after a version update.  Any ideas?  Thank you.

    I have Microsoft Word for Mac 2011, version 14.3.1.  When I try to open a document, an error occurs, says file type is "blocked from opening in this version."  This was NOT immediately after a version update.  Any ideas?  Thank you.

    Take a look here:
    http://support.microsoft.com/kb/953266
    If that doesn't help, I'd suggest you take up the question in Microsoft's own forums or with Microsoft support.
    Regards.

  • I accepted a version update and now iTunes closes on launch with the message "iTunes has stopped working. Windows will close the program and notify you if a solution is available." What to do?

    I accepted a version update and now iTunes closes on launch with the message "iTunes has stopped working. Windows will close the program and notify you if a solution is available." What to do?

    Hey Todd Rubenson,
    Thanks for the question. I understand that you are experiencing issues with iTunes for Windows unexpectedly quitting. The following resource may provide a solution:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    Thanks,
    Matt M.

  • Can we make things more Useful...? not an update question.

    Ok well i said its not an update question.. well it kinda is.
    today is friday.. the release date of the new iphone 3g.. great.. i love my iphone.. im goin to wait a week or so before i go ahead and buy the new phone for sake of bugs and lil tweaks..
    ok so today i dont know what drove me to update my iphone.. and it got totally bricked for 3 hours.. until i finnally got thru using the "clicking" solution... well i understand the server is overwelmed.. and everyone is updatin and the same time.. but there was a prompt askin if i wanted to update and get the latest iphone software and the latest version of itunes... good.. lets all download it.. most of us it will take 3-6 hours for the iphone to update because the whole problem with the overload on apples side...
    ..BUT...
    what if we cant wait that long?
    i SYNC'd my iphone before the update.. well everyone does... itunes prompts you to do so.. WHY.. emphasizing on WHY... if we synced the phone to our computer systems.. and a problem like for example is goin forth now with this update... CAN'T we just restore our iphones back to how it was before we even tried updating it?
    IT did SAVE to our computers right?
    why cant we just double click here, right click right there..
    and BOOM..
    back for pre 2.0 days.. well until after the storm has passedt..
    why cant we have that option in itunes... heck why not?
    hey doctors will always have beepers to get in contact with.. so hey the whole life death situation thing means it isnt that that THAT bad.. but hey everyone needs there cell phone and people use cell phones.. this one in particular for business.. so maybe we could have avoided some confrontation to some conference calls and clients.. etc... well regardless.. as easy for the update to have made the iphone in a way "bricked".. i think it should have been easy to restore to pre 2.0 .
    windows has that option in its system restore feature...
    download something that messes up your system? virus? update that doesnt work well with the OS?.. restore to an earlier date is an option in the control panel..
    i think itunes need something like that with the iphone version..
    last but not least..
    i love my iphone :-D

    uppers

  • Software Update Questions

    Hi everybody,
    I'm still relatively green in the computer world, so, I'm sure these questions are way to "rookie" for you. Nevertheless; here they are.
    Software Update Questions:
    1. What is J2SE 5.0 Release 4, version 4.0 (39.3 MB) and, is it necessary to install?
    2. What is X11 Update 2006, version 1.1.2 (51.0 MB) and, is it necessary to install?
    In case you need to know, I have Mac OS X (10.4.8) with a Verizon FIOS connection.
    Thanks,
    Wayhun
    iMac   Mac OS X (10.4.8)  

    J2SE 5.0 is the latest version of Java. Mac OS X originally ships with Java 1.4 and this gives you the opportunity to upgrade to the latest version.
    It's an optional upgrade since there are many changes between Java 1.4 and java 5, so some people might prefer to hold off until they've verified their Java apps work with the new version. For most people, though, it isn't an issue.
    X11 (also known as XWindows) is a standard GUI interface for Unix systems. If you're using X11 you'd probably alredy know about it and therefore wouldn't be asking this question. It's not going to cause any problems if you update it, but it won't offer any advantage unless you're running X11-based applications.

  • Possible with more frequent version updates?

    Hi, would be great if I have Pages make more frequent version updates. Anybody knows whether this is possible?

    For the 100th time, I repeat that you are in a users forum.
    If you want to ask something to Apple you must use the dedicated channel.
    Go to "Provide Pages Feedback" in the "Pages" menu , describe what you wish.
    Then, cross your fingers, and wait at least for iWork'11 or 12 ;-)
    During the last weeks, Apple engineers were busy upon iWork for iOS.
    They added to this set of apps a lot of features of the OSX versions which were missing.
    As the result of their job was released yesterdays, we may hope that they will work upon iWork for OSX and deliver soon an "iCloud aware" set of applications.
    But honestly, I have no hope for other important changes before january 2012.
    Yvan KOENIG (VALLAURIS, France) jeudi 13 octobre 2011 21:30:20
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • HT4623 Updated iTunes to latest version, updated iPhone to iOS 7 and now my phone won't work at all.  Won't connect to my WiFi, and won't talk to iTunes . . . Now what do I do?

    I now have a useless $700 phone.  Updated iTunes to latest version (and can't get it to revert back to an earlier version), updated iPhone (iPhone5) to iOS 7 and now it won't talk to iTunes, nor will it connect to my WiFi.  What should I try now?

    If it won't talk at all to iTunes, you can hold down the power and home button for 10 seconds, it will power off, this is ok, then let go of the power button while holding the home button until iTunes sees it as a device in recovery mode.  You can try to reinstall iOS7 and then restore.

  • ITunes 10.6.1 - ipod version update button is mis-linked

    When a docked ipod is synced with iTunes 10.6.1, on the ipod summary page, when the Version Update button is selected, iTunes checks the current iTunes version and returns the message, iTunes is up to date even though in the Version window it says there is a newer version of software for this ipod ( iOS 6.0 ), The Update button is mis-directed. It should be checking and updating the docked iPods system software. Not checking iTunes up to date.
    ( 4th Gen iPod touch in this case docked to iTunes 10.6.1 )

    Ok, this worked for me (manual download for iTunes 10.6.3 update on OS X 10.5.8):
    https://discussions.apple.com/message/19653924#19653924

  • ITunes (Win7 x64) is no longer opening after the latest version update

    iTunes (Win7 x64) is no longer opening after the latest version update - I have attempted an un/reinstall - can anyone offer other suggestions?
    I am running Windows 7 64-bit, and am trying to reinstall the 64-bit iTunes from the iTunes website.  I previously have had this working for the last few years with no major issues, the Apple Software Updater has been pestering me for some time so I finally got it to update.  However now iTunes will not start, if I select the icons nothing happens.  There are no iTunes applications running in the background in Task Manager either.
    I look forward to your suggestions.
    Thanks,
    James.

    1. First check if this file APSDaemon.exe is the problem here.
    Close your iTunes.
    Press Ctrl-Alt-Del key and choose Task Manager. In the "Processes" Tab, select the file APSDaemon.exe and click End Prosses button, then close the task manager window.
    Now open itunes and see if it is working?
    If that works, to prevent having to do the same process everytime you restart Windows, go to. START button, type in
    MSCONFIG
    Hit ENTER
    Click STARTUP Tab, Uncheck "Apple Push", click OK.
    Restart Windows.
    2. If that fails, refer to following article to remove SC Files
    http://support.apple.com/kb/TS2363
    3.  If that fails, repair or reinstall your Quicktime.  START / CONTROL PANEL / PROGRAMS N FEATURES / hightlight QUICKTIME and click REAPIR.

  • Hello, i'm using Iphone 5, with ios 7  . I have one old macbook, working with mac osx 10.6.8 and itunes last version updated. Itunes do not synchronize new contacts from my Iphone to my adress book mac.  What can i do ?

    Hello, i'm using Iphone 5, with ios 7  . I have one old macbook, working with mac osx 10.6.8 and itunes last version updated. Itunes do not synchronize new contacts from my Iphone to my adress book mac.  What can i do ?

    Hello, i'm using Iphone 5, with ios 7  . I have one old macbook, working with mac osx 10.6.8 and itunes last version updated. Itunes do not synchronize new contacts from my Iphone to my adress book mac.  What can i do ?

  • I have repeatibly loaded Adobe Acrobat Reader but the Plugin Check gives me Adobe Acrobat Adobe PDF Plug-In For Firefox and Netscape 10.0.1 Outdated Version Update. While the plug in check is important it is quite bothersome at present. Please help.

    EVERY TIME the browser boots it kicks off the plug in check. I understand that this is important but it is currently a pain. Once I update Adobe Acrobat Plug in the browser does not recognize that the plug in has been installed and keeps coming up and up an up an up.
    This is the message I get.
    Adobe Acrobat
    Adobe PDF Plug-In For Firefox and Netscape 10.0.1 Outdated Version Update
    Please get back with me regarding a fix.
    Jeff

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • Using 3.6 version, updated this morning no bookmarks, restored them but bring it up and no bookmarks again?

    Using 3.6 version, updated this morning no bookmarks, restored them but bring it up and no bookmarks again?
    I restarted my computer after re installing my bookmarks from my desktop but the bookmarks are not showing up when I bring up a new browser window. Was working last night and this morning it had an update then the bookmarks disappeared. How do I get the bookmarks to come back up when bringing up a new browser window?

    In Firefox 3.6 and later on Windows you can hide the "Menu Bar" via "View > Toolbars" or via the right-click context menu on a toolbar.
    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    Go to "View > Toolbars" or right-click the "Menu Bar" or press Alt+V T to select which toolbars to show or hide (click on an entry to toggle the state).
    See also [[Menu bar is missing]] and http://kb.mozillazine.org/Toolbar_customization
    For the bookmarks see:
    * http://kb.mozillazine.org/Locked_or_damaged_places.sqlite
    * http://kb.mozillazine.org/Lost_bookmarks

  • Hey, i have very strange prob with my iphone 5(latest version/updated), after resetting it, so it doesn't connect to my laptop, even it doesn't charge too. it does charge from wall charger i try all the possible methods but still i am facing the prob

    Hey, i have very strange prob with my iphone 5(latest version/updated), after resetting it, so it doesn't connect to my laptop, even it doesn't charge too. it does charge from wall charger i try all the possible methods but still i am facing the prob any fix/solution for it.. Helppppp!!!!!!!!!!!!!!!!!!!!!!!! As soon as possible, it will be gratefulness,
                                Thnksssssss....

    So you are saying that you followed all of the steps in the support document for problems with connection, including removing and reinstalling iTunes? You do not say what you have tried, so it is hard to make recommendations. If this is the case, then you have tried resolving driver issues? What if you go to Device Manager and look for the iPhone. You should be able to click on it and see about drivers. You can update/reinstall the device driver.

Maybe you are looking for

  • How do I install Photoshop on a 3rd computer?

    I have Photoshop, and when I bought it the permission was for 2 computers.  I only want it on a maximum of 2 computers, but how do I transfer the 'approval' to a new computer?  Do I uninstall the program from the computer no longer being used or do I

  • How can I keep an iPod 1st Generation from shutting completely off when I leave it for more than 1 minute?

    Well, my friend and I just received this 1st generation iPod Touch from a man at our church. He said we could sell it. However, it has some problems. For example, when I leave it alone, it cuts off completely, Then, I have to hold the home and power

  • Tv on the phone

    does the 8350i support the tv on the phone like other BB's you can watch tv on?????? Rockin the 8350i

  • Report Source from Column in Table

    I'm probably just not using the correct search words so pardon me if this has already been answered here. I have a table has a list of reports and the SQL required to generate that report. So page 500 executes this report source: select t.reptid, t.s

  • Why cant I use the screen record feature on quicktime 7.7.2

    i have recently got apple QuickTime player 7.7.2 pro. One of the main reasons I got it is because i knew in past versions they had the screen record feature, but on the 7.7.2 pro version it didn't. i was disappointed that it didn't have the feature t