Few SAP_COLLECTOR_FOR_PERFMONITOR jobs never end

Hi,
On our BI Production server, in job overview there are 5 of these jobs running for almost a day now and they are taking all job spaces so no other process cant be completed. Our BC guy is on vacation so there is no one I can actually ask what to do, so please advise. Thanks

Hi Mijodrag,
If you have access to view the jobs in SM37 select them by clicking on the tick boxes on the left of the screen as per my attachment.
Otherwise you will have to identify via SM66 on which server the job is running, then via SM51 go to that server then to SM50 select the relevant processes and "Cancel without core" as per below attachment.
Once this is done someone will have to investigate why these jobs are running so long usually these jobs are not long running there might be some other problems on your system as well see SM21/ST22 perhaps as well.
Kind Regards,
Johan

Similar Messages

  • EM Patch Job never end

    Hi,
    I was trying to patch my Oracle 10g R2 10.2.0.3 using the dbconsole. But the EM Job never end(more than 20hours run). The patch job stuck in "checkTarget" with the log file show "waiting for output" (the previous step "cachePatchFile" succeeded).
    Anyone know what could be the reason?
    Thanks

    I searched for a way to stop the job because it's still on the Preparation now.
    But i did not find the job in ALL_SCHEDULER_JOBS and with EM i can only stop it friendly, not forcefully.
    Does anyone have a hint?
    Thanks
    Daniel

  • Generate New Database job never ends

    Hi all,
    We are trying to generate a new template in our DEV environment, the job remains active but never ends. On every attempt , the process stops in a different table or process.
    The log file (level 5) simply stops in a certain point and nothing else happens. The dbeng9 processes consumes almost 90% CPU but the process siebsh does not appear between the top processes.
    We already tried reset all the servers, gateway, reassign the remote component group, recreating diccache.dat, but nothing worked.
    We use siebel loyalty 8.1.1.1 and oracle 11g 11.2 , on top of aix 5.3
    Meanwhile, the workaround was to generate new template in another siebel enterprise and copied the templates to the DEV environment and extracted the databases.
    Will be very thankful if anyone can help.
    Thanks in advance

    But the problem is that the process really stucked. The siebel.dbf , which should be created during the job , stop increasing the size around 30M while in the other environment, when the process finished , the file reached 80M.
    The log file also suddenly stopped to increase. It really seems that the process is waiting for something.
    We are not having resource problems like disk space , cpu or memory lacking.
    Guys, do you know what kind of consistency should be checked for GennewDB? If the repository table definitions have differences when compared with actual physical schema, suppose that we forget to apply some new table definitions, would it be the root cause? Do you know a way to compare the repository definitions against the physical schema? I think "apply all" is not an option..
    Thanks in advance

  • D10, boot problems, a never ending fan test!

    I hate this noisy fan test!!! My dog always panics, if it is in the room! But that's not the problem.
    If I switch on the external mains, the fan test starts and ends after some ten seconds.
    If I push the switch at the front of the maschine, the fan test starts and - sometimes - never ends. In this case, the maschine - obviously - will not boot. What to do? - Repeat the procedure. Sometimes I need 10 or more attempts to boot the maschine.
    Now I found (shortly before I decided to bring the maschine back to the dealer): The fan test succeeds nearly every time (and the maschine will boot), if I switch off all the external USB-devices (5 disks, WLAN-stick, memory stick, etc).
    My questions:
    what's going wrong with the fan test at my maschine?
    is it possible to skip this crazy fan test?
    Thanks for your help!
    Lenovo PC Think Station D10 6427-H6G, Windows XP

    regarding the fan test, this cannot be disabled.   thinkstations are designed for 24/7 uptime just like servers and the BIOS tests the fans at every boot/reboot.   since there isn't much reason to turn these systems off or put them asleep, the best workaround is to leave your D10 running 24/7 as it was designed to do.   mine only gets rebooted for windows updates, software updates, or video driver updates.   otherwise, it's up 24/7/365.
    regarding the fans getting stuck, update your BIOS.   the latest version can be found here.
    also, if you put your system to sleep, be sure to wake it with the power button and not your keyboard.   a few users have reported their fans getting stuck when waking with their keyboards.   i'm not aware of the issue happening when using the power button.
    ThinkStation C20
    ThinkPad X1C · X220 · X60T · s30 · 600

  • Http Request never ends

    Hi,
    Well I had a few minutes on my hand and decided to build a simple socket application that handles a browser request with a �hello�. Then I decided to complicate that a little and to actually send back what I receive. However the while loop that checked the input from the browser never ends (that is I never get a �1 from inputStream.read() method).
    Could someone please explain me why this happens? And how this could be solved? I mean how to detect that the request is over and it is time to respond. (In other words how can I base my response according to the request if I never know when the request is over!).
    Here is the code I used import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.net.ServerSocket;
    import java.net.Socket;
    public class Test7 {
    public static void main(String[] args) {
      try {
       ServerSocket serverSocket = new ServerSocket(9989);
       while(true){
        Socket socket = serverSocket.accept();
        new Thread(new SimpleHttpHandler(socket)).run();
      catch (Exception e) {
       e.printStackTrace();
    class SimpleHttpHandler implements Runnable{
    private Socket client;
    public SimpleHttpHandler(Socket client){
      this.client = client;
    public void run(){
      try{
       BufferedOutputStream outputStream = new BufferedOutputStream(
         this.client.getOutputStream()
       BufferedInputStream inputStream = new BufferedInputStream(
         this.client.getInputStream()
       int in = 0;
       while((in = inputStream.read()) != -1){
        System.out.print((char)in);
        outputStream.write(in);
       outputStream.close();
       outputStream.flush();
      catch(Exception e){
       e.printStackTrace();
    Regards,
    Sim085

    So you can't read RFC but can read forums? :)Can you imagine reading documentation about something by continuously minimizing and maximizing the browser window? (which I do when at work so to attract less attention) :)
    Well if you want simplest way then just send header,
    data and close connection that's enough.Thanks :) I understand that now :)
    @bsamperi & [email protected]
    The code I provided above was not correct. I fixed it and posted it again just in case someone else comes across this post. As already said this was not what I had in mind to do in the first place, but it was fun :) Anyways here is the working code! (Although naturally not good for anything)import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.OutputStreamWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    public class Test7 {
    public static void main(String[] args) {
      try {
       ServerSocket serverSocket = new ServerSocket(8871);
       while(true){
        System.out.println("Waiting for request");
        Socket socket = serverSocket.accept();
        new Thread(new SimpleHttpHandler(socket)).run();
      catch (Exception e) {
       e.printStackTrace();
    class SimpleHttpHandler implements Runnable{
    private final static String CLRF = "\r\n";
    private Socket client;
    private BufferedWriter writer;
    private BufferedReader reader;
    public SimpleHttpHandler(Socket client){
      this.client = client;
    public void run(){
      try{
       this.writer = new BufferedWriter(
         new OutputStreamWriter(
           this.client.getOutputStream()
       this.reader = new BufferedReader(
         new InputStreamReader(
           this.client.getInputStream()
       System.out.println("-- IN --\n" + this.read() + "\n");
       System.out.println("-- OUT --\n" + this.write("Thank You"));
       this.writer.close();
       this.reader.close();
       this.client.close();
       System.out.println("Completed response");
       System.out.println("--------------------\n");
      catch(Exception e){
       e.printStackTrace();
    private String read() throws IOException{
      String in = "";
      StringBuffer buffer = new StringBuffer();
      while(!(in = this.reader.readLine()).trim().equals("")){
       buffer.append(in + "\n");
      return buffer.toString();
    private String write(String out) throws IOException{
      StringBuffer buffer = new StringBuffer();   
      buffer.append("HTTP/1.0 200 OK" + CLRF);
      buffer.append("Content-Type: text/html" + CLRF);
      buffer.append(CLRF);
      buffer.append(out);
      buffer.append(CLRF);  
      writer.write(buffer.toString());
      return buffer.toString();
    }The output of this code is: Waiting for request
    -- IN --
    GET / HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
    application/vnd.ms-powerpoint, application/vnd.ms-excel,
    application/msword, application/x-shockwave-flash, */*
    Accept-Language: en-us
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2;
    .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Host: localhost:8871
    Connection: Keep-Alive
    -- OUT --
    HTTP/1.0 200 OK
    Content-Type: text/html
    Thank You
    Completed response
    Waiting for request
    -- IN --
    GET /favicon.ico HTTP/1.1
    Accept: */*
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2;
    .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Host: localhost:8871
    Connection: Keep-Alive
    -- OUT --
    HTTP/1.0 200 OK
    Content-Type: text/html
    Thank You
    Completed response
    Waiting for request
    ...Which shows that this application will handle any web request with a �Thank You� since I am not basing the response on the request. However that should not be hard once the request and response are handled ok.
    Thank to both of you for your help :)
    Regards,
    Sim085

  • Csimport that never ends

    Good morning,
    I am trying to import an ics calendar.
    This calendar has been export with csexport.
    The csexport takes a few seconds.
    But the csimport never ends (after several hours).
    There are 8000 events.
    A truss an the process show almost no nothing except:
    truss -p 16176
    brk(0x01B92320) = 0
    brk(0x01BA4320) = 0
    brk(0x01BB6320) = 0
    brk(0x01BC8320) = 0
    brk(0x01BDA320) = 0
    brk(0x01BEC320) = 0
    I have open call 70642348 because I am stuck.
    Would you know what I could do else to to import this ics file
    or to trace the problem?
    Thanks in advance for your help.

    Hi,
    I do not have other system, but I can provide you the ics file.
    You should immediatly see my problem.
    What I have find out also is that if I export with csexport rather than uwc,
    I do not have this problem although the files are very similar.It might be good to provide both .ics files on the Sun support call -- the calendar exported from uwc, and exported using csexport.
    Thanks.
    --Wei Yee                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Loop in Process Chain never ends?!

    Hello All!
    I'd created an ABAP program which calls the FM "RSPC_CHAIN_EXECUTE_REMOTE", to start a specific process chain. I'd created a job to run it.
    Then, I want the same process chain continue in loop. For this I'd created another ABAP program, which calls the FM BP_EVENT_RAISE.At the end of my process chain I'd created a variant calling this program. All process im my process chain works fine, but the job never stops. Is it normal, or could I do something to solve it?
    Thank you!!!
    Aline.

    Hi Aline,
       You have to put a logic when to raise event. or every time ABAP program runs and triggers the event ... so its becomes infinite...
    What is code in your ABAP program..? and logic...?
    <a href="http://sapbwneelam.blogspot.com/2007/09/how-to-start-process-chain-through.html">Sample coding... similar requirement...</a>
    Hope it Helps
    Srini

  • AdamSync from AD to LDS goes into a continuous never ending loop... can't figure this out.

    I THINK I've got this thing configured up to the point where it should be able to sync.  The XML config is set to just grab a single OU with roughly 12 accounts in it.
    Everything seems to connect OK, then it does a ton of "Processing Entry", even though there are only a few accounts in this OU.
    Then it begins to do "Adding target object..." and gets stuck in a never ending loop.
    Can someone point me in the right direction on how to troubleshoot this?
    This is what the log looks like:
    ==========================
    Adamsync.exe v1.0 (6)
    Establishing connection to target server localhost:6389.
    There is already an active sync session in progress. 
    Please allow the session to complete, or use -mai to seize the role.
    Saving Configuration File on CN=Test,DC=domain,DC=org
    Saved configuration file.
    ADAMSync is querying for a writeable replica of 10.10.10.10.
    Error: DCLocator call failed with error 1355. Attempting to bind directly to string.
    Establishing connection to source server 10.10.10.10:389.
    Using file .\dam9280.tmp as a store for deferred dn-references.
    Populating the schema cache
    Populating the well known objects cache
    Starting synchronization run from dc=domain,dc=org.
    Starting DirSync Search with object mode security.
    Processing Entry: Page 1, Frame 1, Entry 0, Count 0, USN 0
    Processing source entry <guid=94f6d930da2339439df75278a02accae>
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 1, Frame 1, Entry 1, Count 1, USN 0
    Processing source entry <guid=bf15bc4b684ece4f99010548e79decb0>
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 1, Frame 1, Entry 2, Count 1, USN 0
    Processing source entry <guid=fcea01637658134eab7ec74fe022d4fe>
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 3, Frame 1, Entry 35, Count 1, USN 0
    Processing source entry <guid=5e768f4392863b4d86935e6bf01acc25>
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 3, Frame 1, Entry 36, Count 1, USN 0
    Processing source entry <guid=b5d263a264aad045b8f42f19b49dd844>
    Previous entry took 0 seconds (16, 0) to process
    Processing Entry: Page 3, Frame 1, Entry 37, Count 1, USN 0
    Processing source entry <guid=f19994051c804846b7bcbd066d9e9d40>
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 3, Frame 1, Entry 38, Count 1, USN 0
    Processing source entry <guid=b16cd765bafa4f4d8649d91f0f055e5f>
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 3, Frame 1, Entry 39, Count 1, USN 0
    Processing source entry <guid=6be6a7d551978445aafd3803e60dc560>
    Processing in-scope entry 6be6a7d551978445aafd3803e60dc560.
    Adding target object CN=User Name,OU=Staff Accounts,OU=Users,OU=ITS,CN=Test,dc=domain,dc=org.
    Adding attributes: sourceobjectguid, instanceType, objectSid, sAMAccountName, lastagedchange, objectclass, 
    Adding target object CN=User Name,OU=Staff Accounts,OU=Users,OU=ITS,CN=Test,dc=domain,dc=org. Requesting replication of parent.
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 3, Frame 2, Entry 0, Count 0, USN 53438354
    Processing source entry <guid=bbb4a760a8281741a11d9331efaa3d7a>
    Processing in-scope entry bbb4a760a8281741a11d9331efaa3d7a.
    Adding target object OU=Staff Accounts,OU=Users,OU=ITS,CN=Test,dc=domain,dc=org.
    Adding attributes: objectClass, instanceType, sourceobjectguid, lastagedchange, 
    Adding target object OU=Staff Accounts,OU=Users,OU=ITS,CN=Test,dc=domain,dc=org. Requesting replication of parent.
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 3, Frame 3, Entry 0, Count 0, USN 52660067
    Processing source entry <guid=8d3ef319dff31f47819632af2da5df2c>
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 3, Frame 2, Entry 0, Count 0, USN 53438354
    Processing source entry <guid=bbb4a760a8281741a11d9331efaa3d7a>
    Processing in-scope entry bbb4a760a8281741a11d9331efaa3d7a.
    Adding target object OU=Staff Accounts,OU=Users,OU=ITS,CN=Test,dc=domain,dc=org.
    Adding attributes: objectClass, instanceType, sourceobjectguid, lastagedchange, 
    Adding target object OU=Staff Accounts,OU=Users,OU=ITS,CN=Test,dc=domain,dc=org. Requesting replication of parent.
    Previous entry took 0 seconds (0, 0) to process
    Processing Entry: Page 3, Frame 3, Entry 0, Count 0, USN 52660067
    Processing source entry <guid=8d3ef319dff31f47819632af2da5df2c>
    Previous entry took 0 seconds (0, 0) to process
    ===================================================

    Hi,
    Are there any error messages from the event log?
    Here is a KB article which describes a similar issue below I suggest you refer to:
    Error message when you use the Adamsync tool in Windows Server 2003: "Error: We seem to be in an infinite recursive loop"
    http://support2.microsoft.com/kb/926933
    Best Regards,
    Amy

  • When I open iTunes , iTunes Match started to process step 1. Always same process and never ending

    When I open iTunes , iTunes Match started to process step 1. Always same process and never ending...
    I tried some suggestions but I cant fix my problem. Do you have any knowladge about this problem?

    For the past few months, and several iTunes upgrades, iTunes Match spends some time in Step 1 "Gathering" and sending information to Apple. Then Step 2 runs through the first 2092 of 2094 pretty quickly. Jumps to 2094. And then immediatly back to Step 1 again.
    Repeat every 5 minutes or so until Match is manually turned off.

  • Export just hangs and never ends

    I am having an Oracle 9.2.0.6 STD edition in WIN2003r2
    The export job was runnig fine but suddenly it starts to hang when it reaches
    Exporting cluster definitions.........
    It never ends
    I have an invlaid XML object....
    Any suggestions...
    Message was edited by:
    Maran Viswarayar

    can u please post what are the paramaters u have given while exporting.
    Regds
    Nirmal

  • Middleware Reorg job never finishes

    This MW reorg job runs daily and never finishes remaining in a running
    status.Job log last step is the Reorganize Keygen Data step. When
    we've debugged against it, it appeared to be comparing 2 files and if
    found in second file record was deleted. However, the compare file
    contained no records. The SM09_KYTBL contains over 20 million records
    at this point.

    Unfortunately, posting our code here really isn't possible.
    I can describe what we're doing and seeing.
    We're not using the batch service to run command line applications. In our task processor, we're determining what classes to create and call and call them in process.  We have a lot of job types (above 15 and counting) that we need to run, so we opted
    to combine them into a single class library and call them that way. None of our jobs output any files, all of our output get persisted to blob storage. We're using the batch service kind of as an on-demand cloud worker infrastructure. 
    It seems like the issue (jobs that never end) are random.  It's not always the same job and it's not always long running ones.  When the issue does crop up, our task completes without any errors. We do see the results of our jobs in blob storage.
     Also in our task processor, we set the TaskProcessResult's ProcessorOutput property to any messages we've logged.  We can download and see those log messages in the portal.
    We also see 2 tasks created for the job, our task and the default merge (we don't create merge tasks for our jobs).
    Would the job id's or logs help in any way?

  • Retraction for Capitals wbs keep running never end..

    Hi all;
    While running a retraction for capital wbs using this 'UPR_COST_PLAN_EXEC' FM, the job keeps running for hours never end, I can see the messages at the task bar 'Data summarized...' , 'data transfered..' etc..I don't get any error message or anything.
    This is not a new function, it has been running well in the past and I never had any issue. We run this every month to retract monthly updates into R/3, The only thing I have changed between last month and this month are
    On the planning level Version = 5 (I had 4 last month) this is the version this data gets stored in R/3.
    Also the parameter grp version = 5.
    Those should not cause this issue...Did anyone had this issue earlier? Pls write to me...as this is a production issue..I will assign good points.
    thanks.
    BK

    Got it figured out guys...thanks.
    Buddhi R Kalakheti

  • Syncing calendar or contacts never ends...

    Love my iPhone, love my new Macbook Air.
    First time I sync'ed the two my 600 contacts made it from the computer to the phone.
    Now I'm syncing again a few days later and music syncs, video syncs, but if I choose to sync contacts or calendar it never ends. I've left it for as much as 30 minutes and nada.
    No progress is shown as it is with music, etc -- just a barber-pole like progress bar that never changes.
    I've tried checking the sync box that says "for this sync only replace the content on the phone" and it doesn't make a difference.
    I've tried powering the phone down and back up and nothing.
    I rather not completely reset the phone because I suspect that this will wipe the call logs, voicemails, SMS conversations, etc.
    If it helps, I think the problem started because during this 2nd sync it detected a bunch of "conflicts" in the address book and asked which version I wanted to keep. I went through and chose all the ones to keep but before that sync was done the sync got hung up because an SMS message came in which it was in progress and when I tried to slide the slider to get to the SMS I killed the sync (I didn't realize the slider killed syncs at that point).
    Any ideas?

    Petestein1
    One thing to try is to open isync from your applications folder.
    Once isync is open, click on isync at the top of the screen and choose preferences.
    In the preferences, reset sync history.
    After sync history is reset, quit isync and try syncing the iphone again.
    If the issue persists, try creating a new user account.
    Log into the new account and open ical and address book.
    Put a test contact into address boo and a test event into ical.
    Then open itunes, go through the initial setup and try syncing just contacts and calendars.
    Make sure to merge data.
    If the sync goes on in the new user account, then some how the data has become corrupted in your account and is causing the sync to hang.
    Hope this helps.

  • Help-- Using GZIPOutputStream, but never end.

    I written serialization object with GZIPOutputStream.
    But recent my Aplication hang 24 hours. I print stack , see the thread is runnable,and lock (0x20fbca10)
    Can any one help me?How the "Deflater.deflateBytes" never end?
    I have two thread.
    thread 1: write serialization object (when receive a message)
    thread 2: close GZip file(when a stop request)
    "RMI TCP Connection(22352)-10.9.146.14" daemon prio=6 tid=0x0792b8d8 nid=0x7b18 runnable [0x4b01d000..0x4b01fa18]
    java.lang.Thread.State: RUNNABLE
         at java.util.zip.Deflater.deflateBytes(Native Method)
         at java.util.zip.Deflater.deflate(Deflater.java:290)
         - locked <0x20fbca10> (a java.util.zip.Deflater)
         at java.util.zip.DeflaterOutputStream.deflate(DeflaterOutputStream.java:159)
         at java.util.zip.DeflaterOutputStream.write(DeflaterOutputStream.java:118)
         at java.util.zip.GZIPOutputStream.write(GZIPOutputStream.java:72)
         - locked <0x1ff90e98> (a java.util.zip.GZIPOutputStream)
         at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
         at java.io.BufferedOutputStream.write(BufferedOutputStream.java:109)
         - locked <0x1f41f740> (a java.io.BufferedOutputStream)
         at java.io.FilterOutputStream.write(FilterOutputStream.java:80)
    "MessageListenerThread - F_LinkTopic" prio=6 tid=0x05def670 nid=0x16d8 waiting for monitor entry [0x0f90f000..0x0f90fd98]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at java.util.zip.Deflater.deflate(Deflater.java:284)
         - locked <0x20fbca10> (a java.util.zip.Deflater)
         at java.util.zip.GZIPOutputStream.finish(GZIPOutputStream.java:86)
         at java.util.zip.DeflaterOutputStream.close(DeflaterOutputStream.java:146)
         at java.io.FilterOutputStream.close(FilterOutputStream.java:143)

    I have seen an almost identical problem within an Apache CXF web service. In my situation the end of the stack looks almost identical, stuck forever (apparently) inside the native Deflater.deflateBytes.
    In my situation I have seen this with two threads, each independently using GZIPOutputStream.
    I am really starting to think that there is a thread safety issue with the native GZIP code - two independent objects in two threads are simultaneously zipping and both get stuck with 100% CPU utilization in the native code. Interestingly my situation is also in the close processing, but not inside the finish processing. Of all the situations I see with searching for similar situations (search the web for Deflater.java:306) there seems to be a set of common circumstances:
    * Exactly the same last few levels on the stack (ending in Deflater.deflateBytes (Native Method)
    * Two threads interacting with GZIP
    * Often seems to relate to close processing (perhaps a short data remainder problem?)
    My situation is documented here:
    http://www.java.net/forum/topic/glassfish/glassfish/glassfish-301-gzip-problem-threads-apparently-spinning-100-cpu-use
    Salient details of thread dump:
    "http-thread-pool-8080-(18)" - Thread t@950
    java.lang.Thread.State: RUNNABLE
    at java.util.zip.Deflater.deflateBytes(Native Method)
    at java.util.zip.Deflater.deflate(Deflater.java:306)
    - locked <21b0c5> (a java.util.zip.ZStreamRef)
    at java.util.zip.DeflaterOutputStream.deflate(DeflaterOutputStream.java:159)
    at java.util.zip.DeflaterOutputStream.write(DeflaterOutputStream.java:118)
    at java.util.zip.GZIPOutputStream.write(GZIPOutputStream.java:72)
    - locked <132ba84> (a java.util.zip.GZIPOutputStream)
    at org.apache.cxf.io.AbstractWrappedOutputStream.write(AbstractWrappedOutputStream.java:46)
    at org.apache.cxf.io.AbstractThresholdOutputStream.write(AbstractThresholdOutputStream.java:69)
    at org.apache.cxf.io.AbstractWrappedOutputStream.write(AbstractWrappedOutputStream.java:46)
    at org.apache.cxf.io.AbstractThresholdOutputStream.unBuffer(AbstractThresholdOutputStream.java:89)
    at org.apache.cxf.io.AbstractThresholdOutputStream.close(AbstractThresholdOutputStream.java:100)
    at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:56)
    at org.apache.cxf.transport.http.AbstractHTTPDestination$BackChannelConduit.close(AbstractHTTPDestination.java:619)

  • 0ic_c03 comprees never ends

    Hi,
    All days we make a delta load and compress our 0ic_c03 cube... but today the compress never ends... it have a clock icon in petition tabs and in SM50 the job is still running... the process of load and compress never took more tha 4 min.
    Any ideas please?
    Best regards
    Juan

    This is the log f sm37
    14:01:28 Job started                                                                    
    14:01:28 Step 001 started (program RSCOMP1, variant &0000000001550, user ID JDIEZDEMEDIN)
    14:01:33 Performing check and potential update for status control table                 
    14:01:34 FB RSM1_CHECK_DM_GOT_REQUEST called from PRG RSSM_PROCESS_COMPRESS; row 000200 
    14:01:34 Request '86.773'; DTA '0IC_C03'; action 'C'; with dialog 'X'                   
    14:01:34 Leave RSM1_CHECK_DM_GOT_REQUEST in row 70; Req_State ''                        
    14:01:34 FB RSM1_CHECK_DM_GOT_REQUEST called from PRG RSSM_PROCESS_COMPRESS; row 000200 
    14:01:34 Request '86.775'; DTA '0IC_C03'; action 'C'; with dialog 'X'                   
    14:01:34 Leave RSM1_CHECK_DM_GOT_REQUEST in row 70; Req_State ''                        
    Regards
    Juan

Maybe you are looking for

  • Safari 3 Quits and Quits and Quits

    Installed 10.4.11 and got Safari 3 which quits at the slightest notion. For example when more than one window is open and I go to close one it quits altogether. Also if I voluntarily quit the app I always get an error message informing me that the ap

  • Profiles in ODI

    Hello there, I am new to ODI and I had a couple of questions about the profiles. I would like to know what profile(s) i need to assign in order to allow a developer to work in a given repository/project without being able to change a data model. I ne

  • Sequence behavior after importing via DataPump

    Hi Friends, I'm running Oracle DB 11.2.0.3 on Windows 2008 R2 SP1 Servers and I faced a strange sequences behavior after importing a schema via Data Pump. The export is done this way: EXPDP userid/password dumpfile= logfile= directory= remap_dumpfile

  • Is It Possible To Prevent a Stroke's Weight From Scaling with the Rest of an Object?

    I want to animate a person moving off into the distance, but while I want the size of the figure to get smaller, I don't want the weight of the lines that comprise the image to scale down, too. I made this little sample of a person skating (poorly) a

  • Screen brightness button won't work

    My screen brightness controls won't work (don't ask). Is there a terminal command for screen brightness?