RSHIENODETMP Table getting to big

Hi we are using BI7
found out that this table RSHIENODETMP is getting to big.. from the sap notes we know that repot RSAR_HIETMPTAB_CLEAN could be use, to delete some old data from it.
The requirement of this program so it can be run, is using date to filter the deletion..
but we found out that the data inside this table, on the filed date from and date to are 00.00.0000
is this the normal behaviour of the table ?
because if we dont specify the correct date.. it will try to delete everything, and it will take out very long time, and lots of db resources..
any suggestions ?

If your hierarchies are not fully or partially time dependent, then you will have those dateto and datefrom fields 00.00.0000.
This is normal.
When you execute the program, you are asked to choose a date for the request. As you see in the table, first key is the request number. The date you enter for the program, will choose the requests related to the date and delete, nothing to do with those 00.00.0000 stuff.
P.S:
This the temporary table, to hold hier data loaded via idoc's. As I searched , this and some other temp tables should be normally filled  with FM RSAR_HIER_FILL_TEMPTABLES  and cleared with RSAR_HIER_UPLOAD_2ND_STEP during hier load.
Let's search for it
Derya
Edited by: Derya Akcakaya on Apr 9, 2008 9:02 AM

Similar Messages

  • RCD table getting too big

    Hello,
    Our rcd table is getting bigger (21 M records) and querying from that table takes up a lot of time.
    What is the recommended way to keep the size of that table within control?
    We can always create a materialized view to get a subset of that table so we can work with more recent records. However, this doesn't solve the problem of it getting bigger and bigger.
    Do you get it purged or archived somehow?
    Thanks
    Khanh

    Will do.
    Thank you Martin.
    Found this document on metalink:
    https://support.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(bmDocType=HOWTO&bmDocDsrc=DOCUMENT&bmDocTitle=Question%20on%20Switching%20to%20Noarchivelog%20Before%20Running%20Recon%20Archival%20Utility%20in%20OIM?&from=BOOKMARK&bmDocID=759373.1&viewingMode=1143))
    Question on Switching to Noarchivelog Before Running Recon Archival Utility in OIM? [ID 759373.1]
    Khanh
    Edited by: user12049102 on Dec 4, 2009 11:14 AM
    Edited by: user12049102 on Dec 4, 2009 11:18 AM

  • I'm trying to open a 900kb Word doc (240pages) in Pages but get this error message:  Import Warning - A table was too big. Only the first 40 columns and 1,000 rows were imported.

    I'm trying to open a 900kb Word doc (240pages) in Pages but get this error message:  Import Warning - A table was too big. Only the first 40 columns and 1,000 rows were imported.

    Julian,
    Pages simply won't support a table with that many rows. If you need that many, you must use another application.
    Perhaps the originator could use a tabbed list rather than a table. That's the only way you will be able to contain a list that long in Pages. You can do the conversion yourself if you open the Word document in LibreOffice, Copy the Table, Paste the Table into Numbers, Export the Numbers doc to CSV, and import to Pages. In Pages Find and Replace the Commas with Tabs.
    There are probably other ways, but that's what comes to mind here.
    Jerry

  • How and when does a dimension table gets generated

    Hi Gurus,
                     I am new into BI and I will be put into a project within 2 months. I have learned that dimension table contains the sid's of all the charateristics in the dimension table. My conclusions are like
    1. Dimension table contains the dim id as the primary key.
    2. Dimension table contains sid's of the characteristics.
    3. Though sid's in the dimension table are primary keys in thier 'S' table they are not key in the dimension table.
    My question is
    1. Is there any chance to generate new dim id's for the same combination of sid's because sid's are not part of the key?
    2. I got confused when and how does the dimension table gets generated ?
    I have searched in the forum and google but still my doubts didnt get clarified. If anyone could throw some light on this topic I would really appreciate it.

    HI,
    All your conclusions are correct.
    Now for your questions the answers are in line:
    1. Is there any chance to generate new dim id's for the same combination of sid's because sid's are not part of the key?
        No new dim id's will be generated, dim Id is unique for the same combination of sid's .
    2. I got confused when and how does the dimension table gets generated ?
        They get generated when you activate the info provider.
    Hope this helps.
    thanks,
    Rahul

  • Unable to update when executed, table gets lock Execution does not stop Execution even for an hour

    Following is my Query unable to update when Executed table gets lock Execution does not stop even for an hour.
    update Employees 
          set Status = 'Close'
          where statusid IN (select statusid 
                                             from MyView 
                                              where DownloadedDate ='2014-07-27 00:00:00.000'
    here Employee contains 3,00,000 of records and Subquery return 1,50,000 Empid 
    i tried in various ways but not able to solve, statusid  column have no index on,  i tried using cursor but it does not work.
    plz let me know how to solve this Issue, THANKS IN ADVANCE.

    Hello,
    You should better post your question to a more related Forum, like Transact-SQL or SQL Server Database Engine; this Forum is for samples & community Projects.
    Have you checked the execution plan if indexes are used?
    You could update the data in chunks, e.g. 10.000 rows per execution. For this you have to add a TOP clause and a filter to update only those, who are not updated yet.
    update TOP (10000) Employees
    set Status = 'Close'
    where statusid IN
    (select statusid
    from MyView
    where DownloadedDate ='2014-07-27 00:00:00.000')
    AND Status <> 'Close'
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Unable to update, when executed table gets lock and Execution does not stop even for an hour.

    Following is my Query, which unables to update. When Executed, table gets lock and Execution does not stop even for an hour.
    update Employees 
          set Status = 'Close'
          where statusid IN (select statusid 
                                             from MyView 
                                              where DownloadedDate ='2014-07-27 00:00:00.000'
    here Employee contains 3,00,000 of records and Subquery return 1,50,000 Empid 
    i tried in various ways but not able to solve, statusid  column have no index on,  i tried using cursor but it does not work.
    plz let me know how to solve this Issue, Its very Important to get solve as all my further work depends on Updation
    , THANKS IN ADVANCE.

    See also your other thread with the same question:
    http://social.msdn.microsoft.com/Forums/en-US/80243625-fc3b-4ee1-bce1-4adcdbc16c14/unable-to-update-when-executed-table-gets-lock-execution-does-not-stop-execution-even-for-an-hour?forum=sqlserversamples
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Query to find out list of the tables getting selected frequently

    Hi All,
    Please tell me Is there any way to find out list of the tables getting selected frquently, ( please exclude the insert+updates+deletes+truncate+drop).
    Regards

    Hi Sameer
    You can check V$SQL_PLAN to see the objects being accessed by your SQL statements. If you have diagnostic licence, you can also check DBA_HIST_SQL_PLAN
    select distinct object_owner, object_name from v$sql_plan;
    select object_name, count(*) from v$sql_plan group by object_nameRemeber, this is only a crude way of finding this information.
    Regards
    Venkat

  • What fact tables get affect in open hub services whether E or F

    hi,
    what fact tables get affect in open hub services whether E or F when an info provider is accessed.
    regards,
    -a

    Hi Ajay,
    Depends whether the cube is compressed or not. If not compressed then F fact table and if fully compressed then E fact table.
    Bye
    Dinesh

  • How does the MDKP table gets updates

    Dear PP Guru's,
    I am new to SAP PP,
    We have a query that how does the MDKP table gets updates,
    Some time If we create new material by coping the material which is showing in table MDKP,
    But new material is not showing in table MDKP,
    Based on table MDKP we are fetching some data, due to above problem we are not able to fetch the data for some materials,
    Please suggest what could be the reason,
    Any help will be highly appreciated,
    Thanks in advance,
    Sachin.

    Thanks Thaila,
    I have checked the same by doing MRP through MD02 & the entry is getting update in MDKP,
    But for some of our materials MRP (MD02) is done earlier, but these materials are not showing in MDKP,
    Please suggest, when the entries in MDKP are removed, are there any conditions for removing the entries from MDKP.
    please pour some light on the issue,
    Thanks once again,
    Sachin.

  • JDev 11.1g Table gets lopped.

    I come across a problem, when some action is made and page is refreshed the table gets stucked into infinite loop (slide bar is jumping up and down until the browser crashes).
    I get some data where this problem ocuurs:
    x161 is null
    AdfDhtmlPage.prototype.scheduleTimer= function(x157,x158,x159,x160)
    AdfAssert.assertFunction(x158);
    AdfAssert.assertNumber(x160);
    var x161=AdfDhtmlPage._timers;
    var x162=AdfDhtmlPage._nextTimerId++;
    var x163={context:x157,state:x159,callback:x158,timerId:x162};
    x161[x162]=x163;
    x163.domTimerId=this.getDomWindow().setTimeout(
    "AdfDhtmlPage.__callTimerCallback(" + x162 + ");",x160);
    return x162;
    too much recursion
    AdfDhtmlTablePeer.prototype._getElemBySubId= function(x598,x599)
    var x600=this.getDomElement();
    if (x600==null)
    x600=x599;
    return AdfDhtmlTablePeer._getChildBySubId(x600,x598);
    }On page is simple table in which in one column are go links, which commits a action (there is no problem with actions).
    Thank you for your help, Rok

    Can you check your faces-config.xml file, are navigation rules correct? Check the action property of the component which submits the page..
    Regards,
    Vikram

  • Updating MDM table when another table gets updated

    Hi Guys,
    We use MDM catalog for SRM we have a table Catogories and Hierarchy, Our requirement is when ever Catogories table gets updated we have to update the Hierarchy table using some logic, So please let me know whether it is possible to do this and How to do it.
    Regards,
    Prabhu

    Hi Adrivit
    Thanks for ur idea, Could you please help me for the below questions,
    1. Currently we use Import manager to create a Catogories table, Now we want to do via PI, So we create a OUT file and drop it in the MDM OUT FTP directory but I want to know how the system picks it and process.
    2. When the MDM picks the file to upload it in Catogories table whether i will do duplicate check??? Or Is there any way I can code to check whether the give data record exist in the MDM data base then exclude or Ignore those entries.
    Regards,
    Prabhu

  • What are the tables getting updated

    Dear,
    can anybady tell me the what are the table getting updating while doing J1IEX (CAPTURE AND POST). like RG23A, RG23C,RG1,PLA.......
    THANKS
    MRS

    Thanks Ravi,
    Can u help me some more input like how to see the RG23A value and RG23C,PLA.
    what Is the any t code to the know the status?
    Thanks
    mrs

  • How many minimum tables get Populated once Employee Created in People scree

    Hi
    how many minimum tables get Populated once Employee Created in People screen ?
    thanx

    per_all_people_f
    per_periods_of_service
    per_person_type_usages_f
    per_all_assignments_f (as a primary assignment is mandatory for employee)

  • Tables get affected when creating idoc

    hi,
            Tell me the tables get affected when creating idoc, for example in which
            table idoc error logs get stored etc

    Hi,
    EDIDS - stores the Status of the IDOcs..There you can find the message type, message number and message id
    EDID4 - where the idoc data is stored
    EDIDC - where the control record for the idoc is stored
    Thanks
    Naren

  • Last column in HTMLB table gets truncated

    Hi,
       The last column in a HTMLB table gets truncated,i.e, only part of the column is visible. The table's border (along the column) is also not visible.
          I've tried by reducing the number of columns, but the last column always gets truncated.
         This iView has the same properties as other iViews with HTMLB tables, but those iViews display correctly all the HTMLB tables, even when they have much more number of columns.
         I'm new to this and don't have much idea.Does anyone has suggesstions regarding this?

    Hi Sagar,
    First, welcome on the SDN forum!
    About your question: Strip down your code to the absolute minimum required to reproduce your problem. This way maybe you can analyse the problem by yourself. If not, you can still submit this example here (this is also a reason why to strip down the code to a minimum, cause otherwise nobody will read the code if it's longer the necessary).
    Hope it helps
    Detlev

Maybe you are looking for

  • Viewing multiple pages in .pdf form

    Hello Everytime I open a multi-page pdf in illustrator, it only opens the first page..  Why is this, and is there an option to change it? CS5 Thanks in advance, N

  • F11 Audio Light Stays Off (orange)

    Hello all.  I have a DVt-6000 computer, and the audio light refuses to change from orange to blue.  It just sits there in orange.  Audio works as supposed to.  I remember reading about this a while ago, but cannot find it now.  Many thanks in advance

  • Macbook Pro not working - charger flashing orange and green...

    So I have 13" macbook pro 2010... i was on it yesterday when all of a sudden the screen started flashing black and back to normal and black again really quickly... so i shut down the laptop and put it aside for a few hours... i returned later and tri

  • Conditional disply

    Have a drop down list of 5 items (Group1-5), one text field to enter associated no that pertains to each group, then sql report will fire up based on the input 1. how do you make this text fied to be a conditional display: ie. This text field should

  • Missing Disk Partition after Yosemite Install (invalid sector size)

    Right off the install, my exFAT partition on my MBP is missing. Thought it was not mounted automatically so I went to Disk Utility to have a look. It says "invalid sector size (0)" or something (I'll edit/update this post in a bit. I'm on Mac Recover