Tempfile not deleted at OS level

hi friends,
database: 9.2.0.4
OS: windows server 2003 with sp2
hi i had a temporary tablespace temp1 with one tempfile. i had created another temp tablespace temp2 with one tempfile and made it default. i dropped temp1 using following command
SQL> drop tablespace temp1 including contents and datafiles;
but still i file is residing at OS level. when i tried to delete it, it throwed error that the file is in use.
once database is shutdown and started, the file is cleared from OS level automatically.
is this normal behaviour? if not what could be the reason?
thanks in advance.

before dropping the temp1 tablespace, you may try this:
select sid, serial# from v$session where saddr in (select session_addr from v$tempseg_usage v where v.tablespace = 'TEMP1');
alter system kill session '<sid><serial#>'; (you do this for all the rows you got at the sql above or you may build this command with dynamic sql).
Then you drop the temp1 tablespace and see if its deleted.

Similar Messages

  • TempFile not deleted

    Hi,
    Oracle successfully accepts the ALTER TABLESPACE DROP TEMPFILE commands, it yet doesn't delete the physical file nor change it's status in the data dictionary.
    DB: 11g (11.1.0.7.0)
    OS: Windows XP Pro
    SQL> select file_name , file_id, status from dba_temp_files ;
    FILE_NAME                                                                      
       FILE_ID STATUS                                                              
    D:\ORACLE\ORADATA\ORA11G\TEMP01.DBF                                            
             1 AVAILABLE                                                           
    D:\ORACLE\ORADATA\ORA11G\TOADTMP.TMP                                           
             2 AVAILABLE                                                           
    D:\ORACLE\ORADATA\ORA11G\TEMP02.DBF                                            
             3 AVAILABLE                                                           
    FILE_NAME                                                                      
       FILE_ID STATUS                                                              
    D:\ORACLE\ORADATA\ORA11G\TEMP03.DBF                                            
             4 AVAILABLE                                                           
    SQL> alter tablespace temp drop tempfile 'D:\ORACLE\ORADATA\ORA11G\TEMP01.DBF';
    Tablespace altered.
    SQL> select file_name , file_id, status from dba_temp_files ;
    FILE_NAME                                                                      
       FILE_ID STATUS                                                              
    D:\ORACLE\ORADATA\ORA11G\TEMP01.DBF                                            
             1 AVAILABLE                                                           
    D:\ORACLE\ORADATA\ORA11G\TOADTMP.TMP                                           
             2 AVAILABLE                                                           
    D:\ORACLE\ORADATA\ORA11G\TEMP02.DBF                                            
             3 AVAILABLE                                                           
    FILE_NAME                                                                      
       FILE_ID STATUS                                                              
    D:\ORACLE\ORADATA\ORA11G\TEMP03.DBF                                            
             4 AVAILABLE                                                                                                                                           

    Hi..
    Thanks for your hint. It answered the question.Well, i am still not much satisfied with the answer.If the tempfile would have been empty it would have dropped and there it could not have been seen in dba_temp_files or v$tempfile view.If its non-empty, it should have given ORA-3262 which occurs when one or more extent exists in a datafile or tempfile to be dropped.
    It might be a bug.It would be great if you raise an SR for it with Oracle Support.
    My test on 10.2.0.4
    16:37:02 TEST >@temp_info
    FILE_NAME                                          TABLESPACE_NAME SIZE_IN_MB STATUS          AUT
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP01.DBF   TEMP                  3133 AVAILABLE       YES
    Elapsed: 00:00:00.00
    PROPERTY_NAME                  PROPERTY_VALUE
    DEFAULT_TEMP_TABLESPACE        TEMP
    Elapsed: 00:00:00.00
    16:37:05 TEST >
    16:37:06 TEST >
    16:37:06 TEST >
    16:37:06 TEST >create temporary tablespace temp1 tempfile 'H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_01.DBF' size 10M;
    Tablespace created.
    Elapsed: 00:00:00.05
    16:38:18 TEST >alter tablespace temp1 add tempfile 'H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_02.DBF' size 10M;
    Tablespace altered.
    Elapsed: 00:00:00.02
    16:38:41 TEST >
    16:38:41 TEST >
    16:38:41 TEST >
    16:38:41 TEST >alter tablespace temp1 add tempfile 'H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_03.DBF' size 10M;
    Tablespace altered.
    Elapsed: 00:00:00.02
    16:38:48 TEST >
    16:38:48 TEST >
    16:38:48 TEST >alter database default temporary tablespace temp1;
    Database altered.
    Elapsed: 00:00:00.00
    16:39:05 TEST >@temp_info
    FILE_NAME                                          TABLESPACE_NAME SIZE_IN_MB STATUS          AUT
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP01.DBF   TEMP                  3133 AVAILABLE       YES
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_01.DBF TEMP1                   10 AVAILABLE       NO
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_02.DBF TEMP1                   10 AVAILABLE       NO
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_03.DBF TEMP1                   10 AVAILABLE       NO
    Elapsed: 00:00:00.00
    PROPERTY_NAME                  PROPERTY_VALUE
    DEFAULT_TEMP_TABLESPACE        TEMP1
    Elapsed: 00:00:00.00
    16:39:08 TEST >
    16:39:08 TEST >
    16:39:08 TEST >
    16:39:10 TEST >
    16:39:10 TEST >select file_name,file_id,status from dba_temp_files;
    FILE_NAME                                             FILE_ID STATUS
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP01.DBF            1 AVAILABLE
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_01.DBF          2 AVAILABLE
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_02.DBF          3 AVAILABLE
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_03.DBF          4 AVAILABLE
    Elapsed: 00:00:00.00
    16:39:20 TEST >select FILE#,STATUS from V$TEMPFILE;
         FILE# STATUS
             1 ONLINE
             2 ONLINE
             3 ONLINE
             4 ONLINE
    Elapsed: 00:00:00.00
    16:39:26 TEST >
    16:39:27 TEST >
    16:39:27 TEST >alter tablespace temp1 drop tempfile 'H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_03.DBF';
    Tablespace altered.
    Elapsed: 00:00:00.02
    16:39:46 TEST >
    16:39:47 TEST >
    16:39:47 TEST >select file_name,file_id,status from dba_temp_files;
    FILE_NAME                                             FILE_ID STATUS
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP01.DBF            1 AVAILABLE
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_01.DBF          2 AVAILABLE
    H:\ORACLE\PRODUCT\10.2.0\ORADATA\FEED\TEMP1_02.DBF          3 AVAILABLE
    Elapsed: 00:00:00.00
    16:39:49 TEST >select FILE#,STATUS from V$TEMPFILE;
         FILE# STATUS
             1 ONLINE
             2 ONLINE
             3 ONLINE
    Elapsed: 00:00:00.00
    16:39:55 TEST >
    16:39:56 TEST >HTH
    Anand

  • Service level tracking items are not deleted

    hi,
    every time i add a new service level tracking, after that when I delete it, it is deleted from the service level tracking items. but it resides as available items when i want to run a SLA report.
    i have already removed 'Test-Remove' from service level tracking in 'Authoring' tab but it still exist as available items to run a report as above picture.
    do i have to remove it manually from sql server? any help is appreciated

    Hi,
    I checked on my lab, and I have the same result as yours. When I newed a service level tracking, I then go to the Operation DB to query below table
    [OperationsManager].[dbo].[ServiceLevelObjective]
    And found the object created, and then I delete the service level tracking on the operation manager console, and recheck the table again, the object is removed there also.
    After that, I run service level tracking summary report, I can see the deleted service level tracking there.
    It is hard to explain, but I think maybe there are temp files keep this information.
    I would like to suggest you wait for some days and then recheck it.
    Regards, Yan Li

  • Oracle VM Manager 3.1.1 will not delete a malfunctioning OVS server

    We have a Oracle VM 3.1.1 environment up and running. We were able to add 4 servers to a clustered pool without issue. But when we got to the 5th box we ran into an issue. We got it up all the ports bonded but realized we had a SAN level issue. Since then we have been trying to delete the server that is now offline due to that issue. It appears I can not remove the server from VM Manager because it can no longer communicate with the ovs-agent. How do I delete a server that's already defined in the environment but no longer exists?
    We have attempted to recreate and readd the host with the same name and IP address but cant control the server. It shows up but is in a constant "starting" state. We can not delete, edit, or modify any aspect of the server from bonded ports.
    The server is current stuck in Unassigned Servers. It's prevent us from modifying or using several of our VLANs to due assigned ports that no longer exist. No VM's exist on any server.
    We have rebooted the OVM Manager, we have restarted the OVS servers, acknowledged, we have stopped the services & cleared the /etc/ovs-agent/db folder, and just about anything we can think of.
    Can anyone assist us? We have logged an SR but havent heard back from them. This is a major issue for us as we have a dozen people waiting on this environment standup and are currently completely dead in the water.
    When we try and delete the server we receive the following error.
    Job Construction Phase
    begin()
    com.oracle.odof.exception.ObjectException: Caught during invoke method: java.lang.NullPointerException
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:151)
    at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:100)
    at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
    at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:773)
    at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:401)
    at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:459)
    at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.NullPointerException
    at com.oracle.ovm.mgr.api.manager.Page83Map.removeServerReservedLunFromPage83Map(Page83Map.java:212)
    at com.oracle.ovm.mgr.api.physical.ServerDbImpl.onPersistableClean(ServerDbImpl.java:565)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:330)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:290)
    at com.oracle.odof.core.storage.Transaction.invokeMethod(Transaction.java:822)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:245)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:219)
    at com.oracle.ovm.mgr.api.job.JobEngine.invokeMethod(JobEngine.java:744)
    at com.oracle.ovm.mgr.api.manager.ModelManagerDbImpl.deleteObject(ModelManagerDbImpl.java:868)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:330)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:290)
    at com.oracle.odof.core.storage.Transaction.invokeMethod(Transaction.java:822)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:245)
    at com.oracle.ovm.mgr.api.manager.ModelManagerProxy.deleteObject(Unknown Source)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObjectInternal(OvmManagerImpl.java:386)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObject(OvmManagerImpl.java:409)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObject(OvmManagerImpl.java:391)
    at com.oracle.ovm.mgr.api.system.FoundryDbImpl.deleteServer(FoundryDbImpl.java:1007)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:330)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:290)
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:136)
    ... 7 more
    Job Aborted from server, cleaning up client.
    Description:
    (10/03/2012 06:27:31:178 PM) Due to Abort by user: admin
    https://dl.dropbox.com/u/55193042/OracleVMManager_Issue1.png

    Did you unpresent the repository from the OVS server? Try to remove the OVS server from the serverpool AFTER unpresenting the repository.
    If this is successful, you may be able to delete the problem server.
    There is a more drastic solution that worked with OVM 3.0.1 which involved reinstalling OVM Manager with the repository uuid. This rebuilt the database cleanly but dropped the friendly names leaving only uuids. Perhaps you may not have to do this if unpresenting the repository works.

  • ARCHIVE NOT DELETED

    HI....
    yesteday i had taken the scedule bakup (incremental level 2 with 'delete input' option)...
    but it said that some of the archived no deleted....
    so agian in the morning i took the archived log bakup with the command
    RMAN> backup format 'd:\app\archbakup\feb3_%s_%t_%U.bkp' archivelog all delete i
    nput;
    so again it flashed back the error while taking the archived log backup...
    RMAN> backup format 'd:\app\archbakup\feb3_%s_%t_%U.bkp' archivelog all delete i
    nput;
    Starting backup at 02-FEB-11
    current log archived
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting archived log backup set
    channel ORA_DISK_1: specifying archived log(s) in backup set
    input archived log thread=1 sequence=731 RECID=355 STAMP=741984037
    input archived log thread=1 sequence=732 RECID=356 STAMP=741984043
    input archived log thread=1 sequence=733 RECID=357 STAMP=741984111
    input archived log thread=1 sequence=734 RECID=358 STAMP=741984159
    input archived log thread=1 sequence=735 RECID=359 STAMP=741984204
    input archived log thread=1 sequence=736 RECID=360 STAMP=741984225
    input archived log thread=1 sequence=737 RECID=361 STAMP=741984255
    input archived log thread=1 sequence=738 RECID=362 STAMP=741984271
    input archived log thread=1 sequence=739 RECID=363 STAMP=742040853
    input archived log thread=1 sequence=740 RECID=364 STAMP=742040927
    input archived log thread=1 sequence=741 RECID=365 STAMP=742041046
    input archived log thread=1 sequence=742 RECID=366 STAMP=742041092
    input archived log thread=1 sequence=743 RECID=367 STAMP=742041131
    input archived log thread=1 sequence=744 RECID=368 STAMP=742041172
    input archived log thread=1 sequence=745 RECID=369 STAMP=742041212
    input archived log thread=1 sequence=746 RECID=370 STAMP=742041436
    input archived log thread=1 sequence=747 RECID=371 STAMP=742041595
    input archived log thread=1 sequence=748 RECID=372 STAMP=742041761
    channel ORA_DISK_1: starting piece 1 at 02-FEB-11
    channel ORA_DISK_1: finished piece 1 at 02-FEB-11
    piece handle=D:\APP\ARCHBAKUP\FEB3_40_742041762_18M3LA52_1_1.BKP tag=TAG20110202
    T104241 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:56
    channel ORA_DISK_1: deleting archived log(s)
    archived log file name=D:\APP\ARCH\ARC00731_0740337093.001 RECID=355 STAMP=74198
    4037
    archived log file name=D:\APP\ARCH\ARC00732_0740337093.001 RECID=356 STAMP=74198
    4043
    archived log file name=D:\APP\ARCH\ARC00733_0740337093.001 RECID=357 STAMP=74198
    4111
    archived log file name=D:\APP\ARCH\ARC00734_0740337093.001 RECID=358 STAMP=74198
    4159
    archived log file name=D:\APP\ARCH\ARC00735_0740337093.001 RECID=359 STAMP=74198
    4204
    archived log file name=D:\APP\ARCH\ARC00736_0740337093.001 RECID=360 STAMP=74198
    4225
    archived log file name=D:\APP\ARCH\ARC00737_0740337093.001 RECID=361 STAMP=74198
    4255
    archived log file name=D:\APP\ARCH\ARC00738_0740337093.001 RECID=362 STAMP=74198
    4271
    archived log file name=D:\APP\ARCH\ARC00739_0740337093.001 RECID=363 STAMP=74204
    0853
    RMAN-08138: WARNING: archived log not deleted - must create more backups
    archived log file name=D:\APP\ARCH\ARC00740_0740337093.001 thread=1 sequence=740
    RMAN-08138: WARNING: archived log not deleted - must create more backups
    archived log file name=D:\APP\ARCH\ARC00741_0740337093.001 thread=1 sequence=741
    RMAN-08138: WARNING: archived log not deleted - must create more backups
    archived log file name=D:\APP\ARCH\ARC00742_0740337093.001 thread=1 sequence=742
    RMAN-08138: WARNING: archived log not deleted - must create more backups
    archived log file name=D:\APP\ARCH\ARC00743_0740337093.001 thread=1 sequence=743
    RMAN-08138: WARNING: archived log not deleted - must create more backups
    archived log file name=D:\APP\ARCH\ARC00744_0740337093.001 thread=1 sequence=744
    RMAN-08138: WARNING: archived log not deleted - must create more backups
    archived log file name=D:\APP\ARCH\ARC00745_0740337093.001 thread=1 sequence=745
    RMAN-08138: WARNING: archived log not deleted - must create more backups
    archived log file name=D:\APP\ARCH\ARC00746_0740337093.001 thread=1 sequence=746
    RMAN-08138: WARNING: archived log not deleted - must create more backups
    archived log file name=D:\APP\ARCH\ARC00747_0740337093.001 thread=1 sequence=747
    RMAN-08138: WARNING: archived log not deleted - must create more backups
    archived log file name=D:\APP\ARCH\ARC00748_0740337093.001 thread=1 sequence=748
    Finished backup at 02-FEB-11
    Starting Control File and SPFILE Autobackup at 02-FEB-11
    piece handle=D:\APP\ANSARI.DILSHAD\FLASH_RECOVERY_AREA\ORCL\AUTOBACKUP\2011_02_0
    2\O1_MF_S_742041824_6NKT0H4Y_.BKP comment=NONE
    Finished Control File and SPFILE Autobackup at 02-FEB-11
    so why rman not deleting the backup.....
    thanks....

    HI
    thnks for usefull comment but i m using 11.1.0.6.0
    RMAN> show all
    2> ;
    RMAN configuration parameters for database with db_unique_name ORCL are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BZIP2'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO BACKED UP 2 TIMES TO DISK; ----->bay be this one is creating issue ..any guess...
    and also i think whn we take the backup of archived log on the same disk we need not to allocate channel...(.correct me here) and i am taking the backup on the same existig disk..
    regards

  • Why account assignment is not deleted when push "Order as Direct Material"?

    Hi Gurus,
    I have a problem with shopping carts (SC) of stock items:
    1.- I add 5 items.
    2.- I push "Order as Direct Material" button for 3 items only.
    3.- I push "Hold" button to set SC with held status.
    4.- I modify the SC and push "Order as Direct Material" button for 2 items missing.
    5.- I order the SC.
    One of the effects that it has the "Order as Direct Material" button is that it deletes the account assignment because the items will use to create a PO stock.
    But for the last 2 items (number 4.-) the account assignment is not deleted.
    This is causing that the PO's have error: "Invalid tax code".
    Somebody can say to me why is not deleting the account assignment for items previously hold?
    My systems are:
    SRM 4.0 (SRM_SERVER 500) level 8
    R/3 4.7 (SAP_APPL 470) level 24

    Juan Alonso Valenzuela Rodríguez wrote:
    > Hi Gurus,
    >
    > I have a problem with shopping carts (SC) of stock items:
    >
    > 1.- I add 5 items. -- O.K - Assumed that you have 5 items added
    > 2.- I push "Order as Direct Material" button for 3 items only.O.K.You selected as ORDER as direct only for 3 rd item
    > 3.- I push "Hold" button to set SC with held status.- O.K. now HOLD the shopping cart
    > 4.- I modify the SC and push "Order as Direct Material" button for 2 items missing.- Now you went to 2 nd items and ORDER as direct
    > 5.- I order the SC.but this 2 nd item account data was not removed though you selected as ORDER as direct-
    check item data what is stored here DP ? if account assignment not cleared it could be a bug. but you need to convince them to get a correction note.
    >
    > One of the effects that it has the "Order as Direct Material" button is that it deletes the account assignment because the items will use to create a PO stock.
    >
    > But for the last 2 items (number 4.-) the account assignment is not deleted.
    >
    > This is causing that the PO's have error: "Invalid tax code".
    >
    > Somebody can say to me why is not deleting the account assignment for items previously hold?
    >
    > My systems are:
    > SRM 4.0 (SRM_SERVER 500) level 8
    > R/3 4.7 (SAP_APPL 470) level 24

  • Process Chain failed at Delete PSA event level

    HI Every one,
    I am monitoring process chains, which are running on daily basis.
    I have one <b>Delete PSA</b> process chain, this chain contains only two events
    1. Start Event 2. Delete from PSA.
    Process chain failed at<i> Deleted from PSA</i> event level.
    Below is the error message I got from the process chain screen.
    "Data inconsistency in /bic/b0000231000 table,partition was not deleted"
    "Delete request REQU_4353ACARKJNY70Z5F11 from PSA 8ZMMOM...."
    Please help me by giving possible reasons for this error message and solution for this problem.
    Thanks  in advance.
    Regards,
    Narayana K.

    hi,
    Are you deleting the PSA requests using abap program?
    Regards,
    Vijay

  • When I sync my iPod to my MacBook through iTunes new events do not show up and old events are not deleted. I am using Snow Leopard  and not iSync.

    I am using Snow Leopard on a MacBook. I have an iPod touch 3G. I do not use iSync it Mobile Me. When I sync my iPod through iTunes new events on my iPod do not show up on my Mac and old events do not delete. I have read help instructions that include deleting the data on the iPod. The iPod has the correct data and the Mac does not so I have not followed those instructions. I need help as the only reason I bought the Mac was to be able to sync, back up, view and print my calendar. Currently it is useless. If only Apple could have learned from the elegance of the Palm software.

    Start here:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • Can not delete Twitter mentions from the Hub

    Can not delete Twitter mentions from the Hub. When I delete, they reappear in a few minutes.

    I had the same problem,so i just deleted Twitter altogethet. Like was said before it must be bug among many they seem to have,including password compromises

  • IPhoto is not deleting my photo and freezes. Please help.

    I updated my iPhoto and now I am organizing and deleting some photos however it does not delete.
    I tried cutting it and it went to trash in iPhoto, and tried clearing the trash bin and it does not do anything.
    I also tried in the General tab to delete a photo and it freezes.
    It must be a bug on the latest update.
    Any thoughts?

    Oppps. just cheked and open the program while online and it finally worked.

  • Voice memos do not delete (1 hr of recordings)!

    Where I find these "undeleted" voice memos.  When I connect iPhone, itunes opens and on the top right I click iPhone. There are 10 tabs in total (Summary - Info - Apps - Tones - Music - Movies - TV Shows - Books - Photos - On This iPhone). I click On This iPhone.  On the far left side, it lists from top to bottom Music - Movies - Tones - All of my playlists.  The last one lists Voice Memo.  I click on Voice Memo.  I find 10 messages from June and July 2012, which I have deleted off of my iphone AND itunes.  I want to delete these 10 voice memos.  They are NOT on iPhone or iTunes.  I tried searching through computer, but nothing is found. 
    So why not delete them now? I physically can't.  I right click on the voice memo and there is no option to Copy, Paste, DELETE file.  It only gives the option of playing the music.  It is easier to see what I am saying so I am attaching a snapshot.  Notice that the voice memos are on my iphone, but not in itunes.  I looked all over itunes and there is not one voice memo.  Also, under the Music tab, include voice memos is not checked.

    try this one.
    https://discussions.apple.com/message/12383985#12383985

  • On iPhone 5s, I cannot see more than 11 messages.  I have NOT deleted older ones and need to view them.  How?  Scrolling in the list of 11 does not help.

    On iPhone 5s, when I click on "Messages" I can only view eleven when I scroll.  I need to view the older ones which I have NOT deleted.  How can I do that, please?

    You need the version of iPhoto that you wan tot use installed and then follow the IPLM directions
    http://www.fatcatsoftware.com/iplm/Help/downgrading%20a%20library%20to%20an%20ea rlier%20version%20of%20iphoto.html
    Downgrading a library to an earlier version of iPhoto
    If you have a library from a newer version of iPhoto that you simply want "downgrade" to an older version of iPhoto, the easiest way to do that is with the "Rebuild Library" command. You will want to be running iPhoto Library Manager on the machine that has the older version of iPhoto you want to convert the library to. This will create a new library and import the entire contents of the original library into the new one using the older version of iPhoto. As with any rebuild, there are some items that will not be included (most notably, hidden photos, books, calendars, and slideshows), but if you have none of these items or don't mind losing them in the downgrading process, then this is a decent option for converting a library to an older version.
    LN

  • IMAP option to not delete from server OR recommend alternate mail app?

    Using POP in Windows computer and IMAP on iphone.
    In the iphone, POP has the opton to "delete from server: never"
    There seems no way to accomplish this in the stock mail app when using IMAP ?
    Using POP on the iphone is not an option due to the longstanding issue of the Apple mail apps not sending a  proper termination signal back. The mailbox remains locked until the server times it out for inactivity and cleans up the stale lock after 10 minutes. The result is "wrong password" on the computer if it then tries to retrieve during that period. It's a feature of POP by design to use a lock to prevent corruption caused by simultaneous access to the mailbox. BUT, BB,Android,Windows all handle this correctly so that their POP transaction (and the mailbox lock) only lasts seconds! Only ever see this persistent lock with Apple mail clients
    The user likes to keep his phone inbox clean, he will delete messages as he deals with them as well as messages he is postponing to deal with on computer later.
    Moving messages to a 'later' folder won't help, as that 'later' folder will not be available thru POP (for the computer)
    They also don't want to use IMAP on the computer because they don't want their communications stored on the server any longer than necessary.
    Can anyone recommend:
    - Windows IMAP client which downloads all and keeps a local copy of inbox which does not synch with server inbox.
    - Alternate mail app for iphone which allows "delete from device only // never delete from server "

    That's not how IMAP works. If you want to keep the inbox clean, but not delete the messages, create folders and move the messages into them for later review.

  • IPhone 5 can not delete emails. Will not move to trash folder or empty trash

    iPhone 5, I can get mai. I can send mail. I can not delete mail. If i click to send the read mail to trash folder... error ca not move mail to trash folder.
    I can move read mail to the trash folder, but can not empty the folder...
    HELP

    Read this thread https://discussions.apple.com/message/5616151#5616151

  • TS4153 few files and folder are not deleting from trash folder

    i am trying to delete all files and folders from the trash folder by clicking  empty securely, but its not deleteing the files anf folder. please suggest how to clean the trash folder by deleteing all the deleted files and folder.

    Securely deleting items in Trash writes Zeros over the data so that it is completely eradicated.
    This will take quit a long time depending on how much data you have in Trash.
    Unless there is data that needs to be rendered unrecoverable in the Trash, you could choose to just delete the files and folders with out the secure option.
    Once you have Emptied the Trash unsecurely you can always use disk utility to Securely Erase Free Space on the Drive.

