Error in dimension but cannot find in dimesnions_exceptions - How find erro

Hi,
Using 11.2.0.3 on IBM Power Series 7 AIX
and dbms_dimesnion.validate_dimension to see why shows compile_state as error for a dimension.
Have dimesnions-exceptions table but nothing in there after running this procedure.
DBMS_DIMENSION.VALIDATE_DIMENSION ('DW.RETAILER_TRN_REPORT_TYPE', FALSE, FALSE, 'my 1st example');
Tried with all poss combinations of the 2nd and 3rd parameter.
Any ideas?
Thanks

dbms_dimesnion.validate_dimension - validate data in dimension table.
select status
from all_objects
where object_name = '<Dim_Name>';
select *
from all_errors
where name = '<Dim_Name>';show your DDL for Create Dimension.
For complete check use
DBMS_DIMENSION.VALIDATE_DIMENSION ('DW.RETAILER_TRN_REPORT_TYPE', FALSE, TRUE, 'my 1st example');http://docs.oracle.com/cd/B28359_01/appdev.111/b28419/d_dimens.htm

Similar Messages

  • I have downloaded my albums to new ipod (second one) but cannot download purchases. How do I do it?

    I have downloaded my albums to new ipod (second one) but cannot download purchases. How do I do it?

    If your iPod classic has enough storage capacity to hold your entire iTunes music library, here's one convenient way to do set it up to sync "everything" automatically, including any new changes.
    First, if your iTunes sidebar (along left side of window) is not visible, from the menu bar, under View, select Show Sidebar.
    Select the iPod in the sidebar, under DEVICES.  Near the top, there is a bar of buttons, starting with Summary.  Click on Music next to Summary.  This is the iPod's Music screen, where you tell iTunes how to sync songs to your iPod.
    Check the box fo Sync Music.  NOTE:  If there are songs on the iPod that are not in your current iTunes library, those songs will be lost when you set up automatic syncing.  If this is a problem, please post back.
    Choose the option to sync Entire music library.  With this setting, when you click Apply, your entire iTunes music library syncs to the iPod, including playlists.  Going forward, any changes you make to your iTunes music library sync automatically to the iPod, the next time you connect it (or click Sync if the iPod is already connected).
    This document has general info on syncing content to iPods
    http://support.apple.com/kb/ht1351

  • I just brought Lightroom 5 via online, but cannot support by MAC, how come?

    i just brought Lightroom 5 via online, but cannot support by MAC, how come?

    Serial numbers for LR are cross platform and CC memberships also are cross platform.
    You can download Lightroom's latest update here for Mac: blogs.adobe.com/lightroomjournal/2014/11/lightroom-5-7-now-available.html
    Regards

  • I just purchased a JBL charge wireless speaker that is supposed to be compatible with ipad using Bluetooth , but cannot get my ipad to find the device. Please help

    How do I connect ipad  to jbl charge wireless speaker using Bluetooth. My ipad and ipad mini do not find device

    I am having the same issue as YCandy.  My iPhone 5 paired immediately - then I had bluetooth on my iPhone "forget the device" - but when I try to pair with my iPad it doesn't find the speaker.  I just purchased the JBL Charge wireless.       
    The directions that come with the speaker are just pictures - shows me how to connect everything and what each light and button means.  But it doesn't explain how to make sure the device is in "pairing mode."   What does that mean exactly?   The power button is blinking Blue - and never pairs with my iPad.  
    Any suggestions?

  • I print a lot if photography from iPhoto. I once found a way to proint a matte around the photo, but cannot seem to remember how I did it.

    I know my post is rather lengthy. I have a Mac Air and am running Mavericks. I print a lot of photography. One day I discovered that I could print  mattes surrounding the image and loved that option. I have not done that for a while and cannot seem to remember how I did it. Can anybody help my aging memory and remind me how to do this?
    Thanks.

    In iPhoto '11 is the "Matte" effect in the Edit panel, in the "Effects" tab. You could simply create a second version of the photo for printing with the command "Photos> duplicate" and then add the matte effect from the "Edits > Effect > Matte" panel. Then print the edited version and delete it.
    You can change the size of the effect using the arrow keys.

  • I have loaded icloud on my PC but cannot see an icon or find it

    Why can't I see the icloud or find my iphone icon on my pc?

    Did you look in the Windows Control Panel?

  • TS3074 I have Windows 8.1 and am having the "error 7" problem but I do not know how to fix it

    I have an HP Windows 8.1 laptop that has been having problems, so I just got it serviced. They gave it back to me without most of my programs on there. I tried downloading itunes and thought that I had successfully, but I was wrong. Since then I have downloaded itunes 5 seperate times with the same results. At first it was Error 2 talking about my Apple Application support not being found, and I found out I had to download QuickTime and that solved that problem. Now it comes up "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 126)." Also, it has an  iTunes.exe-System Error. It says that "the program can't start because MediaAccessibility.dll is missing from your computer. Try reinstalling the program to fix this problem." I have been trying to fix this and would really love some help!

    I'd try the following user tip with that combo of errors:
    Troubleshooting issues with iTunes for Windows updates

  • I purchased mac book pro in China Shenzen and at that moment the sales person put my details of china,but i recide in india i want to change my account details but cannot change,pls suggest how can i do this changes.

    PurchasedMac Book pro From Shenzen China and at that moment the sales person inserted my account details for china but i leave in Pune India and like to change my details for india.Question is how can i do this.

    What needs to be changed? Most details such as Date & Time can be set in System Preferences.

  • I downloaded the trial version but cannot open and edit, how do you really really 'get started;

    Watched the tutorials, but none of them tell you where to go to get started

    Hi,
    Take a look here, so we can try to help out.
    http://forums.adobe.com/message/4587299#4587299
    regards,
    steve

  • Want to avoid cartesian Product but cannot avoid it some how.

    Hi,
    I am using oracle 10G .
    trying to draft a query which is resulting in absurd results.
    select i.corr_acc_no, sum(amtsign.amount_6) from item i,
    (select corr_Acc_no,flag_2,decode(fund_code,'C',amount_6,amount_6*-1) amount_6 from item
    where corr_AcC_no in (select corr_acc_no from bank where local_Acc_no in ('MBL-SEG-NZD'))and flag_2=0) AmtSign
    where i.corr_acc_no=amtsign.corr_acc_no
    and i.flag_2=0
    group by  i.corr_acc_no
    Basically the inner query, which i am using as the second table in the join, gives 13 results. I want to sum the amount_6 field in main select clause which I want to get from results of
    (select corr_Acc_no,flag_2,decode(fund_code,'C',amount_6,amount_6*-1) amount_6 from item
    where corr_AcC_no in (select corr_acc_no from bank where local_Acc_no in ('MBL-SEG-NZD'))and flag_2=0)
    The sum took too much time so i drafted simple query to check how many rows are returned by removing sum and i noticed it gives a Cartesian product with 169 rows instead of just 13. I have 2 join conditions but the value for corr_Acc_no is same for all 13 rows, i can't use amount_6 as join becuase i am changing it's sign  in the inner query. Please advise.

    Thanks to both of you. @LakmalRajapakse your answer is bang on right. I did the same way after I posted this. I realized there's no point joining item with itself when I can get it done in single query. It's just that I was having hard time with 'Case' in select to get whatever I want,so I tried this logic. But then gave a try to decode, it worked. Thanks anyways.

  • Can hear video but cannot see it?  How do I resolve this?

    Why can't I watch certain videos on my laptop?  I can see thse on my iPad just fine. 
    This is one of the videos I cannot watch on my Laptop:
    http://www.nbc.com/saturday-night-live/video/obama-mandela-cold-open/n44342/

    Well, since the iPad doesn't use Flash (it's incompatible with iOS), the video is probably HTML5... or you're using SkyFire on the iPad, and it uses "Server side" rendering fo Flash content if the video ISN'T HMTL5.
    Usually, video problems are caused by outdated or corrupted video drivers. Check them and update if necessary: http://forums.adobe.com/thread/945765

  • TS3212 each time I load at the end it syas errors occurred. But no suggestions as to how to fix it  Windows vista

    I am trying to download Itunes to A windows vista based computer. At the conclusion to the download is say'eroor occured' and loacks up. Nothing more can be done other that to start again

    I assume that the app didn't come with an uninstaller application/script?
    If you definitely want to trash it have a look in Activity Monitor and your Login items, as there may be something running in the background that is preventing it being trashed.
    System Preferences>Users & Groups (or Accounts depending on OS), Login items tab and delete anything that pertains to the app you want gone.
    Next, Utilities Folder>Activity Monitor, have a look to see if there is anything running with the name of the awkward app. Select it and click on the the big red 'quit process' button. Now try and trash it.
    If you are still having trouble you could try downloading the free AppCleaner:
    http://appcleaner.en.softonic.com/mac

  • I downloaded the trial version of creative cloud but cannot start photoshop?

    I downloaded the trial version of creative cloud but cannot start photoshop?
    How can I start the program, cannot find any Ps icon to click on??
    thank you

    Without proper system info and other technical details nobody can say anything.
    Mylenium

  • HT1689 Downloaded an album from itunes and only half of the songs will download to my ipad.  error says file cannot be converted.  How do I get this fixed or request a refund since I can't use the item purchased?.

    Downloaded and album from itunes and only half of the songs will download to my ipod.   Error message says file cannot be converted.  How do I fix this or get a refund from itunes?

    Welcome to the Apple Community.
    Try deleting the problematic file (electing to remove original file if/when prompted) and then re-downloading the file from the iTunes store.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option at the bottom of the screen of the iTunes app (or video app) on your iOS device.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.

  • Can receive mail but not send it. How can I fix it?

    I can receive email but cannot send it. How can I solve the problem?

    Try resetting and / or restarting >  iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting

Maybe you are looking for

  • Difference between exists and createIf

    Hi all, In Node functions we are having createIf and exists. what is the difference between createIf and exists? Where we have to use createIf and where we have to use exists? Thanks Sridhar

  • What is "This page requires AC_RunActiveContent.js."

    I have gone through many of the posted fixes like reloads, resets, opening in safe mode, removing all cookies for this site, etc. and nothing is working to stop this. The main page of the website doesn't load all the links or linked pages. Is the pro

  • Effective price

    Hallo, I'd like to get the effective price from the Order (ME23N) transaction into my list display, respectively into my dynpro. By the use of F1 taste, it tends to result in structur KONV. Does any one know the way to deal with it? I thank you in ad

  • [ID5] Find line without paragraph break

    Hello, I want to Find lines containing a specific character style. But when that line is at the end of a paragraph, it also selects the paragraph break. Which GREP do I have to use to select the line without the break? Regards, Sjoerd

  • Output problem in array, code included.

    Been hacking away at a starting java class for a few months now, and never had to resort to asking you guys for help. However, i missed class all week due to work conflicts, so i couldn't question my professor on this problem. Oddly, the actual array