Processed cube sees no changes, but new data have been inserted..

Simple AdwWorks cube has time dimension with years range from 2000-th to 2007-th. Fact data exists for 2001-2006. 2000-th and 2007-th are empty.  Ok. 
I'm insert new data to source fact table for 2001-th  and process the cube. All changes immediately reflect in measure value (it grows). But new data for 2000-th don't reflect in measure value growing .  Nevertheless, during cube processing
SSAS sees new rows for both cases (the value grows), and sql profiler catches equal batches of commands for  2001-th and 2000-th. But measure value grows only for 2001-th.
I've clear mdx-script - it contains now only calculate command. Now there is:
a) select sum(measure value) on fact tables in source database reflect new rows  for both cases
b) cube processing sees changes for both cases
c) mdx-script is clear (there are no scopes, witch can set measure value to null )
d) select [sales amount] for cube reflect this changes only for 2001-th, not for 2000-th
Any suggestions?
===========
One day later.. :)
The problem seems as resolved, but... I don't know: is it tech and/or logic feature or bug..
So, what is happened.. Simple mdx query:
select [sales amount] on 0,
[some date from 2000] on 1
from [cube]
gives null value for [sales amount], but for [some date from 2001] value is not empty. In database fact table both values (results of sum(salesamount) for both dates) are not empty. After research i found that there was one measure ([Temp]) in the [sales amount]
measure group for which MeasureExpression was set to [sales amount]*[average rate] ([average rate] - measure from [Fact Currency Rate] measure group). Fact table for [Fact Currency Rate] measure group didn't contain data for 2000-th. I've insert it and - vualya
- all work and for 2000-th now. Main question is: why ssas calculate MeasureExpression formulas for measures, which I'm not request in a query, and why ssas set requested by me value to null, if it does not depend from formula of MeasureExpression property
of unrequested measure? Is it bug or "defense from fool"?. There is another sample of such strange ssas behaviour. I mean usage of UnaryOperatorColumn property. If it is set for any attribute of any dimension, then it influences on every query, even
if this attribute not is a part of this query. For example
select [sales amount] on 0
from [cube]
returns different results, which depends by setting of UnaryOperatorColumn for some dimension attribute.. What all it mean?

Hi Tkolomiewts,
I have the following questions, which will help me in better understanding of your issue :
1) Is [sales amount], a base measure or calculated measure?
2) Are you using the default Adventure works database? 
Regarding
your other question about unaryoperatorcolumn for some dimension attribute affecting the results, lets use the following query that you mentioned:
select
[sales amount] on 0
from [cube]
This
query doesnt pick only the measure value, but also fetches the "All" attribute for the all the dimension attributes. Hence, if the UnaryOperatorColumn influences the All attribute's value, then it will affect the results of the query above.
Regards,
Muthukumaran

