LOB Storage Attribute Changed Unexpectedly

Hello All,
I have an Oracle Text application and after testing high volume inserts (100,000 Docs) I noticed the LOB text column's IN_ROW storage attribute changed from out of line to in line storage. This had a negative effect on text search performance and I am positive the table was created and data initially loaded with out of line storage on my LOB.
Does anyone know of any Oracle conditions or situations that would cause this to occur?
Thanks..
Joe

Please change nologging in my earlier response to logging.
alter table parttest
modify partition pt_violation_200201
lob(explanation) (nocache logging)

Similar Messages

  • BPS and attributes change

    Hi,
    I'm currently working on BI-IP with planning function "Repost on Basis of Characteristic relationship" and it works well but i would like to know if there's something like this in BPS.
    Some old projects are in BPS and there are some derivation by characteristic relationship. In BPS if an attribute changed from the last writing a new line is created with the new value but i don't think there's another line to cancelled the fisrt one (line with old attribute value).
    I hope someone can find an issue for my question.
    Raito.

    After few test with BPS it doesn't work like BI-IP.
    Let's take an example to be sure we speak about the same thing.
    I've got a Web Interface for the input where we need to fill one Order Number with an Amount. On my Planning Area, there's a derivation by characteristic relationship for profit center (attribute of Order Number).
    I fill my interface with Order Number A and an AMount of 10.
    In my cube i have something like :
    Order number = A / Profit Center = AA / AMount  = 10
    If my master data changed and my new profit center for Order number A is AB. If i changed my data in the input with the value 20, in my cube i've got something like :
    Order number = A / Profit Center = AA / AMount  = 10
    Order number = A / Profit Center = AB / AMount  = 10
    For me it's not good because i need to have 20 in my profit center AB and 0 in AA like how it works with BI-IP and planning function "Repost with characteristic relationship". SO i need to have 3 lines in my cube
    Order number = A / Profit Center = AA / AMount  = 10
    Order number = A / Profit Center = AA / AMount  = -10
    Order number = A / Profit Center = AB / AMount  = 20
    I hope it's clear ...

  • Effect of Full Attribute Extract on Aggregate Attribute Change Run

    Because we extract data that does not trigger the change pointer on 0CUST_SALES we do a FULL extract of this data daily instead of a DELTA.  We recently created an aggregate which contains navigational attributes of 0CUST_SALES (namely Sales Office & Sales Group).
    My question is does the system look to see if any information has changed between the new and old values or does it assume since there is a new version for every entry that 100% of the values have changed?
    The reason I'm asking is BW appears to be rebuilding this aggregate from scratch each day instead of changing the aggregate for the few entries that actually changed.

    I did a FULL extract for 0CUST_SALES in our QA system.  It transferred 28617 records.  When I look into the monitor > processing > data package 1 > update I see the following:
    3 data records in table /BI0/XCUST_SALES marked for deletion
    3 data records inserted in table /BI0/XCUST_SALES
    3 data records n table /BI0/PCUST_SALES marked for deletion
    3 data records inserted in table /BI0/PCUST_SALES
    Different database operations were executed
    When I run the attribute change I see the following messages:
    The Change Run is executing                                                                               
    Attribute 0CUST_SALES__ZZROUTE for basic characteristic 0CUST_SALES: 2 changes   
    Attribute 0CUST_SALES__0BILLTOPRTY for basic characteristic 0CUST_SALES: 2 changes
    Attribute 0CUST_SALES__0PAYER for basic characteristic 0CUST_SALES: 2 changes    
    Attribute 0CUST_SALES__ZZACGRP for basic characteristic 0CUST_SALES: 2 changes   
    0001 ZSD_C02    100016     Aggregates Will Be Adjusted by:Reconstruction
    0002 ZSD_C02    100019     Aggregates Will Be Adjusted by:Reconstruction
    After seeing this i revisited the documentation for threshold value in RSCUSTV8.  Ours is BLANK!  So according to the documents when it is blank the aggregate is reconstructed generally.  Not what we want!!
    I will change the setting to the suggested 20% to start and we'll work from there.
    Thanks for your help Oliver.

  • Attribute Change run taking too long time to complete.

    Hi all,
    Attribute change run has been taking too long time to complete.It has to realign 50 odd aggreagates, some by delta , some by reconstruction. But inspite of all the aggregates it used to finish in quick time earlier. But since last 4-5 days it is taking indefinite time to finish.
    Can anyone please suggest what all reasons may be causing this? and what possibly can be the solution to the problem? It is becoming a big issue. So kindly help with ur advises.
    Promise to reward your answer liberally.
    Regards,
    Pradyut.

    Hi,
    Check with your functional owners in R/3 if there are mass changes/realignments or classification changes are going on regarding master data. e.g. reasigning materials to other material groups. This causes a major realignment in BW for all the aggregates. Otherwise check for parameterchanges / patches or missing db stats with your sap basis team.
    Kind regards, Patrick Rieken.

  • How can I instruct SqlMetal to exclude the 'storage' attribute of all the columns on a mapping file when converting a .dbml file to a mapping file?

    Hi,
    I'm trying to use LINQ to SQL with a top down approch using my own POCO classes. I'm using a XML file for the external mapping but in order to avoid typing a long file by hand I found that I could use the O/R designer to create the .dbml and from there I
    could use SqlMetal.exe to generate the map file from the .dbml. The only thing is that, by default, SqlMetal generates a map file which includes the 'storage' attribute for all the columns of the database. For example:
    <
    Column
    Name="Ticker"
    Member="Ticker"
    Storage="_Ticker"
    DbType="NChar(20)
    NOT NULL"
    CanBeNull="false"
    />
    However, in my code I only use automatic properties (Ticker, in this example) and not properties with the corresponding private field. Basically, I don't have any field "_Ticker" in my class. I found out that this the reason why I'm getting the error
    "Bad Storage property: '_Ticker' on member 'TTS.Domain.Asset.Ticker" when trying to add an entity to the database. However, ff I delete the all the 'storage' attributes from my mapping file everything works fine.
    Is there a way so I could use SqlMetal to generate a map file from a .dbml file but in which it never includes the 'storage' attribute?
    Thanks.
    Best,
    Miguel T.
    This is reason why I'm getting the error.

    Hi Serguey,
    I was expecting that answer but I still had some hope that it could be possible! I checked those 2 links before sending my question.
    Currently, I'm deleting the storage attributes everytime that I generate a mapping file. The issue is that I will have to do this eveytime that I need to add data in my O/R designer which happens quite frequently since I'm working with iterations in my project.
    It's not very practical but it's still better than write the additional data by hand.
    I don't know how I could create my own mapping validation in order to exclude the 'storage' attributes everytime that I generate a mapping file from a .dbml file with SqlMetal but I will check that option too.
    Thanks for your helps.
    Best,
    Miguel.

  • Assigning a value to a record attribute ,where attribute changes dynamicall

    Hi all,
    i am writing a procesure in which ...
    i want to assign values to a record whose attributes changes dynamically depending on the variable value...
    below is the code in which i am trying to assign values to a record type rec_ce_stmt_int_tmp & i want a value "/" to be assigned to rec_ce_stmt_int_tmp.column(l_num_curr_col_no + 1)[[/i]b] ...
    for example if l_num_curr_col_no value is 14 then a value "/" must be assigned to rec_ce_stmt_int_tmp.column15....
    i am highlightinf the row of code where i want to assign a vlue "/" to my record attribute.... & insert this assigned values in to my table.
    FOR c_fnds_dtl_rec IN
    c_fnds_dtl (c_stmt_acts_rec.intf_row_id)
    LOOP
    IF l_num_curr_col_no > 13
    THEN
    rec_ce_stmt_int_tmp.column(l_num_curr_col_no + 1) := '/'; BEGIN
    INSERT INTO ce_stmt_int_tmp
    (rec_no,
    column1,
    column2,
    column3,
    column4,
    column5,
    column6,
    column7,
    column8,
    column9,
    column10,
    column11,
    column12,
    column13,
    column14
    VALUES (rec_ce_stmt_int_tmp.rec_no,
    rec_ce_stmt_int_tmp.column1,
    rec_ce_stmt_int_tmp.column2,
    rec_ce_stmt_int_tmp.column3,
    rec_ce_stmt_int_tmp.column4,
    rec_ce_stmt_int_tmp.column5,
    rec_ce_stmt_int_tmp.column6,
    rec_ce_stmt_int_tmp.column7,
    rec_ce_stmt_int_tmp.column8,
    rec_ce_stmt_int_tmp.column9,
    rec_ce_stmt_int_tmp.column10,
    rec_ce_stmt_int_tmp.column11,
    rec_ce_stmt_int_tmp.column12,
    rec_ce_stmt_int_tmp.column13,
    rec_ce_stmt_int_tmp.column14
    EXCEPTION
    WHEN OTHERS
    THEN
    fnd_file.put_line
    (fnd_file.LOG,
    'Error while inserting 03/88 >13 record into ce_stmt_int_tmp :'
    || SQLERRM
    RAISE end_acts_save;
    END;

    Hi Sathya,
    Actually this is apart of my procedure, BEGIN is also there
    it is giving an error saying COLUMN MUST BE DEFINED on line
    rec_ce_stmt_int_tmp.column(l_num_curr_col_no + 1) := '/';
    can you please help me out to achieve my task ...
    thnks,
    Sachin

  • ERROR while running attribute change run.

    hi sap xperts,
    I got an error while running the attribute change run in a process chain.
    At first i got an error "The action is locked by a change run"
    SO I DID THE FOLLOWING STEPS.
    1.RUN ATTRIB CHANGE RUN MANUALLY  IT RUN SUCCESSFULLY,but the process chain is still red.
    Q1.Is there any way to link the manually run attrib chnage to process chain so that the process chain becomes Green?
    2.SM12 - realease the locks and right click the pc and repeat.It didn't work
    Q1.While removing the locks what should we remove,bcoz i removed all the locks?
    3.I again removed the lock and repeat the process but still i didn't work.Now its chowing "SQL ERROR OCCURED WHILE ACCESSING"
    So the Process chain got stuck,Can any body help me to run the attrib chnage run.
    If possible can anybody send the Process chain monitoring documents to my email id:
      <email ID removed>
    please.thanks in advance,i know how to say thanks in sdn.

    At any point in time only one attribute change run can run in the system. The other ACR's will fail due to locks. In your case, to set the process chain to green, try the following steps.
    Open the messages of a failed step by right clicking on it and selecting 'display messages'.
    In the opened popup click on the tab 'Chain'.
    In a parallel session goto transaction se16 for table rspcprocesslog and display the entries with the following selections:
    1. copy the variant from the popup to the variante of table rspcprocesslog
    2. copy the instance from the popup to the instance of table rspcprocesslog
    3. copy the start date from the popup to the batchdate of table rspcprocesslog
    Press F8 to display the entries of table rspcprocesslog.
    Now open another session and goto transaction se37. Enter RSPC_PROCESS_FINISH as the name of the function module and run the fm in test mode.
    Now copy the entries of table rspcprocesslog to the input parameters of the function module like described as follows:
    1. rspcprocesslog-log_id -> i_logid
    2. rspcprocesslog-type -> i_type
    3. rspcprocesslog-variante -> i_variant
    4. rspcprocesslog-instance -> i_instance
    5. enter 'G' for parameter i_state (sets the status to green).
    Now press F8 to run the fm.
    The above steps will help you continue with the rest of the process chain (thus avoiding manual runs) but the failed step might still remain red. Hope this helps.

  • Attribute change run problem - infoobject is not listed in the list

    Hi folks,
    When I load master data for 0customer, the infoobject 0customer doesnt come in the infoobject list for attribute change run. Also, when I try to activate master data manually it says 'Master Data already active'. and the reality is M version of Data is not active.
    Can you guide me.

    Try running the program RSDMD_CHECKPRG_ALL for this infoobject. You can select all the options when running this program.
    Try running this program multiple times, coz my experience showed that initial run may not always fix this issue.
    Good luck!

  • Hi i have 50 infoobjects as part of my aggregates and in that 10 infoobjects have received changes in masterdata.so in my process chain the Attribute change run in running for a long time.can i kill the job and repeat the same.

    Hi i have 50 infoobjects as part of my aggregates and in that 10 infoobjects have received changes in masterdata.so in my process chain the Attribute change run in running for a long time.can i kill the job and repeat the same.

    Hi,
    I believe this would be your Prod system, so don't just cancel it but look at the job log. If it is still processing then don't kill it and wait for the change run to complete but if you can see that nothing is happening and it is stuck for a long time then you can go ahead and cancel it.
    But please be sure, as these kind of jobs can create problems if you cancel them in the middle of a job.
    Regards,
    Arminder Singh

  • Getting no attributes changes after change run monitor program is executed

    Hi ,
    We have a z-program where we are calling function module RSDDS_CHANGE_MONITOR . The structure of this function module is changes after upgrade from  BI 3.5 to 7.0. Accordingly i have adjusted the z-program . But the result is No Attribute Change Run Found .
    The function module called  is as follows
    CALL FUNCTION 'RSDDS_CHANGERUN_MONITOR'
    EXPORTING
      I_WITH_DETAILS           = RS_C_TRUE
      I_T_CHABASNM             =
      I_T_HIEID                =
       IMPORTING
         E_TS_STATE_CR            = l_cr_state
         E_TS_CHANM_IN_AGGR       = l_t_chanm
         E_TS_HIER_CR             = l_t_hieid
       E_TS_CHABASNM_CR         =
         E_T_AGGREGATE_CR         = l_t_aggrstate
       E_TS_TREXAGGR_CR         =
         E_TSX_MSG_CR             = l_t_msg
       EXCEPTIONS
         ERROR                    = 1
         OTHERS                   = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    The l_cr_state has the details of the status in BI 7.0
    But after upgrade , its empty.
    Pls help on the issue.
    Regards,
    Sarang

    go through this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/64/32a5682e6a4e0cbb3f8a33970d11a8/frameset.htm

  • ABAP program to add in the process chain before the attribute change run

    Hi
    I need a ABAP program to add in the process chain before the attribute change run(process) to avoid the locks, can any one send me the program
    Regards,
    Satish

    I am not sure of any standard program .... but you can write your own... should be a small one..
    you can check if the table RSDMDENQ has entry for your InfoObject... if yes, then its locked.. if not.. its not locked

  • Problem in Activating Hierarchy Attribute change run through process chain.

    Hi All,
    I have the problem in Hierarchy change run processw running through process chain..and also process chain completes successfully without any error..
    Even hierarchy change run  completes successfully the hierarchy objects are not activating,
    so daily when i have to activate hierarchy objects manually..
    and what i did was in one attributechange run process i have included 10 hierarchy object is it correct or else i have to separatly create 10 attribute change hierachy proceess in the process chain.. pls through some lights on this issue
    With regards,
    Hari

    Hi venkat,
    Yes.. i already include the save hierarchies process in process chain...
    my main problem is hierarchy infobject are not activating  using process chain and also even process chain is not giving error message.. and in which log table the hierarchy objects are maintained (such as run time, date , status etc..).
    IS there is any other settings to be made in process chain..
    with regards,
    hari

  • Need help configuring Attribute Change in WLS 6.1

    Hi there,
    I did all it said in the documentation, lacking any sight of an SNMP
    trap. I want to receive a SNMP trap if the
    InvalidLoginAttemptsTotalCount changes (MBean: ServerSecurityRuntime).
    I use
    Attribute MBean Type: ServerSecurityRuntime
    Attribute MBean Name:
    petstore:Location=petstoreServer,Name=petstoreServer,Type=ServerSecurityRuntime
    Attribute Name: InvalidLoginAttemptsTotalCount
    I enabled SNMP, configure my TrapHost and started my trapdaemon. But I
    don't get any trap even though I increased the counter by doing some
    logins with the wrong password. Parallel to my attribute change I also
    configured a counter monitor on the same attribute, with the same
    disappointing result =:-(
    Can anyone help ?
    Greetings,
    Alex

    You need to set a target for the pool. Without target
    pool service won't start. Also you need to provide
    initial and maximum size for the pool.
    Regards,
    Slava Imeshev
    "Nadeem" <[email protected]> wrote in message
    news:3d6d9268$[email protected]..
    >
    Hi Slava, thanks for the reply. Here is the connection pool definition asextracted
    from config.xml. Do you see any errors in this which would cause theexception
    mentioned below?
    -Nadeem
    ************* Connection Pool element in config.xml ********
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    Name="MyJDBC Connection Pool"
    Properties="user=system;password=manager" TestTableName="cabin"URL="192.168.0.11:1521:tacit"/>
    "Slava Imeshev" <[email protected]> wrote:
    Hi Nadeem,
    Could you show us the connection pool definition?
    It can be extracted from config.xml
    Regards,
    Slava Imeshev
    "Nadeem" <[email protected]> wrote in message
    news:[email protected]..
    Hi,
    I need to create a connection pool in WLS 7. Here are the specificsof my
    environment:
    1. RDBMS: Oracle 8i
    2. Driver I want to use: Oracle thin 8.17 (provided with WLS 7)
    3. IP address of machine on which database resides: 192.168.0.5
    4. Port number: 1521
    5. Name of database: MyDB
    6. user: scott
    7. password: tiger
    Given the above,I do not know exactly what to fill out in the
    following
    fields
    that appear in the Admin Console's connection pool creation form:
    1. Name of connection pool (OK, this one I know!)
    2. URL string (exactly what should it be, given above info?)
    3. Driver Classname (I want to use Oracle thin 8.17, so what shouldI fill
    here?)
    4. Properties (exactly what should I fill here, given above info?)
    5. ACL Name (completely stumped here! Documentation says ACLs havebeen
    replaced
    by policies in WLS 7 - so what to fill here?)
    Could someone please help me correctly fill out these fields usingthe
    information
    I provided in the first paragraph.
    BTW, I'm logged into WLS as Administrator.
    Much obliged,
    Nadeem

  • Issue: attributes change run triggers the rebuilt of 0IC_C03 aggregates

    Hello Guru,
    I am facing to a problem that I don't understand.
    Here is below the detail of the messages of a '3-infoobjects attributes change run' step of a Master Data process chain.
    22:06:14     Job started
    22:06:14     Step 001 started (program RSPROCESS, variant &0000000231235, user ID RFC_BW)
    22:06:16     Starting process type ATTRIBCHAN with 3 objects...
    22:06:16     Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BICHNG_D8FC4Q04UD7NGLDMZ0QUBLX4K with ID 22061600
    22:06:16     Editing of aggregate 100139; background job BICHNG_D8FC4Q04UD7NGLDMZ0QUBLX4K; start time 22:06:16/07.07.2010
    22:06:18     Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BICHNG_D8FC4Q04UD7NGLDMZ0QUBLX4K with ID 22061601
    22:06:18     Editing of aggregate 100143; background job BICHNG_D8FC4Q04UD7NGLDMZ0QUBLX4K; start time 22:06:18/07.07.2010
    23:02:29     Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BICHNG_D8FC4Q04UD7NGLDMZ0QUBLX4K with ID 23022900
    23:02:29     Editing of aggregate 100140; background job BICHNG_D8FC4Q04UD7NGLDMZ0QUBLX4K; start time 23:02:29/07.07.2010
    23:52:38     Starting process type MDHIERACT with 2 objects...
    23:52:39     Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BIACTI_D8FCR9Y1NWOP2T4F76FYE0HDG with ID 23523900
    23:52:39     Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BIACTI_D8FCR9Y1NWOP2T4F76FYE0HDG with ID 23523901
    23:53:10     Aggregate 100139: Repair indexes
    23:57:14     Aggregate 100140: Repair indexes
    00:17:23     Aggregate 100143: Repair indexes
    00:50:09     3 aggregates are condensed
    00:50:09     Starting process type CONDAGGR with 3 objects...
    00:50:10     Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BICOND_D8FD3GTNF0KF92R34346SW6PG with ID 00501000
    00:50:10     Editing of aggregate 100143; background job BICOND_D8FD3GTNF0KF92R34346SW6PG; start time 00:50:10/08.07.2010
    00:50:10     Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BICOND_D8FD3GTNF0KF92R34346SW6PG with ID 00501001
    00:50:10     Editing of aggregate 100140; background job BICOND_D8FD3GTNF0KF92R34346SW6PG; start time 00:50:10/08.07.2010
    00:50:16     Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BICOND_D8FD3GTNF0KF92R34346SW6PG with ID 00501600
    00:50:16     Editing of aggregate 100139; background job BICOND_D8FD3GTNF0KF92R34346SW6PG; start time 00:50:16/08.07.2010
    00:50:22     Hierarchy/attribute change successfully carried out
    00:50:23     Event RSPROCESS with parameter D59BE8XWZMHY0IFP2VLEFP671 successfully triggered
    00:50:23     Job finished
    As you can observe, the step takes almost 3 hours !!!!!!! After anlyses BICHNG_* concerns
    22:06:16 Job started
    22:06:16 Step 001 started (program RSBATCH_EXECUTE_PROZESS, variant &0000000891873, user ID RFC_BW)
    22:06:18 Aggregate 100139( 0IC_C03) is being adapted / rebuilt
    22:06:18 Statistic UID of the aggregate process: 'D8FC4Q9KSAMRDWQ1RDPPKMF3O' (RSDDSTATAGGR)
    22:06:27 Aggregate 100139: Read (1) from table /BI0/E0ICC03_ (max 500000 records)22:06:27 SQL: 07.07.2010 22:06:27 RFC_BW
    I don't understand what is the link between the '3-infoobjects attributes change run' (BBATCH, 0MAT_SALES, 0MAT_PLANT) and the rebuilt of 3 0IC_C03 (Material Stocks/Movements) aggregates (why does the 'attribute chan run' trigger the rebuit of aggregates???).
    The rebuilt of the 3 aggregates takes 1 416, 3 366, 3 009 secondes...
    Does anyone understand my problematic? If not I can give you more details.
    Thanks in advance for your help.
    Samuel

    1/ Exactly Fred
    Here is the definitions of the aggregate:
    100139:
    0PLANT
    0STOR_LOC
    0MAT_PLANT__0VAL_CLASS
    0STOCKCAT
    0STOCKTYPE
    BMODIFIC
    BMVTSTOCK
    0MATL_TYPE
    0CALxxx
    2/ For my information in the aggregate 100140 , does the presence of BBATCH (one of the 3 IO) trigger the rebuilt or is it only 0MAT_PLANT__0VAL_CLASS ?
    100140:
    0PLANT
    0STOR_LOC
    0MATERIAL
    0MAT_PLANT__0VAL_CLASS
    BBATCH
    0STOCKCAT
    0STOCKTYPE
    BMODIFIC
    BMVTSTOCK
    0MATL_TYPE
    0CALxxx
    3/ In the same process chain, I have another Attributes Change Run: 0MATERIAL. Several active aggregates using 0MATERIAL__0MATL_TYPE are built on a CO-PA cube.
    Why did the '0MATERIAL Attributes Change Run' rebuild no aggregate? (see below)
    22:06:04     Job started
    22:06:04     Step 001 started (program RSPROCESS, variant &0000000231238, user ID RFC_BW)
    22:06:06     Activation of master data for 0MATERIAL
    22:06:07     154 Data records deleted
    22:06:11     154 Data records deleted
    22:06:12     154 Data records updated
    22:06:13     154 Data records updated
    22:06:13     0 aggregates are condensed
    22:06:14     Hierarchy/attribute change successfully carried out
    22:06:14     Event RSPROCESS with parameter D59BEEE069HKRCRU0ZPYFUPB1 successfully triggered
    22:06:14     Job finished
    Samuel

  • LOB Storage in Designer 9i

    Hi,
    In the help for Designer 9i I found a note
    explaining the different parameters which can be set in a LOB storage clause.
    Does anybody know where these parameters can be set for a given table implementation?
    Regards Bernd

    Now, I have found that "the repository reports" tool has predefined documentation reports. When I request a document, the operation never ends. When I kill the tool a word document appears with the information. I don't know if it is a problem of the current design (not complete, incorrect in some way) or if it is a problem of my pc (RAM, Virtual Memory). I can almost assure that it is not the second case but I don't know how to avoid the problem of this hanging of the tool.

Maybe you are looking for

  • 20" iMac - 1/2 display goes b&w?

    2.16 Intel Core Duo 20" iMac love it, for the most. first issue I've ever had with the display. we're using it as a home theater using the mini dv out, connecting to an S-cable to the input of our plasma tv. so when I say 1/2 the screen... my proper

  • HT2476 I recently had the hard drive replaced on my Macbook Pro; now the app store icon is missing from my dock

    When my hard drive was replaced by Apple, I had to re-install iTunes myself. Then I noticed that there was a question mark on my dock where the App Store Icon was supposed to be. I did a software update, and now the question mark is gone. How do I ge

  • Mandatory fields passing to the structure POCOND in BAPI_PO_CREATE1

    Hi, Please help me that what are the mandatory fields passing to the structure <b>POCOND</b> in <b>BAPI_PO_CREATE1</b>. I am using BAPI to create the PO based on certain conditions. But after creating the PO the condition values are not updating prop

  • 7k vPC best practice with multiple line cards?

    I have a pair of 7k's that have a single line card with a 2 port vPC linked to a pair of 5k's, another 2 port vPC linked to the layer 3 VDC and a 4 port vPC used for peer link.  I recently added an additional line card to the 7k's and want to add red

  • Access form the Application Server

    Hi, I have a Invoice in the directory abc/test on the application sever but when the third party is trying to access the same thru FTP it says that Ur not authorised even though he is able to see the file. Could any body tell me what might be the rea