Control File Missing Temp file

Dear All,
I have a problem with my database and receiving errors related to Temp file. I run the following command and got output as:
*select status,name from v$tempfile;*
*Output:*
STATUS NAME
ONLINE 'X:\ORACLE\ORADATA\PROD\TMPPROD02.DBF'
ONLINE 'X:\ORACLE\ORADATA\PROD\TMPPROD03.DBF' I run ALTER DATABASE BACKUP CONTROLFILE TO TRACE; command it generated following output:
I think control file is missing temp file information. Can any one help please?
#     Set #2. RESETLOGS case
# The following commands will create a new control file and use it
# to open the database.
# The contents of online logs will be lost and all backups will
# be invalidated. Use this only if online logs are damaged.
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "PRODUC" RESETLOGS  ARCHIVELOG
--  SET STANDBY TO MAXIMIZE PERFORMANCE
    MAXLOGFILES 32
    MAXLOGMEMBERS 2
    MAXDATAFILES 32
    MAXINSTANCES 16
    MAXLOGHISTORY 7917
LOGFILE
  GROUP 3 'X:\ORACLE\ORADATA\PRODUC\LOGPROD3A.RDO'  SIZE 10M,
  GROUP 4 'X:\ORACLE\ORADATA\PRODUC\LOGPROD4A.RDO'  SIZE 10M,
  GROUP 5 'X:\ORACLE\ORADATA\PRODUC\LOGPROD5A.RDO'  SIZE 10M
-- STANDBY LOGFILE
DATAFILE
  'X:\ORACLE\ORADATA\PRODUC\SYSPROD01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\UNDOPROD01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODCFD01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODCFI01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODPD01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODPI01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODCRD01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODCRI01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODPHD01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODPHL01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODPHI01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODFPD01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODSD01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODAD01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PROD_MON01.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODREPORTINGDATA01',
  'X:\ORACLE\ORADATA\PRODUC\PRODREPORTINGINDX01',
  'X:\ORACLE\ORADATA\PRODUC\PRODCFD02.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODPHL02.DBF',
  'C:\ORACLE\ORA92\DATABASE\FSDFSDFSDFS',
  'X:\ORACLE\ORADATA\PRODUC\PRODREPORTINGDATA02',
  'X:\ORACLE\ORADATA\PRODUC\PRODAD02.DBF',
  'X:\ORACLE\ORADATA\PRODUC\PRODCFD03.DBF',
  'X:\ORACLE\ORADATA\PRODUC\UNDOPROD02.DBF'
CHARACTER SET AL32UTF8
# Recovery is required if any of the datafiles are restored backups,
# or if the last shutdown was not normal or immediate.
RECOVER DATABASE USING BACKUP CONTROLFILE
# Database can now be opened zeroing the online logs.
ALTER DATABASE OPEN RESETLOGS;
# Commands to add tempfiles to temporary tablespaces.
# Online tempfiles have complete space information.
# Other tempfiles may require adjustment.
ALTER TABLESPACE TEMP ADD TEMPFILE 'X:\ORACLE\ORADATA\PRODUC\TMPPROD03.DBF'
     SIZE 1024M REUSE AUTOEXTEND ON NEXT 134217728  MAXSIZE 16383M;
ALTER TABLESPACE TEMP ADD TEMPFILE 'X:\ORACLE\ORADATA\PRODUC\TMPPROD02.DBF'
     SIZE 8192M REUSE AUTOEXTEND ON NEXT 33554432  MAXSIZE 16383M;
# End of tempfile additions.

Please either add a tempfile or else if you have two temporary tablespaces(say temp01 & temp02) with associated tempfiles and let us assume TEMP01 is the default tablespace for the database(by seeing the database_properties view) then please drop the TEMP02 tablespace and re-create it and then make TEMP02 as default tablespace for the database and then drop the TEMP01 tablespace and re-create it and then make it as the default temporary tablespace .. Thats the solution and hope its clear... you can go through following steps :
SQL> select tablespace_name, file_name from dba_temp_files;
SQL> drop tablespace temp02 including contents and datafiles;
SQL> create temporary tablespace temp02 tempfile ''X:\ORACLE\ORADATA\PROD\temp02.tmp' size 16383M;
SQL> alter database default temporary tablespace TEMP02;
SQL> drop tablespace temp01 including contents and datafiles;
SQL> create temporary tablespace temp01 tempfile ''X:\ORACLE\ORADATA\PROD\temp01.tmp' size 16383M;
SQL> alter database default temporary tablespace TEMP01;
Cheers!