Maybe you are looking for

  • HTMLDB -SSO- Partner application

    Hi, I have installed a database 10g/HTMLDB 1.5 and iAS 10g on two different boxes. Refered & successfully completed the steps from http://www.oracle.com/technology/products/database/htmldb/howtos/sso_partner_app.html to Configure an HTML DB Applicati

  • FAFSA after Mountain Lion

    FAFSA is not working after installing Mountain Lion, tells me I have an incompatible browser. So I download ALL of the "compatible" browsers with the same result. Anyone know a work around?

  • Master-Slave design Implementation

    Hi, I am trying to design a master-slave system with the following attributes: 1. Linux Master box having all the Java code. 2. At least two Windows XP Professional Slave boxes (no Java code on any of these) Front end screens on Master would contain

  • How do I remove 33 Virtual Machine Manager Connectors in SCOM?

    I am not even making that up. Somehow I have 33 Virtual Machine Manager connectors in SCOM when I look at Internal Connectors. If I delete them all using the SCOM PowerShell cmdlets, they will disappear for a day or so, and then they all come back. 

  • Configuring sticky cookie in CSS-11500 for BEA Weblogic servers

    Hi, I'm configuring a couple of CSS11503 to load balance traffic for Weblogic web servers. I'm trying to apply persintence based on cookies. By default, Weblogic server generates cookies with the following format: JSESSIONID=sessionid!primary_server_