Processes in v$process which do not exist in v$session(help)!!

Hi, all.
The database is 2 node RAC database (10.2.0.2.0)
on 32 bit windows 2003 EE SP1.
Our database is suffering "CKPT hang" from time to time.
I checked v$process and v$session on both node by the following sql.
select addr,pid,spid,username, program
from v$process
where addr not in (select paddr from v$session)
ADDR     PID     SPID     USERNAME     PROGRAM
56E2     1               PSEUDO
56E2     18     3984     SYSTEM     ORACLE.EXE (D000)
56E2     19     4020     SYSTEM     ORACLE.EXE (S000)
56E2     27     3176     SYSTEM     ORACLE.EXE (PZ99)
56E3     39     2296     SYSTEM     ORACLE.EXE (PZ97)
●select * from v$px_process
SERVER_NAME     STATUS     PID     SPID     SID     SERIAL#
PZ97     AVAILABLE     39     2296          
PZ99     AVAILABLE     27     3176          
●select * from V$PX_SESSION
--> no rows
●select slave_name,status from v$pq_slave
SLAVE_NAME     STATUS
PZ97     IDLE
PZ99     IDLE
I found the above processes which do not exist in v$session.
Is this normal??
Thanks and Regards.
Message was edited by:
user507290

Hi,
>>I can see incomplete checkpoint message in alert log files.
This message indicates that Oracle wants to reuse a redo log file, but the current checkpoint position is still in that log. In this case, Oracle must wait until the checkpoint position passes that log. In fact, the "checkpoint not complete" messages are generated because the logs are switching so fast that the checkpoint associated with the log switch isn't terminated. Oracle stops processing until the checkpoint completes successfully.
In this case, normally you need to increase the size of the redo logs or add more redo log groups. Take a look on http://www.dbazine.com/oracle/or-articles/foot2
Now, as you said that the current redo size is 2 GB, how frequently redo log switch's occurs in the database ? See the SQL's below:
Log Switching Distribution
select to_char(first_time,'DD/MM/YYYY') day,
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'00',1,0)),'999') "00",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'01',1,0)),'999') "01",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'02',1,0)),'999') "02",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'03',1,0)),'999') "03",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'04',1,0)),'999') "04",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'05',1,0)),'999') "05",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'06',1,0)),'999') "06",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'07',1,0)),'999') "07",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'08',1,0)),'999') "08",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'09',1,0)),'999') "09",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'10',1,0)),'999') "10",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'11',1,0)),'999') "11",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'12',1,0)),'999') "12",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'13',1,0)),'999') "13",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'14',1,0)),'999') "14",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'15',1,0)),'999') "15",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'16',1,0)),'999') "16",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'17',1,0)),'999') "17",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'18',1,0)),'999') "18",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'19',1,0)),'999') "19",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'20',1,0)),'999') "20",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'21',1,0)),'999') "21",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'22',1,0)),'999') "22",
to_char(sum(decode(substr(to_char(first_time,'HH24'),1,2),'23',1,0)),'999') "23",
sum(1) "TOTAL_IN_DAY"
from v$log_history
group by to_char(first_time,'DD/MM/YYYY')
order by to_date(day);
Average Switch Time
select to_char(first_time,'DD/MM/YYYY HH24')||':00:00' "Time",
count(*) "Nbswitch",
trunc(60/count(*),1) "Average switch time(minutes)",
count(*)*rsize "EstimateSize"
from v$log_history, (select sum(bytes/1024/1024)/count(*) rsize from v$log)
group by to_char(first_time,'DD/MM/YYYY HH24'),rsize
order by to_date(to_char(first_time,'DD/MM/YYYY HH24'), 'DD/MM/YYYY
HH24')desc;In addition, If you have access on Oracle Metalink, see the Note:147468.1 about Checkpoint Tuning and Troubleshooting Guide.
Cheers

Similar Messages

  • Processes in v$process that do not exist in v$session (2 node RAC)!

    Hi, all.
    The database is 2 node RAC database (10.2.0.2.0)
    on 32 bit windows 2003 EE SP1.
    Our database is suffering "CKPT hang" from time to time.
    I checked v$process and v$session on both node by the following sql.
    select addr,pid,spid,username, program
    from v$process
    where addr not in (select paddr from v$session)
    ADDR PID SPID USERNAME PROGRAM
    56E2 1 PSEUDO
    56E2 18 3984 SYSTEM ORACLE.EXE (D000)
    56E2 19 4020 SYSTEM ORACLE.EXE (S000)
    56E2 27 3176 SYSTEM ORACLE.EXE (PZ99)
    56E3 39 2296 SYSTEM ORACLE.EXE (PZ97)
    ●select * from v$px_process
    SERVER_NAME STATUS PID SPID SID SERIAL#
    PZ97 AVAILABLE 39 2296
    PZ99 AVAILABLE 27 3176
    ●select * from V$PX_SESSION
    --> no rows
    ●select slave_name,status from v$pq_slave
    SLAVE_NAME STATUS
    PZ97 IDLE
    PZ99 IDLE
    I found the above processes which do not exist in v$session.
    Is this normal??
    Thanks and Regards.

    you see nothing in v$session because there is nothing to see ...
    the Parallel servers are AVAILABLE , ie no session are running parallel executions (as shown in V$PX_SESSION)
    PID is not SID

  • Getting Process instance with key '0' does not exist.

    I am doing a request based provisioning task.When I request for a resource the approvers are able to approve the request but the user is not created.
    I am getting the below exception at the backend:-
    [XELLERATE.APIS],Class/Method: tcProvisioningOperationsBean/getProcessDetailData encounter some problems: Process instance with key '0' does not exist.
    [11/2/12 0:30:13:640 EDT] 00000097 SystemOut O ERROR,02 Nov 2012 00:30:13,639,[XELLERATE.WEBAPP],Class/Method: RequestApprovalDetailAction/requestDetail encounter some problems: Process instance with key '0' does not exist.
    Thor.API.Exceptions.tcAPIException: Process instance with key '0' does not exist.
         at com.thortech.xl.ejb.beansimpl.tcProvisioningOperationsBean.getProcessDetailData(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcProvisioningOperationsBean.getProcessDetail(Unknown Source)
         at com.thortech.xl.ejb.beans.tcProvisioningOperationsSession.getProcessDetail(Unknown Source)
         at com.thortech.xl.ejb.interfaces.EJSRemoteStatelesstcProvisioningOperations_6b2f800a.getProcessDetail(Unknown Source)
         at com.thortech.xl.ejb.interfaces._tcProvisioningOperations_Stub.getProcessDetail(Unknown Source)
         at Thor.API.Operations.tcProvisioningOperationsClient.getProcessDetail(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor309.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at Thor.API.Base.SecurityInvocationHandler$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:337)
         at com.ibm.websphere.security.auth.WSSubject.doAs(WSSubject.java:118)
         at Thor.API.Security.LoginHandler.websphereLoginSession.runAs(Unknown Source)
         at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
         at $Proxy6.getProcessDetail(Unknown Source)
         at com.thortech.xl.webclient.actions.RequestApprovalDetailAction.setStandardApprovalDetail(Unknown Source)
         at com.thortech.xl.webclient.actions.RequestApprovalDetailAction.requestDetail(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor665.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1096)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1037)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at com.thortech.xl.webclient.security.CSRFFilter.doFilter(Unknown Source)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:832)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:679)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:566)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:90)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:748)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1466)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:119)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:458)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:387)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
         at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLReadServiceContext.java:1818)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
         at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:743)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)

    Process instance with key '0' does not exist
    Such issue typically appears when the Provisioning is initiated without "Auto Save" i.e. before ORC_KEY entry goes in the OIU table...
    Second possibility can be that the mandatory attributes in the process form are not populated..
    Third possibility can be that the Status is Waiting... And Resource is dependent on another Resource...
    Are you able to Direct Provision the account? I mean without raising Request Based provisioning?
    Please give us following details:
    (1) Resource Profile:-status of Auto Save
    (2) Approval Process:- status of Auto Save and Auto Pre-Pop
    (3) Prov Process:-status of Auto Save and Auto Pre-Pop.
    (4) Is the object form properly populated?
    (5) Is the Process form properly populated?
    (6) Any Exception occurred during Approval process?
    (6) In the OIM Database, fire the following query:-
    SELECT OIU.ORC_KEY
    FROM OIU, USR, OBI
    WHERE OIU.USR_KEY=USR.USR_KEY
    AND UPPER(USR.USR_LOGIN)=UPPER('ABCDEFGH_USER')
    AND OBI.OBI_KEY=OIU.OBI_KEY
    AND OBI.OBI_KEY IN (SELECT OBI.OBI_KEY FROM OBI,OBJ WHERE OBI.OBJ_KEY=OBJ.OBJ_KEY AND
    UPPER(OBJ.OBJ_NAME)=UPPER('AD USER'))
    This will show whether any proper ORC_KEY was generated for this resource instance..

  • Entries in Dimension table (Dim Id's) which do not exist in Fact table

    Hello all,
    We have a strange situation when we run the Report SAP_INFOCUBE_DESIGN. I expected that the Dimension table could have max 100 % compared with Fact tables. However we have a dimension with 587% entries compared with fact tables.
    ZOEEMRW            /BIC/DZOEEMRW3      rows:  2.416.567    ratio:        587  %
    ZOEEMRW            /BIC/DZOEEMRW5      rows:      2.464    ratio:          1  %
    ZOEEMRW            /BIC/DZOEEMRWP      rows:          4    ratio:          0  %
    ZOEEMRW            /BIC/DZOEEMRWT      rows:        520    ratio:          0  %
    ZOEEMRW            /BIC/DZOEEMRWU      rows:         18    ratio:          0  %
    ZOEEMRW            /BIC/EZOEEMRW       rows:    399.160    ratio:         97  %
    ZOEEMRW            /BIC/FZOEEMRW       rows:     12.520    ratio:          3  %
    Consider dimension /BIC/DZOEEMRW3.
    For this Dimension, we could not find an entry in the tables /BIC/EZOEEMRW or /BIC/FZOEEMRW for the following dim idu2019s.
    There are many DIM ids which exist in the Dimension table but do not exist in the Fact tables.
    Is it normal that this can happen? If so in which cases and is there any way to clean up these entries in the Dimension table which do not exist in the fact table.
    Any help or insight on this issue will be appreciated.
    Best Regards,
    Nitin

    Hey,
    there is a program with which you can clean up your dimension table. Search forum. But also try RSRV there is a option especially for that.
    Backround is that using process chains and you delete data from cube, dimensions are not deleted. So there could be data in the dimension which have no relation to fact table. This is many times discussed in this forum.
    Best regards,
    Peter

  • How do i remove my old Apple Id from iPhone's iCloud setting which does not exist anymore

    Purchased new iphone 5s, installed with itunes restoring backup from iphone 4 (which was too old a backup). It restored an old apple id (which i do not use anymore) in the iCloud settings while having my new Apple Id in the Itunes & App Store. I cannot turn off the iCloud setting due to old AppleId popping up - which does not exist.. How do i remove the old Apple Id from icloud setting on the phone.
    I cannot erase the phone as it asks for the password for the old Apple Id. And i cannot do the restore again (after i made a recent back up my iphone 4) as itunes asks me to turn off Find my phone.

    The Apple ID exists. The email address you used to create it may not, but the Apple ID does. Call AppleCare and ask to speak to someone in account security.

  • TS3212 When I try to download iTune, it shows Drive K which does not exist in my computer. It does not allow me to change to other Drive and terminate download stating ' out of disk capacity"

    Whne I download iTune, it shows that it will be downloaded to Drive K which does not exist in my computer. It does not allow me to change to other Drives has enough capacity. Then I click change bottom, attempting to change drive, it terminates the download.
    Do you have any solutions??

    Try "Invalid drive X:\" install errors. You should still be able to chose the drive for the download when downloading the installer with a web browser. The iTunes application is installed on the active system drive, usually drive C:.
    tt2

  • HT201363 i have forgotten the security code and an e-mail is being sent to an e-mail account which does not exist.  How do i change the e-mail details

    We have forgotten the security code question and each time I request a reset it is being sent to an e-mail addres which does not exist.  How can I change the e-mail address to my current e-mail address.  We have put money onto an ITunes account which is asking for this security question.  This has never happened before. Any assistance would be appreciated.  thank you

    Hello, covey98. 
    Thank you for visiting Apple Support Communities.
    I would recommend reaching out to us via the link below to assist you with this issue.
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Cheers,
    Jason H.

  • After downloading Lion the noise level of the fans increased. A noise which did not exist with Snow Leopard. Any ideas how to reduce noise?

    After downloading Lion the noise level of (what I believe to be ) the fans increased. A humming noise which did not exist with Snow Leopard. Any ideas how to reduce this noise?

    I have seen this mentioned a dozen times, here, on Lion,and MacRumors.
    Nope. Usual suspects.
    And whether you tried a clean install instead (backup and erase) and then use MA to import

  • Calling a remote enabled function module which does not exist in caller sys

    Hi,
    I have a a system ABC from which I am trying call a rfc enabled fm(Test) present in system XYZ.
    The fm(Test) does not exist in the system ABC so I am getting generation errors and dumps.
    Is there a way for me to call these remote enabled function modules which does not exist in the caller system without the obvious errors etc.
    Is there any special way.
    Thanks

    Hi,
    please check this sample:
    REPORT  zcallfm                                 .
    DATA: xv_return TYPE sysubrc.
    CALL FUNCTION 'DOESNOTEXIST'
    DESTINATION   'NOWHERE'
    EXPORTING     caller                = sy-sysid
    IMPORTING     return                = xv_return
    EXCEPTIONS    system_failure        = 1
                  communication_failure = 2
                  OTHERS                = 4.
    It shouldn't throw any generation errors in your system!
    Regards,
    Klaus

  • My Adobe Reader XI 11.0.09 fails to open pdf's. Error message - "because the associated helper application does not exist." Can anyone help me?

    My Adobe Reader XI 11.0.09 fails to open pdf's. Error message - "because the associated helper application does not exist." Can anyone help me?

    Okay. I will try this again. I did remove and reinstall earlier, but will
    do it now.
    regards, Mike
    On Wed, Oct 15, 2014 at 12:55 PM, Sabian Zildjian <[email protected]>

  • Transporting Process Chain - error  Source system does not exist

    Hi,
    I tried to transport a local PC by itself (not including its main meta chain) since I have only done modifications in the local PC only. In the PC, there are PSA Processing, ODS Processing, ODS Activation, ABAP Program w/ variants and Infocube Rollup.
    However, I got the following transport error: Source system does not exist
    =======
    Diagnosis
    Source system  is not known.
    System Response
    The imported data for DataSource  was deleted again because the referenced source system does not exist and no mapping is defined in table RSLOGSYSMAP on an existing productive source system.
    Procedure
    Create the referenced source system in the Data Warehousing Workbench or define mapping to a known source system in table RSLOGSYSMAP.
    You get to maintenance using Tools -> Conversion of the logical system names.
    ============
    I have checked at the table RSLOGSYSMAP and all source system mappings are in order.
    And the weird thing is, upon checking the PC itself in the transport-to box, I can activate it without any error.
    FYI, we are currently upgrading to BI Accelerator. Am not sure if this could be one of the reasons.
    Any inputs and tips are highly appreciated and will be rewarded with points accordingly.
    Thanks

    Hi,
    This error is due to the fact that the
    mapping table for the after import (RSLOGSYSMAP) is not correct maintained in PB7 system.
    You need to maintain table RSLOGSYSMAP in each system
    You can find the steps to do it in the attached note 127326:
    o  Maintain table 'RSLOGSYSMAP' in the target BW with view
       'V_RSLOGSYSMAP' and enter as 'original source system' the logical name of the source system in the source BW and as 'target source system' the logical name of the source system in the target BW.
       This maintenance is required since it allows the correct source system reference of the InfoSources to be transported.
    This source system reference in turn is absolutely necessary to activate the transfer structure.
       Example:
       Source BW with source system AAA.
       Target BW with source system BBB where the source system AAA
       corresponds to the source system BBB.
       Entry in RSLOGSYSMAP in the target BW:
       Original source system: AAA, target source system: BBB.
       Give the DDIC user in the source BW in client 000 the
       authorization profile S_RS_ALL to create BW objects.
    Cheers
    Rajesh

  • Accessing a sequence which does not exists

    i have pl/sql code as below and the sequence  value is displayed based on condition.In case the sequence  does not exists and condition fails  the pl/sql is not getting compiled and throws error  saying that  sequence does not exists.
    For eg:
    declare
    i number;
    begin
    if ( 1=2)  then
    select  top_seq.nextval into i from dual;
    dbms_output.put_line('i'||i);
    end if;
    end;
    in above sequence  does not exist and condition is failed as it never access sequence, does the pl/sql  code execute successfully and  which is not  happening as it throws error  . sequence does not exists.

    910111 wrote:
    Hi,
    as Frank mentioned before, you can achieve that by using dynamic sql, see following example:
    DECLARE
      lc_sql       VARCHAR2(4000);
      ln_seqExists NUMBER       := 0;
      lc_seqName   VARCHAR2(30) := 'TOP_SEQ';
      i            NUMBER;
    BEGIN
      SELECT NVL(COUNT(*),0)
      INTO ln_seqExists
      FROM user_sequences
      WHERE sequence_name = lc_seqName;
      IF ln_seqExists     = 0 THEN
        lc_sql           := 'CREATE SEQUENCE ' || lc_seqName;
        EXECUTE immediate lc_sql;
      END IF;
      IF ( 1    = 1) THEN
        lc_sql := 'select  top_seq.nextval from dual';
        EXECUTE immediate lc_sql INTO i;
        dbms_output.put_line('i: ' || i);
      END IF;
    EXCEPTION
    WHEN OTHERS THEN
      dbms_output.put_line(sqlerrm);
    END;
    Regards
    Not everything that can be done should be done .... 
    Before showing someone how to shoot themselves in the foot, it would be best to determine that shooting themselves in the foot is the best and most appropriate course of action.

  • Apple TV 2 shows titles which did not exist.

    Hello there. My Apple-TV 2 shows titles in a podcast folder which definnitely does not exist as I already deleted them.
    Trying to selct them I will get a failure notice that Apple-TV couldn´t load the title which is obvious as I already deleted them.
    Then the title will disappear until I need to start iTunes again.
    I already deleted the complete podcast folder and installed them again. Result remains the same.
    How can I solve the matter ?
    Thanks in advance.

    Found the solution here in the support communities.
    -Create a smart playlist.
    -Genre = Podcast
    -Go into the playlist
    -Click on the related Podcast
    -Press "shift" + "backspace" on a Windows computer
    -Confirm you want to delete the annoying Podcast

  • Reminders brings up message: Reminders can't connect to the account "Exchange". This is not my account; it then requests a password for an e-mail address which is not mine. Can anyone help?

    Every time I open Reminders it brings up a reference to an account that is not mine and asks for a password for an e-mail address which is not mine. I have to cancel to proceed.

    Does anyone else ever have physical access to your computer? Does the address belong to one of your friends/family/contacts? Have you recently had to take in your computer for repair, or given remote access to anyone?
    It's very unlikely that you have been hacked - a hacker does not normally add their own email address to your system.
    Matt

  • HT1386 i purchased a new phone last week but no able to sinc songs which were not purchased from itune.--please help

    I PURCHASED A NEW PHONE LAST WEEK BUT NOT ABLE TO SINC SONGS WHICH WERE NOT PURCHASED FROM I TUNE- HELP

    Correct. When you update via iTunes all synced media that is not in your iTunes library will be lost.
    As IO said before:
    You can redownload most iTunes pruchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    I do not think it included audio books.

Maybe you are looking for

  • Unable to do confirmation

    Hello All, we are unable to do goods receipt in SRM. we are using SRM 5.0 When we try to post confirmation (BBPCF03), we could select the PO and when we click on "create confirmation" icon, nothing is happening. what are we missing? Thanks in advance

  • Media files location

    Hi all! I need some help about FCPX. I've imported videos from a camera to an external HDD, so everything have to be on that. But no...When I start the program, a folder named "Motion template" created to my Maciontosh drive's Movies folder and after

  • Schedule permanent email removal

    I have an iPod Touch on which I use a POP email account. When I first started doing this many months ago, I found it annoying that I had to delete individual emails from the Inbox -- which is to say, move them to the Trash -- and then they would pile

  • Mpeg 2 for Blu-ray audio exports with missing frames at beginning and end.

    Im using a Matrox Axio LE system and the Matrox Media encoder to export an Mpeg 2 for blue-ray. My footage is shot in 1280x720p 59.94 drop frame. I have found that after exporting the file from the encoder and bringing it into Encore CS3 that the aud

  • Bapi/FM to get bom change info

    hi! i need to get one bapi/FM to get bom change info with ECN!   the function like S_ALR_87012976 (tcode). thank you very much!