Similar Messages

  • When opening a sealed file, are the Autosave-File and Temp-Files encrypted?

    Hi, when opening / editing a sealed file (e.g. a MS Word document), are the Autosave-File and Temp-Files encrypted?

    Hello,
    Yes they are. If they weren't, it would be relatively easy to leak an unsealed version of the file. In older versions of the Desktop IRM opened all files in browser, so theIRM Desktop had to encrypt and copy around these files manually. Nowadays, the IRM Desktop is embedded in the Office applications themselves so we leave the temporary file creation to the application but manage the encryption depending on the nature of the file. So the autosave and temp files (where content may reside) are encrypted, but the lock file (which is only for ownership, not content) is not encrypted for example.
    In fact, the autosave/temp files which are encrypted are actually treated as sealed files, so they contain all the metadata fields you would expect. For example, open a sealed document in Word and set the autosave to every minute and make some changes. wait a minute and you'll see the autosave file (which is a .asd) update automatically (the default location is C:\Documents and Settings\<youruserid>\Application Data\Microsoft\Word\). Make a copy of the file and close Word. If you open the file and Select a Program from a List and choose Word you'll see the file open as a sealed document. If you rename the extension to .sdoc or .sdocx (depending on what the original file was), then you can right click Properties and see the metadata is there too.
    Nicely secure.
    Regards,
    Frank.

  • Compile a zip file or temp file or file in memory

    how can I compile a zip file or temp file or file in memory inside my java program? examples please.
    thanks,

    'compile'?
    What language are you compiling? Does the compiler support leaving the output in memory? If yes then you use Runtime.exec(). If no then you will have to re-write the compiler to support that, presuming you can get the source.
    (Of course I am not sure what good that would do you. You would also have to write some other application to use it once it was in memory, since the OS probably isn't set up to do that.)

  • ITunes Library.itl file, and temp files after Time Machine retrieval

    Hi - I messed up a playlist and got it back fine using Time Machine, but I'm left with temp files as well as iTunes Library.itl and iTunes Library.xml files on my desktop (that's where I placed the needed file for playlist re-import).  Can't delete them, can't move them....what do I do with them?!  Thanks in advance for any guidance.

    <<  Quit iTunes then delete them.  >>
    Thanks, but with iTunes closed, I get this when I try to delete.

  • Reciever File Adapter - Temp File Name Scheme using Variable Substitution

    How can I create a temporary file that uses variable substitution? 
    We are having a problem with files merging when we write files using the "Use Temporary File" setting on the FIle Adapter.  So two independent files are merging into a single file.  We are not using the "Append" setting.
    We would like to use a Temp File Name Scheme that would append the message id onto the temporary file name. 
    Using variable substitution we created a msgid variable.  When added to the temporary file name using %msgid% the temporary file name is created with %msgid% in the name instead of the actual message id.  We put the variable into the "File Name Scheme" as well and the end completed file used the message id in the name.
    Any Ideas?
    Thanks,
    Matt

    HI Matthew,
    Why are you adding the message id into the temporary file??
    I understand that you want the output of the filename to contain message id .. and hence you are using variable substitution for the same.
    Temporary file name will anyways get overwritten by the actual file name (here the actual filename will be using variable substituion).
    So i suggest to achieve your scenario you can add any name in the temporary file and maintain the desired filename you require as output in the variable subsititution.
    Temporary File Name option actually acts as a lock - unlock mechanism from PI side while the file is getting written to the file server so that while PI is writting the file no third party application batch program picks it up.
    I hope this helps.
    Cheers
    Dhwani

  • Windows file share - temp files

    We are currently migrating from Panther Server to Leopard Server.
    Mac file server is all working fine and users are happy.
    We have 2 PC's in the office who will also work from the file server. During testing I noticed that temporary files were being created by the Windows machines. Normally I would expect these temp files to disappear once the PC application had been closed on the client computer. Unfortunately this is not the case here.
    One of the main issues with this is that the temp files are the same file size as the original file. Obviously if this problem is left unchecked I could be left with 100's of MB of temp files all over the place.
    On a file called 'test save.doc', having been opened in Word, amended and saved I would end up with the following files.
    ~$st save
    ~WRD0000.tmp
    ~WRD0001.tmp
    test save
    If anyone can suggest some solutions it would be greatly appreciated.

    Just to add to the fine advice so far, sometimes just toggling the View to Column View or whatever it isn't the back will update it.
    Wonder if this works in Tiger...
    http://www.versiontracker.com/dyn/moreinfo/macosx/24356

  • Psd File On Temp File

    When I Create A New Psd File, That is dont have Large size and primary On A Temp file.
    if i want transfer my file to another pc, can i open file?
    thnaks

    Please read these
    Best practices: Usage | Adobe Community
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    and post a more comprehensive description of the issue and your set-up (version, OS, …).

  • Offline File Sync - Temp File Issues

    I just set up Offline File Sync and I've noticed that temp files (created when saving a file) are in still showing in my local folder. When I try to open one of these files, it says that it doesn't exist on the network location.
    It looks like the file is being created and then removed on the network but the local cache doesn't remove the copy properly. I've tried deleting the files as well as deleting temporary files via the Sync Center but neither work.
    I'd like to solve this so that the file list doesn't become crazy full with many saves from Excel files.
    Can someone please help?

    As this thread has been quiet for a while, we assume that the issue has been resolved. At this time, we will mark it as ‘Answered’ as the previous
    steps should be helpful for many similar scenarios.  <o:p></o:p>
    If the issue still persists and you want to return to this question, please reply this post directly so we will be notified to follow it up. You
    can also choose to unmark the answer as you wish.  <o:p></o:p>
    In addition, we’d love to hear your feedback about the solution. By sharing your experience you can help other community members facing similar
    problems.  <o:p></o:p>
    Thanks!<o:p></o:p>
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • Redirect I/O to same file without temp file [SOLVED]

    Is there a simple way to do the following?
    command < file > file.tmp; mv file.tmp file
    Basically, I'm looking for a command-agnostic "< file > file" that doesn't just truncate file.
    I'm using zsh, if that matters.
    Last edited by muflax (2009-03-10 01:36:24)

    Hi, i just uploaded a PKGBUILD[#1] for "rewrite" tool.
    Usage: rewrite [-v] [-r "s/old/new/"] files.. "cat|cat"
    -v verbose output (show compression ratios)
    s/old/new/ sed expression for renaming files
    files.. input file names to rewrite through pipeline
    "cat|cat" pipeline expression to rewrite file through
    This is a simple command for this purpose For example:
    For example:
    $ rewrite README "grep -v the"
    [#1] http://aur.archlinux.org/packages.php?ID=24530
    Last edited by djgera (2009-03-09 22:30:53)

  • Bookmark file missing, backup files empty, can't import IE favorites

    I noticed that my bookmarks had disappeared. I checked my profile and the bookmarks file is missing. The remaining profile information and files appear to be intact, including history. There are a number of bookmarkbackup (JSON) files but they contain no data. I have tried to import IE11 favorites directly, and via the export to HTML/import to FF method, but nothing happens. I think I have exhausted all suggested remedies except deleting and rebuilding the places.sqlite file. I found a log file under the profile Allusers that indicated there was a maintenanceservice-install on Nov. 26, which may have been when my bookmarks disappeared.
    I'm running Windows 7 and FF 25.0.1.
    Suggestions? Thanks in advance!

    I do have three previous versions of places.sqlite. Curiously, they were all 10MB and were created Nov. 26 at the exact same time. The files were modified Nov. 27, at 3:08 pm, 10:31 pm and 10:39 pm, the last two while I was at home in bed. I can't figure out why my PC would be making restore points so late in the evening, unless it is related to my automated backups which are scheduled to begin at 9 pm. Is there a Windows log file that may be able to tell me what happened Nov. 26/27?
    Speaking of backups, the bookmark file is also missing from my external hard "backup" drive. I don't understand this because my backup profile is set so as to leave files on the external drive even if they have been deleted from the PC hard drive.
    Are there any downsides to restoring one of the places.sqlite files?

  • Success with iTunes but a problem with a temp file

    Further to my recent post, I have now had some form of success with opening iTunes but I can only do this if my external hard drive (which has the remnants of some file left).
    I have tried to copy and paste the files relating to iTunes but for some reason, I am unable to even access a file labelled "TEMP FILE".
    Can anybody help or indeed send via email a copy of the file as I dont think there is anything in it. I know that when I have my external drive repaired I will not be able to access iTunes.
    PLEASE HELP !!!!!!!

    iTunes cannot run because it has discovered a problem with your audio configuration.
    That one is most commonly caused by a problem with your QuickTime. (iTunes uses QuickTime for audio and video playback.)
    The following document may be of some assistance:
    iTunes 7 for Windows: iTunes has detected an audio configuration problem

  • How to find the temp files

    I allow the user to upload a folder by zipping it. When they upload art files, some temp files are created and it is being uploaded. So i need to restrict the temp files. Is there anyway to identify the temp files created. For eg: Temp files are created when EPS file is saved. I need to allow the user to upload only the EPS file and not the temp files (supportive files).
    Thanks,
    Thanuja.

    hi thanu,
    i am also searching for file upload restriction to certain type extensions.
    but nobody in forum answering..
    still my query having no reply , not even 1 reply.
    i am using apache commons file upload

  • Loads Of Temp Files

    I seem to be getting loads of temp files created by itunes. I have run a cleaning pass with onyx but they keep coming back. Help!
    Paul

    I get iTunes temp files in the iTunes folder (not the iTunes Music folder) every now and again. They are labled iTunes database files in the Get Info box. I just checked and see I have some from last August. They are all 4.3 mb. They are named "Temp File", "Temp File 1", "Temp File 2", etc. I have simply deleted them in the past.
    I have never noted what was being done when they were created because I only discover they are there when I look at the iTunes folder in Finder for some reason.

  • How to move temp file, redo log to different drive oracle 9i

    Hi ,
    I am using oracle 9i
    by mistakenly, i have instaled oracle installable on system drive i mean c: drive.I have installed teh database on D: drive.
    For tunning perfomance i would like to move the redlog files and temp files to different drive.
    Could you please explain me the step by step procedure how to do this
    Thanks
    AITS

    Very easy -
    Create a new temp tablespace with the files on the drive you want, make it the default temp tablespace for any users/schemas you have created, then drop the old temp tablespace including datafiles.
    For the redo logs, create new groups, again with the logfiles on the dirves you want them on, cycle out of the old ones with "alter system switch logfile;" then drop them.

  • TA27400 iTunes: Multiple temp files after iTunes Match subscription

    Since I subscribed the iTunes Match service I have a very annoying issue: a lot of temp files on my iTunes folder.
    My library is pretty big (24989 songs) and my temp file iTunes Music Library.xml is 42mb.
    Well, I never counted how many but I think that in one week I have to delete more than 100 temp files, all located in the iTunes folder and with the same size of the iTunes Music Library.xml (42mb).
    That's really annoying and give me also another problem with Native Instrument Traktor, sometimes the program can't recognize the Itunes Library file.
    That's really bad for a professional DJ.
    Another problem, the HD was corrupted, two times in 2 weeks, never happened before.
    It seems that iTunes Match service still have some problems or maybe is just my setup?
    I'm confused and worried.

    I see one temp file (named Temp File.tmp) in my iTunes folder (where the iTunes Music Library.xml file is located).  It is about one-third the size of the iTunes Music Library.xml file (pretty small).  Never noticed it there before.  Also, in my case at least, I don't think it has anything to do with iTunes Match, because it has a modified date of 12/30/2011.
    > Another problem, the HD was corrupted, two times in 2 weeks, never happened before.
    That's not because of iTunes Match...  Back up data, reformat drive, restore data.  If it happens again soon, the hard drive is probably starting to fail (bad sectors).

Maybe you are looking for

  • Do they send the ipod 5th generation to Puerto Rico?

    Do they send the ipod 5th generation to Puerto Rico? I want to buy the new Ipod but i don't know if the Apple store sends it here. Help!

  • A swf loader bug?

    It looks like I may have found a bug in the swf loader.  Before I submit this problem I want to make sure there is not something I'm missing in my code. I wrote this class to load a tutorial when the user first launches a sub application in a project

  • SCOM health Check report

    please suggest me how to generate SCOM health check report and automation for the same. I am using scom 2007 R2. And need all windows servers health check report from scom as well...?

  • Nokia n97 photo album problem.

    Ok I just notice that not all my pictures that I had taken is loaded in the photo album. But when i downloaded the photo viwer on ovi all the photos I had taken with the n97 is on there. But on the Nokia photo viewer its missing some pictures. Does a

  • Where is the menu bar, how do i put sites on it?

    Not computer literate here. Recently Firefox wiped out everything. I used to be able to see and go to my favorite sites (located just above the page. I would like that back, how do I do it?