date fill in the dimension with the correct values

Hi all

I have a 'simple' problem, but can't get it resolved! The calculations of the CDA in the cube not 'reset' at the right moment in time (they should 'reset' on the exercise, but it actually seems to happen on the normal calendar year).

Our dimensions and cubes are MOLAP. There is a relational table that contains columns with values for both a calendar hierarchy as well as a hierarchy of exercise. This table tells the date dimension (only the tax hierarchy as MOLAP, we have just a fiscal hierarchy). The result seems correct in the data viewer.

The cube is filled with both relational sources. A perspective provides the measurement values and CODE (distinctive signs of business) values for each dimension involved. In the case of the date dimension, it provides the code for the involved level value in which we cube (months).

I made a very simple testcase with only 1 dimension (date) and 1 small cube. The cube uses only the dimesion of date (to load the cube on the fiscal hierarchy at the month level) and has 1 base measure that is loaded with a simple number and 1 calculated measure that calculates the value of the CDA for this basic measure. The calculated measure is added to the cube designer OWB by using the button 'generate calculated measures' and choosing the function 'Year to Date'.

When complete the cube and using the data viewer to verify the results, CDA values don't 'reset' at the end of the year. They seem to reset at the end of the normal calendar year!
After some tests, I have concluded that this has to do with the values I provide to fill the date dimension, but I can't figure out what should be the change, and I can't find examples anywhere.

Someone out there a calculation for a YEAR of work in MOLAP?

Any help much appreciated.
Kind regards
Ed

Hi Ed

It can be an inherent behavior of the time dimension in the AWs where the CDA on financial is not supported out of the box, see the OLAP thread below. Have you tried just build your simple case in AWM recreate? If you can get around using a custom expression, you should be able to define this custom OWB and still keep the design you have.

Calculated against calendar CDA CDA tax measure

See you soon
David

Tags: Business Intelligence

