Clear operation takes long time and gets interrupted in ThreadGate.doWait

Hi,
We are running Coherence 3.5.3 cluster with 16 storage enabled nodes and 24 storage disabled nodes. We have about hundred of partitioned caches with NearCaches (invalidation strategy = PRESENT, size limit for different caches 60-200K) and backup count = 1. For each cache we have a notion of cache A and cache B. Every day either A or B is active and is used by business logic while the other one is inactive, not used and empty. Daily we load fresh data to inactive caches, mark them as active (switch business logic to work with fresh data from those caches), and clear all yesterday's data in those caches which are not used today.
So at the end of data load we execute NamedCache.clear() operation for each inactive cache from storage disabled node. From time to time, 1-2 times a week, the clear operation fails on one of 2 our biggest caches (one has 1.2M entries and another one has 350K entries). We did some investigations and found that NamedCache.clear operation fires many events within Coherence cluster to clear NearCaches so that operation is quite expensive. In some other simular posts there were suggestions to not use NamedCache.clear, but rather use NamedCache.destroy, however that doesn't work for us in current timelines. So we implemented simple retry logic that retries NamedCache.clear() operation up to 4 times with increasing delay between the attempts (1min, 2 min, 4 min).
However that didn't help. 3 out of those attempts failed with the same error on one storage enabled node and 1 out of those 4 attempts failed on another storage enabled node. In all cases a Coherence worker thread that is executing ClearRequest on storage enabled node got interrupted by Guardian after it reached its timeout while it was waiting on lock object at ThreadGate.doWait. Please see below:
Log from the node that calls NamedCache.clear()
Portable(com.tangosol.util.WrapperException): (Wrapped: Failed request execution for ProductDistributedCache service on Member(Id=26, Timestamp=2012-09-04 13:37:43.922, Address=32.83.113.116:10000, MachineId=3149, Location=machine:mac305,process:2
7091,member:mac305.instance1, Role=storage) (Wrapped: ThreadGate{State=GATE_CLOSING, ActiveCount=3, CloseCount=0, ClosingT
hread= Thread[ProductDistributedCacheWorker:1,5,ProductDistributedCache]}) null) null
Caused by:
Portable(java.lang.InterruptedException) ( << comment: this came form storage enabled node >> )
at java.lang.Object.wait(Native Method)
at com.tangosol.util.ThreadGate.doWait(ThreadGate.java:489)
at com.tangosol.util.ThreadGate.close(ThreadGate.java:239)
at com.tangosol.util.SegmentedConcurrentMap.lock(SegmentedConcurrentMap.java:180)
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onClearRequest(DistributedCache.CDB:27)
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ClearRequest.run(DistributedCache.CDB:1)
at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:1)
at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
at java.lang.Thread.run(Thread.java:619)
Log from the that storage enabled node which threw an exception
Sat Sep 08 04:38:37 EDT 2012|**ERROR**| com.tangosol.coherence.component.util.logOutput.Log4j | 2012-09-08 04:38:37.720/31330
1.617 Oracle Coherence EE 3.5.3/465 <Error> (thread=DistributedCache:ProductDistributedCache, member=26): Attempting recovery
(due to soft timeout) of Guard{Daemon=ProductDistributedCacheWorker:1} |Client Details{sdpGrid:,ClientName:  ClientInstanceN
ame: ,ClientThreadName:  }| Logger@9259509 3.5.3/465
Sat Sep 08 04:38:37 EDT 2012|**WARN**| com.tangosol.coherence.component.util.logOutput.Log4j | 2012-09-08 04:38:37.720/313301
.617 Oracle Coherence EE 3.5.3/465 <Warning> (thread=Recovery Thread, member=26): A worker thread has been executing task: Message "ClearRequest"
FromMember=Member(Id=38, Timestamp=2012-09-07 10:12:27.402, Address=32.83.113.120:10000, MachineId=40810, Location=machine:
mac313,process:22837,member:mac313.instance1, Role=maintenance)
FromMessageId=5278229
Internal=false
MessagePartCount=1
PendingCount=0
MessageType=1
ToPollId=0
Poll=null
Packets
[000]=Directed{PacketType=0x0DDF00D5, ToId=26, FromId=38, Direction=Incoming, ReceivedMillis=04:36:49.718, ToMemberSet=nu
ll, ServiceId=6, MessageType=1, FromMessageId=5278229, ToMessageId=337177, MessagePartCount=1, MessagePartIndex=0, NackInProg
ress=false, ResendScheduled=none, Timeout=none, PendingResendSkips=0, DeliveryState=unsent, Body=0x000D551F0085B8DF9FAECE8001
0101010204084080C001C1F80000000000000010000000000000000000000000000000000000000000000000, Body.length=57}
Service=DistributedCache{Name=ProductDistributedCache, State=(SERVICE_STARTED), LocalStorage=enabled, PartitionCount=257, B
ackupCount=1, AssignedPartitions=16, BackupPartitions=16}
ToMemberSet=MemberSet(Size=1, BitSetCount=2
Member(Id=26, Timestamp=2012-09-04 13:37:43.922, Address=32.83.113.116:10000, MachineId=3149, Location=machine:mac305,process:27091,member:mac305.instance1, Role=storage)
NotifySent=false
} for 108002ms and appears to be stuck; attempting to interrupt: ProductDistributedCacheWorker:1 |Client Details{sdpGrid:,C
lientName: ClientInstanceName: ,ClientThreadName: }| Logger@9259509 3.5.3/465
I am looking for your help. Please let me know if you see what is the reason for the issue and how to address it.
Thank you