Similar Messages

  • I have my ACCOUNT in The US, Moved to Chile and wanted to change but since still have US$1.00 in my account can not do it and can't find anything for a buck... What can I do?

    Pls need help I have my ACCOUNT in The US, Moved to Chile and wanted to change but since still have US$1.00 in my account can not do it and can't find anything for a buck... What can I do?

    Changing your iTunes Store country:
    Sign in to the account for the iTunes Store region you'd like to use. If already signed in to an account, from Settings, choose Store and then View Account.
    Tap "Change Country of Region" and follow the on screen process of changing your region. Agree to the terms and conditions for the region if necessary, and then change your billing information.
    This is from http://support.apple.com/kb/HT1311
    If you get an error, then contact: http://www.apple.com/support/itunes/contact/

  • Created a trigger but new values are not inserting in the backup table

    I have created a backup table and writter a trigger on a table such that after update old values and new values are to be inserted into the backup table, but new values are not inserting. I am giving the code please help me
    create or replace trigger "SUPPQUOTES_AUDIT"
    after update or delete on phsuppquotes for each row
    begin
    insert into phquotes_audit(cprc_new,suppcode,itemcode,cprc_old,negodt,validdt,userid,TRANDATE) values
    (:new.cprc,:old.suppcode,:old.itemcode,:old.cprc,:old.negodt,:old.validdt,:old.userid,SYSDATE);
    end;

    old values and new
    values are to be inserted into the backup table, butwell you have only one insert there, inserting old values with a new id (which is ok if you don't update the id column, but I don't think that :new is available for deleting ops); you should have two inserts:
    insert into
    phquotes_audit(cprc_new,suppcode,itemcode,cprc_old,negodt,validdt,userid,TRANDATE) values (:old.cprc,:old.suppcode,:old.itemcode,:old.cprc,:old.negodt,:old.validdt,:old.userid,SYSDATE);
    if (updating) then
    insert into phquotes_audit(cprc_new,suppcode,itemcode,cprc_old,negodt,validdt,userid,TRANDATE) values (:new.cprc,:new.suppcode,:new.itemcode,:new.cprc,:new.negodt,:new.validdt,:new.userid,SYSDATE);
    end if;
    gojko adzic
    http://gojko.net

  • 1 new update have been added to the project would you like to close the project and apply these updates message in project 2010

    1 new update have been added to the project would you like to close the project and apply these updates message  in project 2010.
    One of the PM is getting above message and not any recent changes happened?

    Hi,
    This message appears when an update has been sent for his approval and is pending. It could happen while opening the project plan, or when clicking on something like "retreive tasks updates" from the backstage menu of MS Project Pro.
    The PM should go to his approval center and check for any approval pending.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • How to identify which data has been inserted  to the table in specific date

    Hi,
    i created one table without data column.. i am inserting data in that table.
    i want which data has been inserted today..
    Please help.
    Thanks,

    If you are in Oracle 10g you can use ORA_ROWSCN.Note that unless the table was created with ROWDEPENDENCIES enabled, though, ORA_ROWSCN is tracked at the block level rather than the row level. So a block with one new row and many old rows could appear as having all been entered today.
    Justin

  • FacesMessage(s) have been enqueued, but may not have been displayed.

    I have a page with the following snippet of JSF code.
    <html:message showSummary="true" errorStyle="font-color:#FF0000" for="authorName"/>
    <html:outputLabel styleClass="leftFieldTags" for="authorName">Author Name</html:outputLabel>
    <html:inputText id="authorName" style="text-align:left;margin:4px;font-size:13;width:40em;" value="#{addEditionPage.name}" size="128" />The following code in a bean places a message on the queue. The control field is a string "authorName".
            String msg = messages.getString(key, args);
            FacesContext.getCurrentInstance().addMessage(control,
                    new FacesMessage(severity, msg, ""));My navigation on error points back to the same page.
    When executed I get the following error.
    2007-06-19 13:21:40,015 INFO  [javax.enterprise.resource.webcontainer.jsf.lifecycle] WARNING: FacesMessage(s) have been enqueued, but may not have been displayed.
    sourceId=authorName[severity=(ERROR 2), summary=(Too many authors returned), detail=()]What's going on, and why doesn't my message display. The function that adds the message is an Action method.

    807976 wrote:
    Hi.
    I'm experience something similar.
    Did you finally resolve this stuff?.
    ThanksDon't resurrect old threads. Create a new one and provide a complete problem description.

  • HT1351 I have been regularly receiving video tutorials from Addicted 2 Salsa and synching these to my iPod but recently I have been unable to do so. I overcame this problem in the past by making an ipod version or loading them on to iMovie and then sharin

    I have been regularly receiving video tutorials from Addicted 2 Salsa and synching these to my iPod but recently I have been unable to do so. I overcame this problem in the past by making an ipod version or loading them on to iMovie and then sharing them but this method no longer works. THere is no problem viewing them on my computer and everything else synchs okay to the iPod so what is going on and how can I overcome this problem?

    Double check to make sure podcasts are configured to sync to your device from under the iPod's Podcast configuration tab.
    To access the Podcasts tab for your iPod, plug your iPod in and click on it from under theDevices section in the left hand pane of iTunes.  This will bring you to the Summary tab. Along the top you should see a Podcasts tab, so go ahead and click on it.  Here you can configure how and what podcasts sync to your iPod.
    If you do make any changes to do this tab, make sure to hit the Apply button in the lower right hand corner to apply the update changes to your device.
    Otherwise, are you getting any error messages when you sync your iPod Classic with iTunes?
    B-rock

  • My Mac mini OS is a 10.6.8 and after paying for Adobe premiere 13 download I realized that my computer needs to be 10.8 or greater.. I thought that I had read that 10.6.8 was enough but I must have been mistaken.. Any suggestions or am I out of luck?

    My Mac mini OS is a 10.6.8 and after paying for Adobe premiere 13 download I realized that my computer needs to be 10.8 or greater.. I thought that I had read that 10.6.8 was enough but I must have been mistaken.. Any suggestions or am I out of luck?

    See if this helps:
    Return, cancel, or exchange an Adobe order
    Gene

  • My Touch ID works great, but because I have been using it, I now can't remember my password

    My Touch ID works great, but because I have been using it, I now can't remember my password.
    How can I reset my password?

    Hi Each day when you power up your iphone you have to use the 4 number passcode. How can you forget this in 1 day? Cheers brian

  • Purchased elements 12 in November 2013.  Worked for a little while but since January have been unable to use it.  Comes up with "Photoshop Elements 12 Editor has stopped working"

    purchased photoshop elements 12 online in November 2013.  worked for a little while but since January have been unable to use it. Comes up with "Photoshop Elements 12 Editor has stopped working"

    Hi there CrossbowsandWings,
    You may find the troubleshooting steps in the article below helpful.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    -Griff W. 

  • TS3376 I was able to use the findmyiphone app last week, but now I have been getting an error message "Can't load findmyiphone.  There was a problem loading the application."  please help as we are trying to locate an ipod with pics of a no deceased loved

    I was able to use the findmyiphone app last week, but now I have been getting an error message "Can't load findmyiphone.  There was a problem loading the application."  please help as we are trying to locate an ipod with pics of a no deceased loved one.

    Had the same problem and the same message --  was suddenly unable to access icloud apps on my pc, also using Windows 7 and Internet Explorer. After several days of pulling my hair out, decided to try a different browser and was able to get in by using Firefox instead of Internet Explorer.  Hope this helps. 

  • How do I remove old web site when publishing new site with same URL in iweb? Hit replace when publishing new iweb site (so we could have control over changes) but new site name is attached to old via a / after our www address we want to keep.

    I hit the replace when publishing the new iweb site (so we could have control over changes - last one was not an apple based site) but new site name is attached to old via a forward slash and underscore after our www address. Makes it very messy with a very long web address.  Original address now followed by iweb site name followed by name of first page? Went for iweb as not that computer literate - all going so well?! Cheers for help in anticipation. Have to get off to work now but be great end to week if we could be sorted tonight. Rupes

    Well yes of course, if you try and publish through iWeb there won't be an option to publish without your site folder which is exactly why I told you to download Cyberduck and use Cyberduck to upload your site to your server having published your site from iWeb to a local folder.  That is what you need to do if you don't want your site name to be included in yoru url.
    It would have been easier also if you had used Cyberduck initially to connect to your server and delete your old site yourself - at least that way you would have deleted the correct files rather than relying on your hosting service to do it and doing it incorrectly.
    Download Cyberduck and then select the publish to a local folder option from iWeb and then use Cyberduck to upload your site to your server, but rather than uploading the whole site folder and separate index file, upload ONLY the contents of your site folder and then your url will be http://www.domain.com/page_name.html.
    It really isn't rocket science!

  • Replicate only changed and new data

    Dear,
    Is there a possibility to SQL Server 2012, to all the changes that happen in the DB x record in DB y?
    DB x would have all the data, and DB y would contain only the data from the time of recording.
    If the DB x insert data, the DB y are only visible data by the insert.
    If the DB x update data, the DB y are only visible data by the update, which can be seen that the data update.
    If the DB x delete data, the DB y are visible data are deleted.
    DB y be recorded only certain information, for example a specific table and certain procedures.
    Monitoring changes must be in real time.
    The structure must remain the same.
    Something like this would be like:
    Thank you

    You should do a no-sync subscription and then ensure that the data and schema necessary are on the subscription and use the continue on data consistency error profile.
    looking for a book on SQL Server 2008 Administration?
    http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search?
    http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941

  • HT1807 I travelled to a different country & using a new sim; with the change in sim, I have been unable to use iMessage & FaceTime. Cant replace replace the earlier no with the current one and it reads error. how to correct this?

    I traveled to a different country and using a new sim/new carrier. With the change in the sim, I have been unable to use the iMessage--outside of WiFi coverage area, and FaceTime at all time. I believe it is due to the phone number registered as an address in the phone, which has not changed with the change of sim; so it countinues to showing as an error while varifying the data.
    Wonder if any of you are in a position to advise as to how to address the following.
    1. I need to input correct phone no, meaning the number I am using in the correct location.
    2. I need to activate FaceTime and be able to use it.
    3. I need to be able to use iMessage and/or ordinary sms while outside of WiFi coverage area.
    It may be mentioned in my current location I don't have GPRS on the cell phone which is the case in my regular station.
    Thanks for your help.

    for #1
    Frequently asked questions about Apple ID - Apple Support
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    If you are wondering how using multiple Apple IDs relate to iCloud, see Apple IDs and iCloud.
    for #2
    Apple does not accept unsolicited ideas see Apple - Legal - Unsolicited Idea Submission Policy

  • How to transformed data from File to DB but the data to be insert two tables  parallel?

    Hi friends ,I am new to Oracle SOA ,I have one requirement  for the project
    actually in these project
    1.I have to read three different types of files (Employee info,Purchase Order Info,Salaes Order Info) through file adapter these records are to be store in  data base 
    transaction table.In these transaction table contains WHO columns and payload  with clob data type which contains each  record  in xml form.
    2. Now I have to  take these payload data  which is in xml form and store   in the respective table(employee or PO or SO) .I have to call these in dynamically.
    so please give me ideas and suggesstions ,,
    thanks in advance

    Roger,
    I don't know about simple way to load data from file into a table using button from your application,
    Maybe some piece of PL/SQL code with UTL_FILE or DBMS_LOB, or you can try to upload file to database using Apex "File browse" item, and then do some processing with DBMS_LOB... but it will require some work...
    Maybe someone else could advice with some simple method I don't know...
    However loading files using Apex Load Utility is quite easy.
    You can use something like this to load data to views created on remote tables:
    CREATE TABLE local_tmp_table AS SELECT * FROM view_on_remote_table WHERE 1=0;
    --load data from file to created table using Apex Load utility
    INSERT INTO view_on_remote_table SELECT * FROM local_tmp_table;
    COMMIT;
    DROP local_tmp_table;Or without views:
    CREATE TABLE local_tmp_table AS SELECT * FROM remote_table@dblink WHERE 1=0;
    --load data from file to created table using Apex Load utility
    INSERT INTO remote_table@dblink SELECT * FROM local_tmp_table;
    DROP local_tmp_table;Regards
    Tomasz
    Message was edited by:
    Tomasz K.

Maybe you are looking for

  • Smartform blank, when it shouldn't be

    Here's the problem. I have a smartform that prints a PM order (from IW32). If I choose the print preview option, the form prints perfectly and also hits any break points I have inserted into the smartform. If, however, I simply click on the print but

  • Problems editing playlists

    I have created a playlist but now cannot edit the order as the 'click & drag/drop' wont work. Any suggestions?

  • Hyperion distributed installation question

    Gurus, We are upgrading from 9.3.3 to 11.1.2.1(Distributed environment) and have gone through the 11.1.2.1 start here , installation and configuration guides. Existing environment: Machine1(Windows 2003 R2): Hyperion Shared Services, EAS webapp,Essba

  • Disc for Java System Copy?

    Hello, Does anyone know which installation master disc to use for a java system (specifically portal 6.0) uses?  The documentation I have says to use the NW04 SR1 Installation Master disc. I have this disc and have applied the installation control pa

  • Adobe Muse 'Trial initialisation failed' on Mac

    Hello, I am interested in trying Adobe Muse, however whenever I try to begin my trial I get an error message that says 'Trial initialisation failed, your trial has expired'. I have never used the software before, and I have tried creating another Ado