Similar Questions

  • update to column values (false) in a copy of the same table with the correct values

    Database is 10gr 2 - had a situation last night where someone changed inadvertently values of column on a couple of hundred thousand records with an incorrect value first thing in the morning and never let me know later in the day. My undo retention was not large enough to create a copy of the table as it was 7 hours comes back with a "insert in table_2 select * from table_1 to timestamp...» "query, so I restored the backup previous nights to another machine and it picked up at 07:00 (just before the hour, he made the change), created a dblink since the production database and created a copy of the table of the restored database.

    My first thought was to simply update the table of production with the correct values of the correct copy, using something like this:


    Update mnt.workorders
    Set approvalstat = (select b.approvalstat
    mnt.workorders a, mnt.workorders_copy b
    where a.workordersoi = b.workordersoi)
    where exists (select *)
    mnt.workorders a, mnt.workorders_copy b
    where a.workordersoi = b.workordersoi)

    It wasn't the exact syntax, but you get the idea, I wanted to put the incorrect values in x columns in the tables of production with the correct values of the copy of the table of the restored backup. Anyway, it was (or seem to) works, but I look at the process through OEM it was estimated 100 + hours with full table scans, so I killed him. I found myself just inserting (copy) the lines added to the production since the table copy by doing a select statement of the production table where < col_with_datestamp > is > = 07:00, truncate the table of production, then re insert the rows from now to correct the copy.

    Do a post-mortem today, I replay the scenario on the copy that I restored, trying to figure out a cleaner, a quicker way to do it, if the need arise again. I went and randomly changed some values in a column number (called "comappstat") in a copy of the table of production, and then thought that I would try the following resets the values of the correct table:

    Update (select a.comappstat, b.comappstat
    mnt.workorders a, mnt.workorders_copy b
    where a.workordersoi = b.workordersoi - this is a PK column
    and a.comappstat! = b.comappstat)
    Set b.comappstat = a.comappstat

    Although I thought that the syntax is correct, I get an "ORA-00904: 'A'. '. ' COMAPPSTAT': invalid identifier ' to run this, I was trying to guess where the syntax was wrong here, then thought that perhaps having the subquery returns a single line would be cleaner and faster anyway, so I gave up on that and instead tried this:

    Update mnt.workorders_copy
    Set comappstat = (select distinct)
    a.comappstat
    mnt.workorders a, mnt.workorders_copy b
    where a.workordersoi = b.workordersoi
    and a.comappstat! = b.comappstat)
    where a.comappstat! = b.comappstat
    and a.workordersoi = b.workordersoi

    The subquery executed on its own returns a single value 9, which is the correct value of the column in the table of the prod, and I want to replace the incorrect a '12' (I've updated the copy to change the value of the column comappstat to 12 everywhere where it was 9) However when I run the query again I get this error :

    ERROR on line 8:
    ORA-00904: "B". "" WORKORDERSOI ": invalid identifier

    First of all, I don't see why the update statement does not work (it's probably obvious, but I'm not)

    Secondly, it is the best approach for updating a column (or columns) that are incorrect, with the columns in the same table which are correct, or is there a better way?

    I would sooner update the table rather than delete or truncate then re insert, as it was a trigger for insert/update I had to disable it on the notice re and truncate the table unusable a demand so I was re insert.

    Thank you

    Hello

    First of all, after post 79, you need to know how to format your code.

    Your last request reads as follows:

    UPDATE
      mnt.workorders_copy
    SET
      comappstat =
      (
        SELECT DISTINCT
          a.comappstat
        FROM
          mnt.workorders a
        , mnt.workorders_copy b
        WHERE
          a.workordersoi    = b.workordersoi
          AND a.comappstat != b.comappstat
      )
    WHERE
      a.comappstat      != b.comappstat
      AND a.workordersoi = b.workordersoi
    

    This will not work for several reasons:
    The sub query allows you to define a and b and outside the breakets you can't refer to a or b.
    There is no link between the mnt.workorders_copy and the the update and the request of void.

    If you do this you should have something like this:

    UPDATE
      mnt.workorders     A      -- THIS IS THE TABLE YOU WANT TO UPDATE
    SET
      A.comappstat =
      (
        SELECT
          B.comappstat
        FROM
          mnt.workorders_copy B   -- THIS IS THE TABLE WITH THE CORRECT (OLD) VALUES
        WHERE
          a.workordersoi    = b.workordersoi      -- THIS MUST BE THE KEY
          AND a.comappstat != b.comappstat
      )
    WHERE
      EXISTS
      (
        SELECT
          B.comappstat
        FROM
          mnt.workorders_copy B
        WHERE
          a.workordersoi    = b.workordersoi      -- THIS MUST BE THE KEY
          AND a.comappstat != b.comappstat
      )
    

    Speed is not so good that you run the query to sub for each row in mnt.workorders
    Note it is condition in where. You need other wise, you will update the unchanged to null values.

    I wouold do it like this:

    UPDATE
      (
        SELECT
          A.workordersoi
          ,A.comappstat
          ,B.comappstat           comappstat_OLD
    
        FROM
          mnt.workorders        A      -- THIS IS THE TABLE YOU WANT TO UPDATE
          ,mnt.workorders_copy  B      -- THIS IS THE TABLE WITH THE CORRECT (OLD) VALUES
    
        WHERE
          a.workordersoi    = b.workordersoi      -- THIS MUST BE THE KEY
          AND a.comappstat != b.comappstat
      ) C
    
    SET
      C.comappstat = comappstat_OLD
    ;
    

    This way you can test the subquery first and know exectly what will be updated.
    This was not a sub query that is executed for each line preformance should be better.

    Kind regards

    Peter

  • Control the output is not the correct value

    Hello

    I have a producer consumer with a queue architecture to pass values. I want to push a new value in the table by using "Insert table" when a button is pressed, but when I do the previous value is read the first time and the correct value on the second press.

    I am self-taught and this is my first time using the queue so maybe something I'm not seeing/thinking about here?

    Version 8 attached VI.

    To see the problem, follow these steps:

    1. run
    2. click on "master reading.
    3. change the 'value '.
    4. click on "master reading.
    5. click on "master reading.

    Any help is appreciated especially block critical diagram.

    Thank you!

    It all depends on how you change the value of 'value. ' If you use the increment and decrement buttons it works as expected.

    If however, you type a new value and click the button without clicking elsewhere first, it does not - and here's why:

    When you type a modified value value does not appear in the code until the control loses "touch focus". The problem is that clicking the button causes the digital input to lose key focus, but only after the code responded to the mouse event.

    To solve the problem put a property node in the supported mouse event to set the property KeyFocus the digital to false until the value is queued.

    Mike...

  • Present do not get the correct values

    Apex 4.2

    THAT IS TO SAY 8

    Theme 21

    I just upgraded a request from 3.2 to 4.2

    A page has had a lot of text to read only the value always.

    A running a process I got this error

    So I put my items to display only and read to null

    When the page opens all values are set correctly in session state

    My process works well, but when the process terminates and then check out the session state, my articles do not receive the correct values

    I looked into debugging accept

    All ideas

    Gus

    I changed all my articles to text, but after sending, they continue to receive the false values

    Gus

  • Invalid certificate, the page displays past date, CERT. is the correct date.

    This is the message I get:

    "login.yahoo.com uses an invalid security certificate. The certificate will be more valid until 02/03/2014 18:00. "The time now is 17:09 07/02/2014 (error code: sec_error_expired_certificate).

    The problem is that (the date I wrote that) is today 07/03/2014. The specified time is accurate, but the date is one month old. I checked the time on my computer and router and both are accurate. Is there another place where Firefox gets its timestamp? I do not understand why the date used for the certificate would be turned off by a whole month. This problem appeared on the 04/03/2014.

    Firefox still seems to think that the date is wrong, if the current time is 17:09 07/02/2014.

    You can see the time and the time zone if you paste this code in the line of command of the Web Console (Web Developer > Web Console;) CTRL + SHIFT + K)

    • console.log ((nouvelle_Date).toLocaleString ()); Use it to get your current time zone time
  • Write-Host returns the correct value of the data store while Export-CSV does not work

    Hi team

    I use the attached script to get vcenter inventory. Everything works fine but the output to one gives CSV value like datasore ' VMware.Vim.VirtaulMachineConfigInfoDatastroreUrlPair [of] "instead of the actual data store name.

    But when I do a write-host in the end (instead of export to CSV) I can't find the name of data reflecting properly store.

    Can someone help me understand what Miss me?

    Thanks in advance.

    Olivier ONE

    The problem is that the virtual machine can have several data warehouses and the DatastoreUrl is an object, not a string.

    Try changing:

    $Report.DatastoreName = $VMview.Config.DatastoreUrl

    in:

    $Report.DatastoreName = [string]: join ('',($VMview.Config.DatastoreUrl |) Select-Object name - Expandproperty))

  • ASO Essbase - loading data to overwrite the existing values

    I'm support ASO but does not know how he would "Overwrite the existing values" correctly.  I want it to work as BSO "crush."  Need help please, I am a newbie to ASO :(

    change the ASOAPP database. ASODB load_buffer to initialize with values of substitution of resource_usage 0.15 buffer_id 1 create slice;

    Thank you

    Which only Initializes the buffer, it does not load anything (as I imagine you know, KKT).  Just to be the opposite, I would say the MaxL may be harder but gives you a better idea on how loading to ASO that the use of the Regional service.

    To the OP, you are mixing two different command syntax.  'Substitution values' and 'create a group' syntax is part of the import , not the alter statement.

    Suggest you read this article of technical reference: loading data using pads

    Using tampons complicates slightly reproducing the behavior "crush."  You can choose multiple values loaded at the same intersection crash in the buffer zone, or in committing the buffer for the cube (or both).  BSO is not this distinction.  The substitution values clause controls what happens when the buffer is enabled for the cube, but by default multiple values at the same intersection in loading the buffer still the sum.  You can control what is happening to several values, hitting the same intersection in the buffer to aggregate_use_last / aggregate_sum buffer options in the alter statement.

  • Refresh of Page partial update of form before the data control returns the new value

    Hello

    I have a set of paintings of master detail based on a single data source (Session Bean encapsulating a web service call). The high-level table (t1) shows data of opportunity, as the low level (t2) poster contacts for a special occasion. When the opportunity is selected in t1, the contacts associated with this opportunity appear in t2. These tables of work as you wish.

    I have a read only form (form of the Panel layout) based on a different data control (supported by a Session Bean that calls a LinkedIn API and a table of database using EJB3 entities). LinkedIn Session Bean method takes a parameter which I get from the current row in t2. (#{bindings.relatedContact.currentRow.dataProvider.id}) I put the PartialTriggers as 't2' on the form.

    When the page is loaded for the first time, the first line (line A) from table t2 is selected and the display shows the data associated with this line. If I select another line (line B), the Session Bean is called with the value of the id of the newly selected row, but the display will show the associated data from line A. Thereafter, whenever I select a row in t2, bean is called with the new value, but the form displays the data from the selected line previously.

    I guess what happens is that the form is refreshed (using stale data in the data control), and then the call to the session bean is made. I checked using thread and print statements. Sleep() in the bean.

    Is this a correct behavior and how can I make sure that the call to the bean occurs before the form is updated?

    I use JDeveloper version 11.1.2.2.0

    Thank you
    Michael

    Hello

    as answered on StackOverflow, the trick is to set the refresh option on the iterator (s) to the second access WS (table 2) of PageDef on ifNeeded. The default setting is delayed, which in your case is not optimal because refresh occurs during rendering response, which is too late for the access of WS. Try "ifNeeded.

    Frank

  • Tabular form validation - save the correct values

    I use the example of the Dene of validation in the form of table. It detects errors and displays the error messages, but I lose all the values that have been entered correctly. Do I need to use a collection to save? I was looking through older posts and comment, it's that you need only one collection if you want to show the user the values that they entered incorrectly. With the logic of the Dene, she tells them what line the error and what is the initial value was.
    DECLARE
      l_error   VARCHAR2 (4000);
    BEGIN
       FOR i IN 1 .. apex_application.g_f02.COUNT
       LOOP
          IF NOT TO_DATE (apex_application.g_f05 (i), 'YYYY')
                BETWEEN   TRUNC (TO_DATE (apex_application.g_f04 (i),'YYYY'))
                     AND  TO_DATE ('2008','YYYY')     THEN
                      l_error :=   l_error
                        || '</br>'
                        || 'Row '
                        || i
                        || ': Photo Inspection Year has to be greater than Date On Map and less than 2008 for '
                        || ' Map: '
                        || apex_application.g_f02 (i)
                        || '<br> Requested date: '
                        || apex_application.g_f05 (i);
          END IF;
          IF NOT TO_DATE (apex_application.g_f04 (i), 'YYYY')
                BETWEEN   TO_DATE ('1890','YYYY')
                     AND  TO_DATE ('2008','YYYY')     THEN
                      l_error :=   l_error
                        || '</br>'
                        || 'Row '
                        || i
                        || ': Date on map has to be between 1890 and 2008 for '
                        || ' Map: '
                        || apex_application.g_f02 (i)
                        || ' <br>Requested date: '
                        || apex_application.g_f04 (i);
          END IF;
       END LOOP;
       RETURN LTRIM (l_error, '</br>');
    Thank you
    Susan

    This is a parameter in the validation - display message error location.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    -------------------------------------------------------------------

  • Function does not return the correct value

    Hi, I'm having a strange problem and hope someone knows how to solve this problem...

    I try to send a string to a function in another class and do return to a textfield, so I can add it to a movieclip and on the stage. I use it for several buttons. The problem is when I put that a string in it value returns a string for the previous call to the function that is not the string value that I want to use. Here's the function:

    public void replaceMCTxt (mcString:String, xPos:Number,

    yPos:Number, rolloverText:Boolean, newFontSize:uint, height: uint, width: uint = false): {TextField

    var newMCTxt:TextField = new TextField();

    newMCTxt.x = xPos;

    newMCTxt.y = yPos;

    newMCTxt.width = width;

    newMCTxt.height = Height;

    var textFormat:TextFormat = new TextFormat();

    textFormat.align = _gameModel.screenFontAlign;

    textFormat.size = newFontSize;

    textFormat.font = _gameModel.screenFont;

    textFormat.color = _gameModel.screenFontColor;

    newMCTxt.defaultTextFormat = textFormat;

    newMCTxt.text = _languageClass.getTranslation (mcString);

    newMCTxt.selectable = false;

    Return newMCTxt;

    }

    I try to call with this statement in another class:

    _moreGamesTxtField = _updateLanguageClass.

    ("MORE GAMES", _gameModel.moreGamesTxtXPos, replaceMCTxt

    _gameModel.moreGamesTxtYPos, _gameModel.moreGamesTxtWidth,

    (_gameModel.moreGamesTxtHeight, _gameModel.moreGamesTxtFontSize);

    Instead of giving me a movieclip "MORE GAMES", it gives me a 'PLAY' movieclip, which is what the previous call to the function used. I also had a similar problem in another function where he did the same thing with filtering of different buttons, so I think the problem is in the service, but I'm not programmer to know that it's good enough. If anyone has an idea please let me know. Thank you...

    Start the survey using the trace() function to see what value is passed to and returned by some _languageClass.getTranslation ().

  • Fill in the concatenated values of the questions

    I'm trying to set a value on a read only text field / calculated based on the output of another field event, here's what I use.

    but nothing happens when I enter data and leave the field.

    Year0 is a field hidden calculated the value of the current year in a 4-digit format.

    The use of JavaScript - of ideas where I'm wrong?  Thank you!

    var

    myVA = form1. #subform [0]. #subform [1]. #subform [2]. Table1.Row1.tVANo.RawValue;

    var

    myYR = form1. #pageSet [0]. Page1.Year0.RawValue;

    var

    myPrj = this.rawValue;

    myVA

    = Concat(myPrj, "-", myYR)

    Happy as we get closer

    Well, if you do a calculation and you want the answer to appear in the field of tVANo, it would be wise to have the script of the calculate field tVANo event.

    Once you have declared and set the values of myYR and myPrj, you can then set the rawValue of the field tVANo by referring to it as "it."

    You don't have any of the myVA variable.

    So, in the case of calculating tVANo field:

    var myYR = form1.sfrmMain.Year0.rawValue;
    var myPrj = form1.sfrmMain.sfrmMainSub1.sfrmMain2.tbMainInfo.Row2.tPrjNo.rawValue ;
    
    this.rawValue = myPrj.toString() + "-" + myYR.toString();
    

    As I said, you won't have the. toString(), then the script would look like:

    var myYR = form1.sfrmMain.Year0.rawValue;
    var myPrj = form1.sfrmMain.sfrmMainSub1.sfrmMain2.tbMainInfo.Row2.tPrjNo.rawValue ;
    
    this.rawValue = myPrj + "-" + myYR;
    

    I hope this helps,

    Niall

  • Choosing a date, then to have this date fill in the next two weeks.

    I have a form that has a start date, put end to date fields then 14 representing the next 14 days. I wish that she either auto fill all fields when you choose a date. For example, if I choose the start date of 01/01/2016 then the end date would be auto complete to 14/01/2016 then each field day below that would have filled in with 01/03/2016...01/14/2016 01/01/2016, 02/01/2016.

    Currently, I have date pickers for each field and it works fine just painful.

    Thanks for any help.

    You should read these tutorials:

    https://acrobatusers.com/tutorials/working-with-date-and-time-in-Acrobat-JavaScript

    https://acrobatusers.com/tutorials/working-with-date-and-time-in-Acrobat-JavaScript-part-2

    https://acrobatusers.com/tutorials/working-with-date-and-time-in-Acrobat-JavaScript-part-3

    Basically, the process is to use a custom calculation script to read the date entered, string to convert to a Date (using the util.scand method) object, to add X days (using the setDate method) and then print the new date (using the util.printd method).

    If you are interested in a tool that will allow you to easily configure without writing code, check out this, I developed exactly for this purpose a while ago: Scripts custom Adobe: Acrobat - automatic Date calculation applies

  • SelectOneChoice show the correct value with switching problem

    Hello

    I use JDeveloper 11.1.1.5.0 and I have a non-trivial application of SelectOneChoice.

    Here's my usecase:

    I have to show LOV to set the State according to the connected person.

    So, I implemented attribute LOVs view that each filtered for in the light of the type of person (owner or non-owner).

    I created switcher LOV for attribute as java method in module impl invoked by EL expression adf.source.getApplicationModule () .getTaskStateLOVSwitcher (adf.object, CreatedByIdFk);

    to get connected user binded query parameter id.

    public static String getTaskStateLOVSwitcher (ViewRowImpl, String createdById, time stamp dateInsert vri) {}
    ViewObject vo = vri.getApplicationModule () .findViewObject ("TaskViewParTaskTypeIdEx1");
    String userId = getBindValue (vo, "BindProcessedByUserId") m:System.NET.SocketAddress.ToString ();
    Output string;
    If (createdById.trim () .equals (userId)) {}
    output = "LOV_TaskStateIdFkOwner";
    } else
    output = "LOV_TaskStateIdFkNotOwner";
    return output;
    }

    I've used this many fragments of jsff perspective.

    There are fragments where it works fine (but I still don't understand why the switch method is called 3 times)

    And there are fragments where it fails. When there are two lines with different LOV to show SelectOneChoice shows an incorrect value.

    I can see the newspaper that LOV switcher method is called 6 or more times and first 3 times it works with values previously selected line and next time, it runs with the current line.

    He result is SelectOneChoice sets the value of the line previously selected in the first round and goes the LOV index.

    I found in the < getViewPort > ADFc log < ControllerState > message: no port view found ID...

    Is the source of the problem and what is the solution?

    Thank you.

    After eliminating all the differences between 'good' and 'bad' fragments I found a problem in the fragments of masters who defined a real line of iterator.

    Define RangeSize = 10 (not 25) table completely setting to change this behavior in common sense.

  • Flex Date time axis not showing the correct values

    <? XML version = "1.0" encoding = "utf-8"? >

    " < = xmlns:fx s:Application ' http://ns.Adobe.com/MXML/2009 "

    xmlns:s = "library://ns.adobe.com/flex/spark".

    xmlns:MX = "library://ns.adobe.com/flex/halo" width = "700" height = "500" >

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    import mx.collections.ArrayCollection;

    [Bindable]

    public var stockDataAC:ArrayCollection = new ArrayCollection ([] collection

    {date: "2005, 7, 27 ', nearby: 41,71},.

    {date: "2005, 7: 28", narrow: 42.21},.

    {date: "2005, 3: 29", narrow: 42.11},.

    {date: "2005, 1, 1 ', nearby: 42.71},.

    {date: "2005, 10, 2", nearby: 42.99},.

    ([ {date: "2005, 9, 3 ', nearby: 44}]);

    public void myParseFunction(s:String):Date {}

    / / Get an array of strings to the last comma-separated string.

    var a: Array = s.split(",");

    / / Create the new Date object. Subtract one from the month property.

    / / The month property is zero-based in Date constructor.

    var newDate:Date = new Date(a[0],a[1]-1,a[2]);

    return Nouvelle_date;

    }

    ]]>

    < / fx:Script >

    < mx:Panel title = "Example DateTimeAxis" height = "100%" width = "100%" >

    < mx:LineChart id = "mychart" height = "100%" width = "100%".

    paddingRight = paddingLeft = "5" '5 '.

    showDataTips = "true" dataProvider = "{stockDataAC}" >

    < mx:horizontalAxis >

    < mx:DateTimeAxis dataUnits = 'days' parseFunction = "myParseFunction" / >

    < / mx:horizontalAxis >

    < mx:verticalAxis >

    < mx:LinearAxis baseAtZero = "false" / >

    < / mx:verticalAxis >

    < mx:series >

    < yField = mx:LineSeries 'close' xField = "date" displayName = "AAPL" / >

    < / mx:series >

    < / mx:LineChart >

    < / mx:Panel >

    < / s:Application >

    the code above shows opposite values from date to date axis it is to say it should show 01/05 2 / 05 / 3 / 05 4/05 but its display 10/05 09/05 08/05 07/05 on the date axis.

    Help, please.

    I saw this bug on Adobe's JIRA so nothing much you can do for now DateTimeAxis is quite bugged.

    In passing, is it me or mx:datavisu is on the low priority these days? Maybe the team working on a version of spark?

    https://bugs.Adobe.com/jira/browse/FLEXDMV-2231

  • Data file see the negative value

    Hello, well this post here because the Support of Oracle will not answer this question, its been 2 weeks and many phone calls to "try and speed it up. IM wondering whats up with them now...

    In any case!

    Oracle 10.2.0.2
    Linux x 86

    These files are difficult to maximum 4 and 15 GB, but now they show 30 GB and 60 GB of free space.
    tablespace file bytes free bytes
    ORACLE_DATA /data/oracle/padb/oracle_data_12.dbf 4000 34947
    ORACLE_DATA /data2/oracle/padb/oracle_data_31.dbf 15000 60298 
    And I'll upload a picture Grid Control:
    http://img190.imageshack.us/img190/3594/oracledata31dbf.jpg
    http://img200.imageshack.us/img200/1526/oracledata12dbf.jpg

    Did you ask where the actual data is gone? Because these files should / have 4 GB and 15 GB of data in them, but now his party and instead his free more space than what is available.

    Grateful for any help.

    Hello

    You can serve your dba_recyclebin, and then try again.

    Please cehck:

    Bug 5083393: VALUE FILE_ID AND DBA_FREE_SPACE RELATIVE_FNO ARE DIFFERENT

    Use negative for an Oracle data file. [444170.1 ID]

    Concerning
    Rajesh

Maybe you are looking for

  • Where's most of my music!

    Looking for albums that are no longer in the apple's music! Miss me hundreds of titles! Where did they go? How can they be recovered?

  • How to open, close and monitor a (xyz.exe) application using labview?

    Hi all I have an application where I need to open an application e.g. calc.exe, after application of openingxyz it I need weather monitor this application runs, or is he forcefuly closed by the user. now I am able to open the application using the Ex

  • Windows Media Player makes calls of NOR-fast Motion (Revisited)

    About 2 years ago, I posted a message on this forum about a condition where running Windows Media Player increased the rate that my Visual Basic 6 program has been able to contact a PCI-7344 Panel using calls OR-Motion (original post). To summarize t

  • The Big 4?

    I just want to get different points of view on what company you think is the best between Verizon, Sprint, AT & T and TMobile

  • Digital photo by using the Windows Vista Photo Gallery

    Whenever I try to print a picture (yes I already chose the picture) using Windows Photo Gallery, nothing happens with printing, but a screen comes up asking me if I want to send a fax.  What's wrong.