Today we had that issue again and I have gathered some more information.
Everything was the same as I described in the previous posts in this thread: first attempt to clear a cache failed and next 3 retries also failed. All 4 times 2 storage enabled nodes had that "... A worker thread has been executing task: Message "ClearRequest" ..." error message and got interrupted by Guardian.
However after that I had some time to do further experiments. Our App has cache management UI that allows to clear any cache. So I started repeatedly taking thread dumps on those 2 storage enabled nodes which failed to clear the cache and executed cache clear operation form that UI. One of storage enabled nodes successfully cleared its part, but the other still failed. It failed with completely same error.
So, I have a thread dump which I took while cache clear operation was in progress. It shows that a thread which is processing that ClearRequest is stuck waiting in ThreadGate.close method:
at java.lang.Object.wait(Native Method)
at com.tangosol.util.ThreadGate.doWait(ThreadGate.java:489)
at com.tangosol.util.ThreadGate.close(ThreadGate.java:239)
at com.tangosol.util.SegmentedConcurrentMap.lock(SegmentedConcurrentMap.java:180)
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onClearRequest(DistributedCache.CDB:27)
at
All subsequents attempts to clear cache from cache management UI failed until we restarted that storage enabled node.
It looks like some thread left ThreadGate in a locked state, and any further attempts to apply a lock as part of ClearRequest message fail. May be it is known issue of Coherence 3.5.3?
Thanks

