I cannot to move datafiles on windows

Hi all,
I'm using Oracle 10.2.0.3 on Windows 2000 Professional.
I need to move datafiles to other disk to save space.
So I take the tablespace to offline. But when I try to
move a datafile, I got the windows message: File in use.
Why I got this if the tablespace is offline?
The database is in archivelog mode and it is open.
Thank you very much!!!!

Very strange.
I take the tablespace to offline, I copy the datafile to other location, I perform the alter database rename file,
I take the tablespace to online, but the old datafile on old disk cannot be removed because the windows returns that the file is in use. I did understand.
The dictionary of oracle is OK, the location of datafile is OK in dictionary, but....
Thanks again!!!

Similar Messages

  • Planning to move my datafile from windows server 2003 to windows XP

    planning to move my datafiles from windows server 2003 to windows XP
    database 10g
    Is it possible to follow below the steps for above migration
    =====================================-
    This is my steps( migrated from windows Xp to windows XP)
    Moving oracle Datafile from one server A to B (instance not running) (cold backup)
    In server a (cold backup of datafile)
    SQL> alter database backup controlfile to trace
    Go to udump check the trace file copy these lines
    CREATE CONTROLFILE REUSE DATABASE "O10G1" NORESETLOGS NOARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    MAXINSTANCES 8
    MAXLOGHISTORY 454
    LOGFILE
    GROUP 1 'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\REDO01.LOG' SIZE 10M,
    GROUP 2 'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\REDO02.LOG' SIZE 10M,
    GROUP 3 'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\REDO03.LOG' SIZE 10M
    -- STANDBY LOGFILE
    DATAFILE
    'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\SYSTEM01.DBF',
    'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\UNDOTBS01.DBF',
    'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\SYSAUX01.DBF',
    'E:\ORACLE2\PRODUCT\10.1.0\ORADATA\O10G1\USERS01.DBF'
    CHARACTER SET WE8MSWIN1252
    Change the new database name “jee” and REUSE replaced by SET and NORESTLOGS replaced by RESTLOGS above lines.
    Save as C1.sql
    Stop the oracle instance service in source ( server A)
    Copy all the datafile and redlog file put into server B( any folder)
    Copy the init.ora file from source and edit
    Change the db_name and location of the controlfile
    SERVER B
    Create the oracle instance using ORADIM
    Start the service
    C:\ set oracle_sid=instance name
    C:\>set oracle_sid=jeeno1
    C:\>sqlplus /nolog
    SQL*Plus: Release 10.1.0.2.0 - Production on Tue Apr
    11 06:44:28 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> connect / as sysdba;
    Connected to an idle instance.
    SQL> startup nomount
    pfile='C:\oracle\product\10.1.0\admin\jeeno\pfile\jeenoinit.ora'
    ORACLE instance started.
    Total System Global Area 171966464 bytes
    Fixed Size 787988 bytes
    Variable Size 145750508 bytes
    Database Buffers 25165824 bytes
    Redo Buffers 262144 bytes
    SQL> CREATE CONTROLFILE set DATABASE "jeeno1"
    RESETLOGS NOARCHIVELOG
    2 MAXLOGFILES 16
    3 MAXLOGMEMBERS 3
    4 MAXDATAFILES 100
    5 MAXINSTANCES 8
    6 MAXLOGHISTORY 454
    7 LOGFILE
    8 GROUP 1
    'C:\ORACLE\PRODUCT\10.1.0\ORADATA\jeeno\REDO01.LOG'
    SIZE 10M,
    9 GROUP 2
    'C:\ORACLE\PRODUCT\10.1.0\ORADATA\jeeno\REDO02.LOG'
    SIZE 10M,
    10 GROUP 3
    'C:\ORACLE\PRODUCT\10.1.0\ORADATA\jeeno\REDO03.LOG'
    SIZE 10M
    11 -- STANDBY LOGFILE
    12 DATAFILE
    13
    'C:\ORACLE\PRODUCT\10.1.0\ORADATA\jeeno\SYSTEM01.DBF',
    14
    'C:\ORACLE\PRODUCT\10.1.0\ORADATA\jeeno\UNDOTBS01.DBF',
    15
    'C:\ORACLE\PRODUCT\10.1.0\ORADATA\jeeno\SYSAUX01.DBF',
    16
    'C:\ORACLE\PRODUCT\10.1.0\ORADATA\jeeno\USERS01.DBF'
    17 CHARACTER SET WE8MSWIN1252
    18 ;
    Control file created.
    SQL> alter database open resetlogs;
    Database altered

    one more thing u can also rename ur database by using nid utility ,So u have no need to recreate the controlfile for changing the name of ur database.just restore all files from primary to new server ,create new service by oradim ,start the instance and then use NID utility.
    Thanks
    Kuljeet

  • Cannot move photoshop CS6 window around on screen, it is stuck in one spot

    cannot move photoshop CS6 window around on screen, it is stuck in one spot

    Hi there,
    Thanks for your response. I have since fixed the problem by unplugging my
    external monitor and restarting my computer.
    Best,
    -Jake
    On Fri, Jun 13, 2014 at 3:21 AM, c.pfaffenbichler <[email protected]>

  • I cannot move tabs on Windows 7 with firefox 4.0 RTM.

    I cannot move tabs on Windows 7 with firefox 4.0 RTM.

    Flash player forum here -- Flash Player
    When you post, please be sure to include the full details of the message including any exact file name and error message. (A screen shot may help you - use the CAMERA icon).

  • Move only datafile from windows to linux

    Hi all,
    I have rdbms 8.1.7 with its datafiles on windows.
    I want to keep rdbms on windows platform and move datafiles (dbfiles, controlfiles, redlogs, ecc...) on a linux cluster platform with nfs for communication with windows machine.
    Is it possibile?
    Is it enough move datafiles and then make ALTER DATABASE RENAME FILE 'C:\...' TO '/app/...' or I have to do else?
    Thanks in advance
    Best regards
    Alessandro

    Hi,
    yes, that is fine but follow the steps;-
    SQL> shutdown immediate
    at System level or OS Level
    SQL> mv /old path/datafile.dbf /newlocations/datafile.dbf
    SQL> startup mount
    SQL> alter database rename file '/old path/datafile.dbf ' to '/newlocations/datafile.dbf'
    SQL> alter database open;
    SQL> exit
    I had never tested such thing. check whether oracle user had network accesss correctly or not. otherwise you may stuck at while accessig the datafile.
    - Pavan Kumar N

  • Cannot open MOVs in Premiere on Windows (dvh2?)

    Hi,
    I have some troubles on opening some MOV files made in Mac on my PC with Windows (win 7).
    I think the mov files are in "dvh2" codec, but havent find anything about this codec.
    Is there any way to open this mov files in windows?

    I have NOT used those products, I only forward due to other mentions
    Convert http://premierepro.wikia.com/wiki/FAQ:How_do_I_convert_my_files%3F
    Edit Vob http://premierepro.wikia.com/wiki/FAQ:How_do_I_import_VOB_files_/_edit_a_DVD%3F
    $99 http://www.corel.com/servlet/Satellite/us/en/Product/1175714228541#tabview=tab0
    $99 http://www.womble.com/products/mvw.html
    $80 http://www.nchsoftware.com/prism/index.html
    $75 http://www.videoredo.com/en/index.htm
    $75 http://www.magix.com/us/movie-edit-pro/
    $70 http://www.nchsoftware.com/prism/index.html Converter
    $40 http://www.daniusoft.com/dvd-ripper.html#135
    $40 http://www.deskshare.com/dmc.aspx Digital Media Converter
    $00 http://www.squared5.com/ MPEG Streamclip Converter
    $00 http://www.erightsoft.com/SUPER.html Multi-Converter
    $00 http://www.virtualdub.org/ Mpeg to AVI Converter

  • When window is minimized, I cannot move aroung the window on my desktop

    I had was able to move around foxfire window when minimized when I first installed foxfire

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 n above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • Cannot embed MOV file in Acrobat

    I hope this is the right forum for my question - it's the closest one I could find...
    My problem is that I get an error message when I try to embad a MOV file into a PDF using Acrobat 9. This has worked in the past. Now suddenly I'm being told the annotation cannot take place either because it can't find the file (but surely it can find it: it was among the items present to me to choose from), or because "the URL is unreachable (make sure the proxy server settings are correct)".
    I should mention that these 'MOV' files are actually JPGs that I want to open in a floating window, and that I simply renamed from JPG to MOV so Acrobat's MOV-playing code would kick in. This is a technique I have used successfully in the past - unless the past ones were GIFs (I forgot which) - and furthermore, one can simply double-click these 'MOV' files in Windows Explorer and Quicktime opens them with no problem.
    (As to the hypothesis that previous successes were with were with GIFs instead of JPGs. But I just tried that, and Acrobat perceived right away that the MIME types were different and didn't even initialize the authoring system. With JPGs re-named to MOVs, it gets past there, and only complains when you specify the parms (e.g. No Poster, etc.) and it tries to load it. With these renamed GIFs just as with the renamed JPGs, if you simply double-click the 'MOV' in Windows Explorer, Qucktime opens it with no problem.)
    As to the 'proxy' issue, I do have a proxy set in my browser (Foxfire), but I have disabled it by chosing 'No proxy' in Options. Just to be sure, I re-booted, brought up Foxfire, and confirmed that it was still set to 'No proxy'. But I still get the error. What could it be?
    Any suggestions would be greatly appreciated!
    - Peyton

    My earlier JPG > MOV solution still works beautifully, even in the latest versions of Acrobat Reader, but – as I have now sadly discovered – it leads to errors in the production of new examples with the current version of Acrobat, and even to a space-wasting and visually ugly result with the latest versions of Vegas Video, which is the app I used earlier to convert my JPGs to MOV in the first place. But thank you for your SWF solution, since that will at least enable me to open the graphic images in current versions of Acro Reader, despite the fact I will now have to include within the SWF itself a message saying ‘to close this window, click in the upper right hand corner of its border’ or some other tacky solution, such as a separate button within the page, departing from the style of all the other RMAs in the PDFs I’ve already prepared. Also, if I want to avoid the (minor, but ugly) letterboxing that occurs when the SWF windows are re-sized or moved, I’ll have to open them via the new interface with its compulsory icon, since that letterboxing occurs only when the SWFs were embedded in legacy mode.
    (The fact that the letterboxing occurs only when the SWFs were embedded in legacy mode tells me that that little bug probably belongs to Adobe, not to the app creating the SWFs. Another bug that must belong to Adobe for the same reason is the fact that the Get From Media button does not work when the SWFs were added in legacy mode, but does work if one embeds through the new interface. Yet a THIRD problem – or at a least poor design given how I want things to work – is that the SWF windows can be dragged out of the confines of the Acrobat window if added in legacy mode, although not if added via the new interface. It seems likely that different sets of Adobe programmers were working on the new vs. legacy interfaces. I’m sorry to have to say these things since you seem to want to defend Adobe, but these are the facts as I see them.)
    Thanks also for the heads-up you provided as to what I’ll have to contend with in the future. In view of the huge workload I already have on this project, however, instead of trying switch to an entirely different platform, I’m wondering if my best strategy might not be to just continue on my present course using Acrobat, and count on Adobe to resolve these issues in future versions. (Yes, I realize that could be a risky bet.) Let me ask, though, whether Flash or some other product (Flex? AIR?) would meet my needs anyway. Its essential that whatever product I choose have the ability for users to view videos frame by frame, and not slap the play-stop-pause-etc buttons over my sub-titles.
    Also, while I’ve written only one app in Flash (a little cartoon clock that worked) - and that was 20 years ago - my impression is that it’s mainly for video. Two properties of my current project seem to make a product like Acrobat much more appropriate: (a) It’s basically TEXT – what I’m working on are research papers and an e-book in linguistics, in which the audio and video clips are examples to prove or illustrate points being argued for in paragraphs of connected prose, to be understood in relation to the full document, as in any article or book; and (b) there are often several of the media clips relating to a particular example grouped closely together: putting them all in the page would make for a much longer result that’s harder for a reader to follow when the clips span possibly several pages for each example. And there will be many, many examples. You can get a sense of what the project is about by having a look at www.vincentasl.info. But that website belongs to an early phase of the project, before it became necessary to add subtitles to all the sign language videos, and include lots more media clips for each example, in addition to graphs showing the rising and falling pitch for some of the audio examples (the situation with the SWF files we have been discussing).  If you’d like to see a sample of the latter, I’d be happy to send one to your e-mail address, as I don’t see a way to attach PDFs to posts in this forum.
    Peyton

  • ORA-03264: cannot drop offline datafile of locally managed tablespace

    Hi list
    A datafile was acidentally created on filesystem in one node of two nodes RAC.
    After that the filesystem on which the datafile was created was out of space because of automatic control file backup and sysadmin move this datafile to another device. And before this action RMAN backup stopped work.
    Now we replace the datafile to the original location, but it stay offline and recover status, and we cant bring them online because the customer dont have necessary archive logs to recover this datafile. RMAN backup is now working. But now we need to create a DataGuard on a third server and want to drop this datafile.
    This datafile dont have any data segment and stay in most critical tablespace of the customer application which have more datafiles. This datafile in question isnt the first datafile of the tablespace.
    SQL> select file#, status from v$datafile where name='/oracle/product/db/ars/dbs/arsystem.old';
    FILE# STATUS
    21 RECOVER
    SQL> select file#, status from v$datafile_header where name='/oracle/product/db/ars/dbs/arsystem.old';
    FILE# STATUS
    21 OFFLINE
    How can I drop this datafile?
    Thanks
    Cristiano

    Review this metalink note, what to do:
    How to 'DROP' a Datafile from a Tablespace
    Doc ID:111316.1
    If you cannot recover the datafile, you have to export the 'rest' of the tablespace (after statement 'alter database datafile '/oracle/product/db/ars/dbs/arsystem.old' offline drop;' was successfully issued). Afterwards drop the tablespace,recreate it and import the data).
    Werner

  • HOW TO MOVE DATAFILES FROM ONE  DISK RAID TO ANOTHER:PLZ HELP ME  :=)

    Hi all,
    For Tunning reasons : perform The I/O from the Instance to datafiles (database). I decide to move some Index datafiles from One DISK RAID to another.
    I'm on Linux Redhat Server and Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    My database 's On PRODUCTION and there 're many web applications updating some databases tables and for sure using Index tablespace. I preapared yet my procedure to move datafiles but I'm posting this to be sure that I will not have BAD EFFECTS on my Oracle database.
    So I plan without SHUTDOWN MY DATABASE to these steps :
    /*Step1 : */
    ALTER TABLESPACE INDX OFFLINE ;
    /*Step 2 : move datafiles to new disk raid*/
    mv /u01/oraindx/DB01/indx01_05.dbf /u01/oraindx2/DB01/indx01_05.dbf
    mv /u01/oraindx/DB01/indx01_06.dbf /u01/oraindx2/DB01/indx01_06.dbf
    mv /u01/oraindx/DB01/indx01_07.dbf /u01/oraindx2/DB01/indx01_07.dbf
    /*Step 3 : */
    ALTER TABLESPACE INDX RENAME DATAFILE '/u01/oraindx/DB01/indx01_05.dbf' TO '/u01/oraindx2/DB01/indx01_05.dbf';
    ALTER TABLESPACE INDX RENAME DATAFILE '/u01/oraindx/DB01/indx01_06.dbf' TO '/u01/oraindx2/DB01/indx01_06.dbf';
    ALTER TABLESPACE INDX RENAME DATAFILE '/u01/oraindx/DB01/indx01_07.dbf' TO '/u01/oraindx2/DB01/indx01_07.dbf';
    /*Step 4 : */
    ALTER TABLESPACE INDX ONLINE ;
    Please verify my procedure and tell me the precautions that I should take care :=)
    regards,

    Werner,
    If this is an active databases (indexes are used),
    you cannot set offline the index tablespace.you can offline it.
    DAB user:
    SQL>create tablespace inds datafile '/oracle/newdb/mydb/inds01.dbf' size 10m;
    Tablespace created.
    Scott user:
    SQL>create table t2 (col1 date, id number) tablespace users;
    Table created.
    SQL>create index t2_ind on t2(id) tablespace inds;
    Index created.
    SQL>insert into t2 values (sysdate,1);
    1 row created.
    SQL>insert into t2 values (sysdate,2);
    1 row created.
    SQL>insert into t2 values (sysdate,10);
    1 row created.
    DBA user:
    SQL>select segment_name,segment_type,tablespace_name
      2  from dba_segments
      3  where owner='SCOTT' and segment_name like 'T2%';
    SEGMENT_NAME                   SEGMENT_TYPE       TABLESPACE_NAME
    T2                             TABLE              USERS
    T2_IND                         INDEX              INDS
    SQL>alter tablespace inds offline;
    Tablespace altered.
    SQL>!mv /oracle/newdb/mydb/inds01.dbf /oracle/newdb/mydb/inds0001.dbf
    SQL>alter tablespace inds rename datafile '/oracle/newdb/mydb/inds01.dbf' to
      2  '/oracle/newdb/mydb/inds0001.dbf';
    Tablespace altered.
    SQL>alter tablespace inds online;
    Tablespace altered.
    scott user:
    SQL>insert into t2 values (sysdate,20);
    1 row created.
    SQL>
    SQL>select * from t2;
    COL1              ID
    22-NOV-07          1
    22-NOV-07          2
    22-NOV-07         10
    22-NOV-07         20
    SQL>commit;
    Commit complete.

  • Cannot import .mov video files into Premiere Pro CS4

    Hi Everyone,
    I have Premiere Pro CS4 and cannot import .mov files into my project.  When I try Premiere freezes up and has to be closed.  I'm running Windows 7 and have a Gateway DX4300-11 with a Quad-Core AMD processor with 8 Gigs of ram although the Adobe CS4 programs only seem to recognize 4 Gigs at startup.  How do I get Premiere to import .mov files?
    TR

    What is the CODEC in your MOV file(s)? MOV is but a "wrapper," like AVI. This ARTICLE will give you some background. It could be that you just need the proper CODEC, or it could be that it is a Mac-only CODEC, and then you will need for the producer to Export in another CODEC, that is PC-compatible.
    This ARTICLE will give you some background on CODEC's, in general.
    Good luck,
    Hunt

  • Trouble with bockbuster online website   cannot delete movies in my queue

    does anyone know why i cannot delete movies in my movies queue on the blockbuster online website? please help.
    imac   Mac OS X (10.4.10)  

    First, QuickTime does not expire. So if you got an expiration message, something very strange was occurring. If it happens again, I'd suggest you post the entire message (link to a screen shot if you can) so that people can try to evaluate what's going on. You may have picked up some strange sort of spyware (which did not come from Apple).
    As to the 1719 error, Microsoft has a different explanation here that might help.
    Finally, there is no email support for QuickTime (or any other Apple hardware or software other than for purchasing tracks through the iTunes Music Store). So I don't know what email you used, but it's no surprise that you didn't get a response.
    Hope things go smoothly once you get to a fresh copy of Windows.

  • I cannot get movies I purchased with iTunes to play

    I cannot get movies I purchased with iTunes to play back on my Mac Mini. It only happens on brand new movies purchased.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Unable to move the Itunes8 window. Silly !

    Don't ask me why... I don't know.
    The fact is that i can't move the Itunes 8 window on my desktop anymore... Everything works fine (Genius and so on), but the window is stuck in the middle of my desktop. Did I miss something
    Thank's for our help.

    From MacFixIt
    The iTunes window seems stuck in place Several users have had an issue where the iTunes window is frozen in place. The program seems to function perfectly in every respect, except users cannot drag or resize the window. This problem has been associated with an incompatible "Accubeat" plugin that had been installed for iTunes 7. Apparently this plug-in is not yet compatible with iTunes 8, and should be removed for users who have updated. It is recommended that users remove any third-party plugins if they are experiencing faulty application behavior upon updating. If problems still occur then users should remove the iTunes preferences file (called com.apple.iTunes.plist and is located in /username/Library/Preferences/.

  • I would like to move datafiles to another Oracle Machine

    Dear All:
    I have two Oracle Server based on Windows XP professional.
    I would like to move datafiles to another Oracle Machine. That is, I want to move datafiles from A server to B server.
    Do you know how I can transport these datafiles and how can B server recognize table, metadata, values from datafiles?
    Please help me.
    Sincerely,

    To rodenyli:
    Version is Oracle 10gR2 (first server and second server are same).
    I already create the DB on the second server but SID is different.
    I don't understand what you are saying.
    "Is the instance name the same?"
    I didn't create any tablespace and datafile on the second server.
    For example, the datafile name of the first server is ABCD.DBF. and I want to transport the second server. but the second server doesn't have any tablespace and datafile.
    Please let me know in this case.
    Thank you,

Maybe you are looking for

  • Problems with Dashboard Demo App in Flash Builder 4

    I imported the Adobe Flex Dashboard app into Flash Builder 4 using SD 4.1 and selected "Use Flex 3 compatibility mode", but there are still some issues after import. I'm not talking about having to create the "libs" folder and re-generate the HTML te

  • Shipment completion check is erasing load start and load end dates & times

    Once the load start, load end is clicked during the pack process, the system reads this just fine.  Once ship complete happens, the system is erasing the load start load end. We are capturing the difference between Load end and Load start as Packing

  • Type of db for Oracle 9i Portal?

    I understand from a previous post that the type of db I need to have in place before installing Oracle 9i AS (and specifically Portal, as the component I need) is either the 8.1.6.2 Enterprise edition or the 8.1.7 Standard edition. Just a few quick q

  • How can my program download all-purpose info like nation names, ZIP codes, etc?

    WHAT I HAVE: Visual Basic 2010, .NET 4.0, WinForms MY PROBLEM: I'm writing a VB WinForms app that keeps track of social contacts, and allows users to specify info like their social contact's country and/or ZIP/Postal code. I'd like to know if there a

  • ALT Tags don't work

    Why when I hover my mouse over many images the ALT tags don't appear. They do in IE. Even the ALT tags on many images in the Apple site don't work in Safari but they do in IE.