Similar Messages

  • What could be the reason for Crawl process to take long time or get in to a hung state.

    Hi All,
    What could be the reason for Crawl process to take long time or get in to a hung state? Is it something also related to the DB Server resources crunch? Does this lead to Index file corruption?
    What should be the process to be followed when index file is corrupted? How do we come to know about that?
    Thanks in Advance.

    "The crawl time depends on what you are crawling -- the number of items, the size of the items, the location of the items. If you have a lot of content that needs to be crawled, it will take much time".
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f4cad578-f3bc-4822-b660-47ad27ce094a/sharepoint-2007-crawl-taking-long-time-to-complete?forum=sharepointgeneralprevious
    "The only clean and recommended way to recover from an index corruption is to completely rebuild the index on all the servers in the farm."
    http://blogs.technet.com/b/victorbutuza/archive/2008/11/11/event-id-4138-an-index-corruption-was-detected-in-component-shadowmerge-in-catalog-portal-content.aspx
    Whenever search index file got corrupted it will got the details to Event logs
    http://technet.microsoft.com/en-us/library/ff468695%28v=office.14%29.aspx
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Problem Export to Excel it takes long time and Takes more space.

    Hello All,
    when we export to Excel in portal(reports), it takes long time and it takes more space.
    how to overcome this problem please any one knows provide the proper solution for this issues
    Regards,
    Ch.

    Hi Chetans,
    I have had the same problem, and I had to create a OSS message to SAP in order to solve this issue, until now I don't have an answer. They made me to change a lot of configuration in Java and BW without luck. To tell you more, when we try to export to excel the java instance restarts aumotatically.
    But we have this problem, when we try to export a huge quantity of data, so I found a note which says the limitation of exporting to excel. Take a special attention to the Performance section.
    Note 1178857
    [https://service.sap.com/sap/support/notes/1178857|https://service.sap.com/sap/support/notes/1178857]
    I recomend you that you create a message to SAP. If you find a solution, please let me know.
    Regards, Federico

  • HT1351 for syncing it takes long time and not completed what to do???

    for syncing it takes long time and not completed what to do???

    Debbie:
    deborahfromwindsor wrote:
    he advises restarting by inserting the OSX disc and pressing down the C button to reboot from there then selecting disk utility, hard disk and repair.... Does he mean me to hold down the C key on the alpha keyboard or the ctrl key?
    Should I just ask for my money back??? If it is a simple repair do I just literally push the disc in, push the power button and hold down the C button?
    That's where I would begin, too, with
    Repair Disk
    Insert Installer disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu (Panther and earlier) or Utilities menu (Tiger) and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.TStatus of HDD at the bottom of right panel, and report if it saysanything but Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    If DU reports errors it cannot repair you will need touse autility like TechTool Pro,Drive Geniusor DiskWarrior
    First we need to determine if the issue you are experiencing with the computer is software or hardware based. Once we have gotten things sorted out there should be time enough to make you decision about keeping or returning it.
    cornelius

  • MDX report rendering takes long time and showing Conflict Message

    Hi All,
    This is my MDX Query
    with member
    [Measures].[Rent] as
    IIF(IsEmpty([Measures].[Budget]),
    NULL, [Measures].[Rent])
    select {[Measures].[Rent]}
    on columns,
                         [Property].[Address].[All].children *
             DESCENDANTS([Account].[Account Hierarchy].[Account Group].[Expenditures],
                         [Account].[Account Tree].[Account]) *
                         [Property].[Property].[All].children
    on rows
    from
       [Master]
    When i comment [Property] Dimension member , i am able to get the result, but i need Property Dimension in MDX.
    Can anyone give some idea ?
    Thanks in advance

    Hi Jarugulalaks,
    According to your description, it take long time to render the report when using [Property] dimension, right?
    In this case, the issue can be caused by that there are too many members under this dimension. In your query, you used CrossJoin function to join multiple dimensions which might cause the performance issue. If you cross-join medium-sized or large-sized sets
    (e.g., sets that contain more than 100 items each), you can end up with a result set that contains many thousands of items—enough to seriously impair performance. You can use the NonEmptyCrossjoin function instead of Corssjoin function. For the detail
    information, please see:
    http://sqlmag.com/data-access/cross-join-performance
    http://msdn.microsoft.com/en-us/library/ms144797.aspx
    Besides, the total time to generate a reporting server report can be divided into 3 elements: Time to retrieve the data (TimeDataRetrieval); Time to process the report (TimeProcessing); Time to render the report (TimeRendering). For the detail information,
    please refer to the link below to see Charlie's reply.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/a0962b54-6fc2-4111-b8f1-a3722a65fa05/how-to-improve-performance-of-report?forum=sqlanalysisservices#a0962b54-6fc2-4111-b8f1-a3722a65fa05
    Regards,
    Charlie Liao
    TechNet Community Support

  • Validate map in FDM takes long time and finally expires

    Hi,
    I have an issue with FDM Mapping.
    When i click the "validate" option in workflow, the FDM processing takes long time (more than an hour) and finally expires.
    But when i open a new web interface, i am seeing a gold fish on validate - which means validate mapping has been done.
    As we are in production environmeny, Can someone quickly clarify me, why this happen.
    Thanks,
    Siva

    Hello Kelly,
    Something you said concerns me: +"Because we automated data loads for the large file, this issue is extremely low on the priority list."+
    In this type of scenario we notice customers/partners implementing FDM as an 'ETL' utility. FDM is not an ETL utility and should not be treated/used as such. In the event that you are doing this, Support has no control of the application as it is a mis-use of what FDM is for.
    Files that are being pushed into FDM should always be broken down into the smallest components(locations) and used as a 'front end,' user interface.... not a server-side/IT application. If you meet this criteria of FDM, then there is not much Support can do.
    If you do not think you are misusing FDM, I would highly suggest you open/create a Support SR if you do not use FDM in that manor. Consultants/Partners are functional/design based.... and not necessarily trained as Support Engineers. Therefore they might not have the skills required to make such determinations.
    Thank you,
    Oracle Global Customer Support

  • Query Saving takes long time and giving error

    Hi Gurus,
    I am creating one query that have lot of calculations (CKF & RKF).
    When I am trying to save this query it is taking long time and it is giving error like RFC_ERROR_SYSTEM_FAILURE, Query Designer must be restarted, further work not possible.
    Please give me the solution for this.
    Thanks,
    RChowdary

    Hi Chowdary,
    Check the following note: 316470.
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=316470
    The note details are:
    Symptom
    There are no authorizations to change roles. Consequently, the system displays no roles when you save workbooks in the BEx Analyzer. In the BEx browser, you cannot move or change workbooks, documents, folders and so on.
    Other terms
    BW 2.0B, 2.0A, 20A, 20B, frontend, error 172, Business Explorer,
    RFC_ERROR_SYSTEM_FAILURE, NOT_AUTHORIZED, S_USER_TCD, RAISE_EXCEPTION,
    LPRGN_STRUCTUREU04, SAPLPRGN_STRUCTURE, PRGN_STRU_SAVE_NODES
    Reason and Prerequisites
    The authorizations below are not assigned to the user.
    Solution
    Assign authorization for roles
    To assign authorizations for a role, execute the following steps:
    1. Start Transaction Role maintenance (PFCG)
    2. Select a role
    3. Choose the "Change" switch
    4. Choose tab title "Authorizations"
    5. Choose the "Change authorization data" switch
    6. Choose "+ Manually" switch
    7. Enter "S_USER_AGR" as "Authorization object"
    8. Expand "Basis: Administration"/"Authorization: Role check""
    9. From "Activity" select "Create or generate" and others like "Display" or "Change"
    10. Under "Role Name", enter all roles that are supposed to be shown or changed. Enter "*" for all roles.
    11. You can re-enter authorization object "S_USER_AGR" for other activities.
    Assign authorization for transactions
    If a user is granted the authorization for changing a role, he/she should also be granted the authorization for all transactions contained in the role. Add these transaction codes to authorization object S_USER_TCD.
    1. Start the role maintenance transaction (PFCG).
    2. Select a role.
    3. Click on "Change".
    4. Choose the "Authorizations" tab.
    5. Click on "Change authorization data".
    6. Click on "+ manually".
    7. Specify "S_USER_TCD" as "Authorization object".
    8. Expand "Basis - Administration"/"Authorizations: Transactions in Roles".
    9. Under "Transaction", choose at least "RRMX" (for BW reports), "SAP_BW_TEMPLATE" (for BW Web Templates), "SAP_BW_QUERY" (for BW Queries and/or "SAP_BW_CRYSTAL" (for Crystal reports) or "*". Values with "SAP_BW_..." are not transactions, they are special node types (see transaction code NODE_TYPE_DEFINITION).
    Using the SAP System Trace (Transaction ST01), you can identify the transaction that causes NOT_AUTHORIZED.
    Prevent user assignment
    Having the authorization for changing roles, the user is not only able to change the menu but also to assign users. If you want to prevent the latter, the user must loose the authorization for Transactions User Maintenance (SU01) and Role maintenance (PFCG).
    Z1>Note
    Refer to Note 197601, which provides information on the different display of BEx Browser, BEx Analyzer and Easy Access menu.
    Please refer to Note 373979 about authorizations to save workbooks.
    Check in the transaction ST22 for more details on the Query designer failure or query log file.
    With Regards,
    Ravi Kanth.
    Edited by: Ravi kanth on Apr 9, 2009 6:02 PM

  • Installing patch 5217019 takes long time and does not end

    Hi,
    I try to install patch 5217109 to my TEST instance.While installing patch the 8 workers are selected default.7 of workers are in statu of completed but 1 worker is waiting for long times and does not end.
    What can be my problem?

    Start time for file is: Mon Aug 10 2009 11:45:01
    sqlplus -s APPS/***** @/oracle/TEST/testappl/ad/11.5.0/admin/sql/adpcpcmp.pls APPLSYS &pw_fnd APPS &pw_apps &systempwd 8 1 NONE FALSE
    Arguments are:
    AOL_schema = APPLSYS, AOL_password = *****,
    Schema_to_compile = APPS, Schema_to_compile_pw = *****,
    SYSTEM_password = *****, Total_workers = 8, Logical_worker_num = 1
    Object_type_to_not_compile = NONE
    Use_stored_dependencies = FALSE
    Connected.
    Checking for previously-invalid objects which are now valid...
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.03
    Commit complete.
    Elapsed: 00:00:00.00
    Deleting any errors from previous run of this logical worker
    0 rows deleted.
    Elapsed: 00:00:00.00
    Commit complete.
    Elapsed: 00:00:00.00
    Compiling invalid objects...

  • 10.4.8 Client takes long time to get to login window when bound to OD.

    I am working on a system in a school. We have a dual processor g5 xserve with 4 gb of ram, the raid card, and 3 500 gb drives.
    Fresh install of 10.4.8 with all the updates.
    Raid 5 split in 2 volumes, one for server and one for data.
    AFP service running.
    Local dns running.
    Promoted to open directory master.
    This is the following test scenario i have.
    there is a user called studenttest and he belongs to a group called cccarstarmembers and is in a workgroup called student.
    the studenttest users home folder exists in a sharepoint called students that is set up on the data partition.
    there is a sharepoint called cccarstar that holds data for some educational software we use. The owner is administrator with rw access, the group is cccarstarmembers with rw access and others have no access.
    The student workgroup only has a few changes like dock location just for testing purposes to verify that the work group is working properly.
    When i bind a newly built 10.4.8 client with all the updates to the od server it intermittantly takes a long time for the client to get to the login window when it is powered up. Sometimes it will get to the login window in 45 seconds and other times it will take 5 minutes. This is not consistant. if you unbind the client then the computer will behave properly consistantly.
    I have tried binding the client to the od master using the fully qualified domain name and the ip address with the same results.
    the search path on the server is "dc=osx1,dc=erm,dc=sd,dc=bc,dc=ca" and on the client it auto populates at cn=config,dc=osx1,dc=erm,dc=sd,dc=bc,dc=ca".
    I have changed the search path on the client to match the search path on the server with no success as this is what used to work for us on panther setups.
    But this school has a panther client i am working on at the same time with the same applications installed and system preference settings and when i bind it to the same od master with the same search path that is displayed on the server it works fine. all users work, all groups and work groups work.
    Dns appears to be working. lookup provides the correct forward and reverse lookup info on the server, if i use either the panther or tiger client and use lookup with the servers fully qualified domain name and ip address i get the correct answers back.
    I had this problem before where tiger gave me slow to login screen problems but panther wouldnt when bound, and apple told me that it was because i had afp guest access disabled on the server. Enabling it resolved the issue about 6 months ago at another site but this time when building the server i made sure it was on from the start even thoug it is off by default.
    Any suggestions, i am pulling my hair out and about 8 working hours from a deadline.

    I've seen this a lot.
    This Knowledge Base article refers to Active Directory but we've seen this fix login delays with OD-only environments too:
    http://docs.info.apple.com/article.html?artnum=303841
    Another one of the causes is when you have multiple network mounts and your AFP service has guest access disabled. The loginwindow is trying to authenticate to each share with the username given and it is failing when that user account is not authorised for that share.
    Another can be the LDAP timeout value(s). Try adjusting these in the LDAPv3 plug-in.
    Also make sure your network ports have portfast/faststart set on the Mac ports. Sometimes because of STP the port isn't initialised fast enough for the OS when it's ready to start LDAP'ing.
    Let me know if any of this helps.

  • Un-Registering takes long time and fails!!!

    I am trying to un register a schema that ia already registered in the XML DB. I am using JDeveloper to un register and it really takes a long time to do this. and eventually fails.
    what is going on? what is broken?
    XML DB is flaky and unreliable.
    right?

    First make sure that all connections that have used the XML Schema are disconnected. Schema deletion cannot start until all sessions that are using the schema have been closed as it needs to get an exclusive lock on the SGA entrires related to the XML Schema.
    If there are a large number of rows in the table(s) associated with the XML Schema truncate the table before dropping the XML Schema. If there are a large number of XDB repository resources assocaited with the table, truncate the table and then delete the resources with DBMS_XDB.DELETERESOURCE() mode 2 or 4 to ignore errors and avoid dangling ref issues.
    To monitor the progress of deleteSchema itself connect as sys and execute select count(*) from all_objects where owner = 'XXXX'. XXXX should be the name of the owner of the database schema that was the owner of the XML schema. See if the number of objects owned by that user is decreasing. If the number of object is decreasing have patience.

  • Table Import Takes long time and still running

    Hi All,
    MY DB Version: 10.2.o
    OS: Windows Server 2003
    I am trying to import on table which i have the export dump file which i take using expdp previously when i load that table on the same host
    by using below command:
    expdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log
    after that i zip that dump and move it to external usb and now i need that table i copy that table and unzip that that dump
    Command i am using to do the import is :
    impdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=impdpEMP_DEPT.log
    But the query of import is still runing even not showing any amount of rows to be imported.
    i already make the tablespace in which the table was previosuly before dropping
    but when i check the sapce of tablespace that is also not consuming
    one error i got preiviously while performing this task is:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Master table "CDR"."SYS_IMPORT_TABLE_03" successfully loaded/unloaded
    Starting "CDR"."SYS_IMPORT_TABLE_03":  cdr/********@tsiindia directory=TEST_DIR dumpfile=CAT_IN_DATA_042012.DMP tables=CAT_IN_DATA_042012 logfile=impdpCAT_IN_DATA_042012.log
    ORA-39065: unexpected master process exception in RECEIVE
    ORA-39078: unable to dequeue message for agent MCP from queue "KUPC$C_1_20120622102502"
    Job "CDR"."SYS_IMPORT_TABLE_03" stopped due to fatal error at 12:10
    i done some google on the same proble
    and i check streams_pool_size it will show zero and then i make it to 48M and after that
    SQL> show parameter streams_pool_size;
    NAME                                 TYPE        VALUE
    streams_pool_size                    big integer 48M
    But still it takes time
    Any help

    1) check the session :
    SQL> select username,sid,serial#,status,event,seconds_in_wait,wait_time,state,module from v$session where username='CDR'
      2  ;
    USERNAME                              SID    SERIAL# STATUS   EVENT                                                    SECONDS_IN_WAIT  WAIT_TIME STATE               MODULE
    CDR                                    73          1 ACTIVE   wait for unread message on broadcast channel                                   3          0 WAITING
    CDR                                    75          1 ACTIVE   wait for unread message on broadcast channel                                  10          0 WAITING
    CDR                                    77          1 ACTIVE   wait for unread message on broadcast channel                                  10          0 WAITING
    CDR                                    81        313 ACTIVE   wait for unread message on broadcast channel                                 530          0 WAITING             impdp.exe
    CDR                                    87         70 ACTIVE   enq: SS - contention                                                1581          0 WAITING             toad.exe
    CDR                                    90       1575 ACTIVE   wait for unread message on broadcast channel                                   3          0 WAITING
    CDR                                    92       1686 ACTIVE   enq: SS - contention                                                 619          0 WAITING
    CDR                                    99          5 ACTIVE   PX Deq Credit: send blkd                                               0          0 WAITING             TOAD 9.1.0.62
    CDR                                   103          3 ACTIVE   direct path read                                                       0          0 WAITING             TOAD 9.1.0.62
    CDR                                   105          6 ACTIVE   direct path read                                                       0          0 WAITING             TOAD 9.1.0.62
    CDR                                   107          6 ACTIVE   PX Deq Credit: send blkd                                               0          0 WAITING             TOAD 9.1.0.62
    USERNAME                              SID    SERIAL# STATUS   EVENT                                                    SECONDS_IN_WAIT  WAIT_TIME STATE               MODULE
    CDR                                   108         16 ACTIVE   PX Deq Credit: send blkd                                               1          0 WAITING             TOAD 9.1.0.62
    CDR                                   109         40 ACTIVE   PX Deq Credit: send blkd                                               1          0 WAITING             TOAD 9.1.0.62
    CDR                                   110          6 ACTIVE   enq: TX - row lock contention                                          1          0 WAITING             TOAD 9.1.0.62
    CDR                                   111         21 ACTIVE   direct path read                                                       0          0 WAITING             TOAD 9.1.0.62
    CDR                                   112         27 ACTIVE   PX Deq Credit: send blkd                                               1          0 WAITING             TOAD 9.1.0.62
    CDR                                   113          8 ACTIVE   log buffer space                                                       0          0 WAITING             TOAD 9.1.0.62
    CDR                                   117       4496 ACTIVE   db file scattered read                                                 0          0 WAITING             TOAD 9.1.0.62
    CDR                                   119          9 ACTIVE   PX Deq Credit: send blkd                                               0          0 WAITING             TOAD 9.1.0.62
    CDR                                   120         27 ACTIVE   PX Deq Credit: send blkd                                               0          0 WAITING             TOAD 9.1.0.62
    CDR                                   123          1 ACTIVE   sort segment request                                               22349          0 WAITING
    CDR                                   129         22 ACTIVE   PX Deq Credit: send blkd                                               0          0 WAITING             TOAD 9.1.0.62
    USERNAME                              SID    SERIAL# STATUS   EVENT                                                    SECONDS_IN_WAIT  WAIT_TIME STATE               MODULE
    CDR                                   131      14402 INACTIVE SQL*Net message from client                                         2580          0 WAITING             TOAD 9.1.0.62
    CDR                                   135         11 ACTIVE   log buffer space                                                       0          0 WAITING             TOAD 9.1.0.62
    CDR                                   136          6 ACTIVE   direct path read                                                       0          0 WAITING             TOAD 9.1.0.62
    CDR                                   138        234 ACTIVE   sort segment request                                               19859          0 WAITING
    CDR                                   162        782 INACTIVE SQL*Net message from client                                          550          0 WAITING             TOAD 9.1.0.62
    2) check the impprt status:
    SQL> select owner_name, job_name, operation, job_mode, state FROM dba_datapump_jobs;
    OWNER_NAME                     JOB_NAME                       OPERATION                      JOB_MODE                       STATE
    CDR                            SYS_IMPORT_TABLE_01            IMPORT                         TABLE                  EXECUTING
    3) in a new window
    C:\Documents and Settings\vikas>impdp cdr/cdr123_awcc@tsiindia dumpfile=CAT_IN_DATA_042012.dmp tables=CAT_IN_DATA_042012  logfile=impdpCAT_IN_DATA_042012.log directory=test_dir parallel=4
    Import: Release 10.1.0.2.0 - Production on Friday, 22 June, 2012 15:04
    Copyright (c) 2003, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Master table "CDR"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded
    Starting "CDR"."SYS_IMPORT_TABLE_01":  cdr/********@tsiindia dumpfile=CAT_IN_DATA_042012.dmp tables=CAT_IN_DATA_042012 logfile=impdpCAT_IN_DATA_042012.log directory=test_dir parallel=4

  • Cellular radio takes long time to get a signal.

    My cellular radio on my iPad 3rd generation is starting to Take quite a while recognizing a signal. It eventually recognizes the signal, but it takes too long. Is anyone else having this problem?

    I tried the hard reset, and it still took about 3 minutes to find a signal. My LTE signal never came back up. It's displaying a 3G signal now. Should I reset network settings or something?

  • Application Builder takes long time and Popup messages during Build

    Hi All,
    My application is slightly bigger with over 300 VI's. In between the build process I receive pop up messages asking GMath library  files etc.. are modifies would u like to save the files..? When clicked on OK button it starts saving these library files and when it saves almost half the number of files the application builder crashes and causes LabView to close. As the build process is taking more than 2 hours and end result is always an unsuccesful build due to the application builder crash I am loosing my time.
    Regards,
    Pavan
    Solved!
    Go to Solution.

    Hi,
    I recently upgraded from LV 7.1 to 2009, both the Professional versions. My program consists of several hundred vi's. Building an .exe in LV 7.1 was a snap and took maybe 30-50 seconds (not including an installer). Building the same thing in LV 2009 (build script converted to project) takes nearly 30 minutes, not including creating an installer... most of the time is spent 'processing' and then saving vi's, which LV 7 did not appear to do. I've tried the Ctrl+Shift+Run suggested by JB but this does not help. I've also applied the 2009f patch. It still takes a fair amount of memory, 0.5 GB, but my core 2 duo PC has 2 GB and there is plenty available RAM. Any suggestions/details on the differences and something I could do to cut down on the build time?
    thanks,
    Dan

  • Starting Itunes match at atv2 takes long time and doesn't stop?

    I startetd itunes match at atv2. It says that it will take only a few minutes depending on the size of the mediathek. But it's running now for 2 days. What can I do?

    Do you mean iTunes Match has been running for several days on the initial match of your library?  If so, depending on the size of your library this is not unusual.
    If atv2 refers to Apple TV 2 then something is very wrong since this will start within minutes.

  • Take long time to get data

    Hi,
    I have one ABAP code to load data to internal table, if the code is
    select * from xxxx into  itab where ....,
    then it works property. However I don't want to load whole table into internal table, I want to load the data based on another internal table, the code looks
    select * from xxx into itab for all entries in itab2 where ...
    I thought the code will execute faster than the previous one, however it is really slow, I got "sequential read" from SM50.
    Can anyone explain why?
    Thanks
    Victor

    Make sure that the internal table used in the FOR ALL ENTRIES is sorted by the field in which you are joining.
    if not itab2[] is initial.
    sort itab2 ascending by field1.
    select * from xxx into itab
         for all entries in itab2
                where field1 = itab2-field1
    endif.
    Regards,
    Rich Heilman
    Message was edited by: Rich Heilman

Maybe you are looking for

  • Excise duty  don't want calculate on Freight Charge while booking of Miro

    Dear Expert. While booking of Manufacturing Invoice in MIRO , Excise duty Tax will calculate on freight. The only VAT will calculate on unplanned delivery cost. Even I maintain Tax rate in FV11 T-Code with Key combination Plant/Vendor/Material. Thank

  • How to solve the error { java.lang.NumberFormatException: empty String }

    Sir, I am using the following code and get subjected error. {error}{ java.lang.NumberFormatException: empty String      at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1011)      at java.lang.Double.parseDouble(Double.java:540)

  • Motion Blur not working in AE CC

    Using AE CC on a MacBook Pro, adding motion blur to a fast-moving footage layer in a comp. Both the comp and layer motion blur toggle are on, but no blur is added. Force motion blur has the same non-result.

  • Typing happens automatically in input fields

    happens at start-up to input password and in safari

  • TRAINING NAD EVENT MGMT

    Hi experts, can anyone of you please tell me the table name in which the attendance hours of an employee who has attended the training is stored... is therer any infotype for training and event management????