Error after you move the temporary data file to another location

Hello

I do a few large trials and for this I created the tablespaces on my external hard drive. I moved the file from temporary data to my location on the hard disk by following the procedure below.
SQL> startup mount
ORACLE instance started.

Total System Global Area  313860096 bytes
Fixed Size                  1332892 bytes
Variable Size             218106212 bytes
Database Buffers           88080384 bytes
Redo Buffers                6340608 bytes
Database mounted.
SQL> ALTER DATABASE RENAME FILE 'D:\app\Administrator\oradata\orcl\TEMP01.DBF' TO 'G:\KAM\TEMP01.DBF';

Database altered.

SQL> ALTER DATABASE OPEN;

Database altered.
2.3 times that I closed the db, even restarted the computer, but when I ask

SQL > select * from dba_data_files;

It does not show the file to its new location and temporary data.

In any case, I ran my request but got the following error.

ERROR at line 13:
ORA-01115: IO error reading block from file 15 (block # 2507160)
ORA-27070: async read/write failed
OSD-04016: Error queuing an asynchronous I/O request.
O/S-Error: (OS 23) Data error (cyclic redundancy check).
ORA-01115: IO error reading block from file 15 (block # 2507160)
ORA-27070: async read/write failed
OSD-04016: Error queuing an asynchronous I/O request.
O/S-Error: (OS 23) Data error (cyclic redundancy check).
I'll appreciate any suggestions.

Thanks and greetings

Oracle 11g (11.1.0.6.0), winxp. No archive Log mode

Shutdwon unnecessary your database. The operation could be built with an open instance.

Gievn the steps below;

CREATE a TEMPORARY TABLESPACE temp2 TEMPFILE ' / u01/oraindx/temp01.dbf' SIZE 5 M;

ALTER DATABASE by DEFAULT TABLESPACE TEMPORARY temp2;

DROP TABLESPACE temp including CONTENTS AND DATA files;

Temp to CREATE a TABLESPACE TEMPORARY TEMPFILE ' / u01/oradata/DB01/temp01.dbf' SIZE 1024 M;

ALTER DATABASE default TEMPORARY TABLESPACE temp;

DROP TABLESPACE temp2 including CONTENT AND DATA files;

Orawiss

Tags: Database

Similar Questions

  • move the primary database files to another location

    Hi all

    I move the files of my primary database to another location on the same server, but on a different drive (from f: to G :) with rename comand but file name will be the same, after you have moved the files what step I need to perfom on standby DB will have on my database pending?)

    This doc is everything after you rename the primary file, I'm not rename all the files I need to just move file from one place to another without changing the file name.

    I hope you know how to move files from one place to the other on the primary database. It's not just copying the files from one disk to another and then to go to the top of your database.

    You rename your data files or copy it to another location, how the controlfile to know you have copied/renamed to a different location?

    I guess you 1 to ask the question of how to move files to a different location in primary education and then move on standby.

    Steps to follow:
    1 Hope you brought your primary database.
    2 copy the datafiels to one disk to another.
    3. attach the primary database.
    4 rename all data files that you moved to this control file would know the changes.
    SQL > alter rename file 'G:\oracle\user01.dbf' to 'F:\oracle\user01.dbf ';
    5. subsequently open the database.
    Refer this to move data files from one place to another http://www.orafaq.com/wiki/Move_datafile_to_different_location, http://www.adp-gmbh.ch/ora/admin/move_datafiles.html

    on autonomy in standby:
    1 cancel the MRP
    2. change the db_file_name_convert to point to «F:\»... »
    3. Mount the backup database
    4. start the MRP

    Hope that these steps are clear.

  • Error after you move the request for new development machine (minimum environmental change)

    I'm really new FAD and work on my first application.  So far it's going pretty well, and I'll have a blast.

    I met a problem move on my application to a new machine however.  I initially developed on the virtual machine running on my laptop, but decided to switch to a more powerful machine.

    I have a problem trying to 'Run' of pages in my application.  Integratedweblogic is throwing an error everytime I try to load a page (and only the web pages window session that opens just shows 'o' turning indefinitely):

    "DFW-99998 [javax.naming.NameNotFoundException] [oracle.jbo.server.DBTransactionImpl.lookupDataSource] [j2ee app]".

    Original environment:

    Windows 7

    Oracle JDeveloper 11g

    Oracle DB for windows running on the same OS/env/localhost

    New environment:

    Windows 7

    Oracle JDeveloper 11 g (same version)

    Oracle DB running in a vm virtualbox using Oracle Linux (it is a much larger, more 'production-like', a database in which my application would be hypothetically).

    I made the necessary changes to the connection of database (host/port/user/pw/etc) used by the app and I still get the above error.  I even tried to copy across my jdeveloper and integrated settings of the server weblogic (C:\users\me\AppData\Roaming\JDeveloper\system11.1.1.7.40.64.93) to the new environment in addition to the copy in the root directory of the application, change the db connection settings, and I still get the same error.  I also have the same error occur when, after having made the connection Exchange Pb, delete the weblogic (C:\users\me\AppData\Roaming\JDeveloper\system11.1.1.7.40.64.93\DefaultDomain) server folder and start again, with jdeveloper build a new instance IWLS run.

    I must point out that, when I run the app service module in the new environment with the db connection changes, I can test all Instances of the view object, and they work as before and as expected in the Oracle Business Component Browser window.  So that seems to indicate that it's just a problem with my setup of weblogic/instance, but I'm not sure.

    As always, I appreciate very much all your comments and thanks in advance for answers!

    If you like the framework automatically adds the data source, it must be checked. If you want better control and better together for manufacturing sheet you it is unchecked. In this case you must create the data source on the web logical server yourself.

    Try again with the box checked initially.

    Timo

  • Re: "insufficient privileges" error when you run the Java stored procedure in another schema

    I get an "insufficient privileges" error when you run the Java stored procedure in another schema, see details below.  I don't know what are missing privileges (I already granted the EXECUTE privilege), suggestions?  -Thank you.

    Define a simple java class and deploy it as a Java stored procedure to test:


    Schema: User1

    test of the package;

    public class HelloWorld {}

    public HelloWorld() {

    Super();

    }

    public static String Hello () {}

    Return "HELLO";

    }

    }

    CREATE or REPLACE FUNCTION HELLO RETURN VARCHAR2 AUTHID CURRENT_USER AS LANGUAGE JAVA NAME ' test. HelloWorld.hello () return java.lang.String';

    Grant execute on USER2 HELLO

    Test the Java stored procedure through the PL/SQL function call (in the same schema):


    Schema: User1

    SET SERVEROUTPUT ON

    DECLARE

    v_Return VARCHAR2 (200);

    BEGIN

    v_Return: = User1. HELLO;

    DBMS_OUTPUT. Put_line ('v_Return =' | v_Return);

    END;

    anonymous block filled

    v_Return = HELLO

    Test the Java stored procedure through the PL/SQL function call in a different pattern:


    Schema: USER2

    SET SERVEROUTPUT ON

    DECLARE

    v_Return VARCHAR2 (200);

    BEGIN

    v_Return: = User1. HELLO;

    DBMS_OUTPUT. Put_line ('v_Return =' | v_Return);

    END;

    Error report-

    ORA-01031: insufficient privileges

    ORA-06512: at "User1." HELLO', line 1

    ORA-06512: at line 4 level

    01031 00000 - "insufficient privileges".

    * Cause: An attempt was made to change the user name or password

    without the privilege appropriate. This error also occurs if

    trying to install a database without the need for employment

    access privileges.

    When Trusted Oracle is configure in DBMS MAC, this error may occur

    If the user has been granted the privilege necessary for a higher label

    that the connection is active.

    * Action: Ask the database to perform the operation or grant administrator

    the required privileges.

    For users Trusted Oracle get this error, well that granted the

    the privilege that is suitable for the top label, ask the database

    administrator to grant the privilege to the appropriate label.

    You have created the function with AUTHID CURRENT_USER, which means that the function is executed with the rights of the applicant (but not with the rights of the author). This means that the applicant must have grants (directly or through roles) on all used/accessible objects in the service. In your case the user USER2 has not granted with EXECUTE on the class/source Java test. Class HelloWorld, causing the ORA-01031 exception. You create service without AUTHID CURRENT_USER (i.e. with AUTHID DEFINE, which is by default, if you do not have a specific reason to use AUTHID CURRENT_USER) or grant EXECUTE on JAVA test SOURCE. Class HelloWorld to User2.

    Dimitar

  • Error: Could not find the locale data files. Please reinstall when you try to open Facebook.

    Original title: locale data file errors... How can I fix it?

    can't the facebook home page and when I search the

    "Cannot find the locale data files. Please reinstall"pop box.

    Hi kjkin,

    1 did you change on your computer before this problem?

    2 are you able to access other Web sites correctly?

    3. what browser do you use?

    If you are using Internet Explorer, follow these methods & check if the problem persists:


    Method 1

    You can follow this link & check if the problem occurs:

    Can't access some Web sites in Internet Explorer


    Method 2

    You can also follow this link:

    How to delete the contents of the temporary Internet files folder?


    Reference:
    Internet Explorer does not start or stops responding

    Hope the helps of information.

  • Impossible to listen to the Radio on the Internet after you save the playStation.wax file

    Original title: webradio - click look and pop-up screen appears

    In Window Media Player - media - Internet Radio Guide - click on listen and pop-up screen appears, asking to save the file - playStation.wax? When I cancel or save - no radio?

    This happens with all radio stations, or just one?

    The dialog box that opens also isn't an Open button and a checkbox called always ask before opening this type of file ? If so, you can clear the check box and click Open , and the dialog box should not appear more after that.

    If this does not help, try to clear the temporary Internet files and the Internet Explorer Cookies.

    Tim Baets
    http://www.BM-productions.TK

  • How to keep the video selected after you move the playback cursor

    I use Flash CS5.5

    After selecting a Clip, the properties panel displays its properties. When you move the cursor reading by dragging the mouse, the properties of this Clip are still visible in the properties panel. But as soon as I stop dragging and release the button of the mouse, the properties panel changes - it now shows the properties of the motion tween.

    Is there a method to keep the selected Clip after dragging the playhead and do not pass the selection to the motion tween? That's because after dragging the playback slider I still need the Clip properties, so I need to select again and again after dragging the playhead.

    You forget entirely on the query editor.

    Query Editor window->.

    When you slide on your scenario, this shows you all the key properties and their values as well as real keyframes. This is where you should be inspect and adjust the values.

    It took me a while to return to flash animation and when I started the conversion from the classic Tween system to the new system of motion tween I didn't know that this sign existed. He brings Flash a little closer to After Effects (my favorite animation tool). It's a lot better that the classic tweens, it's safe.

  • Help me solve the error that occur after you import the VO, EO files

    Hello
    I created EO, VO, VO by extending the seeded EO respectively, substitute the BC4J also.
    import files using jpximport
    his imported successfully and I am facing error opening of the request under this responsibility.

    When I try to open the application of forecasting cash, it shows error.
    I mentioned the part of the error below

    oracle.apps.fnd.framework.OAException: could not load application module 'oracle.apps.ce.forecast.cf.server.ForecastAM '.
    .
    .
    .
    # # 0 in detail
    Houston-30003: AppPool (legend.igloocorp.comTEST13000oracle.apps.ce.forecast.cf.server.ForecastAM) failed at the checkout a module of application because of the following exception:
    oracle.jbo.JboException: Houston-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg = Houston-25002: xxi.oracle.apps.ce.schema.server.IglFcTrxCellsEO the definition of the entity type definition not found

    I checked the error in google and metalink by following no.
    Houston-30003 is usually either a simple configuration in the file bc4j.xcfg problem - for example the JDBC connection information will not. Or the database is simply not available.
    but I checked the settings also. everything works very well.

    Please someone help me to solve the problems.
    If I need to extend the AM file also.

    Thank you
    Corinne Bertrand

    Hey,.

    you moved the file to $Java_Top/oracle/apps/xxi/oracle/apps/it/schema/server /.
    and your package EO structure is xxi.oracle.apps.ce.schema.server.IglFcTrxCellsEO

    The EO should be moved in $Java_Top/xxi/oracle/apps/it/schema/server /.

    Thank you
    Kumar

  • 500-internal Server Error - after you change the user public apex

    Hello

    I executed change order use to change the password for apex_public_user new password but he beat Apex earpiece and entire work of workspace cant Apex now, how can I solve this problem?

    Apex 4.2.4,

    Thank you.

    Tony,

    When I run the apex.war file and specify the same values as before / previous samples below will suffice that or ive to modify other files after that because we already have existing environment with application developed, but I don't want anything an impact?

    java-jar apex.war of installation

    May 1, 2014 11:36:03 oracle.dbtools.common.config.file.ConfigurationFolder logConfigFolder

    INFO: Using the configuration file: / u01/app/oracle/apex_listener/apex

    Enter the name of the server database [localhost]:linux03.vbox

    Enter the database listening port [1521]: 1521

    Enter 1 to specify the database service name, or 2 to specify the SID database [1]: 1

    Enter the database service name: snap11g

    Enter the database user name [APEX_PUBLIC_USER]: APEX_PUBLIC_USER

    Enter the password for the database for APEX_PUBLIC_USER:password1

    Confirm the password:

    Enter 1 to enter passwords for users of database Services RESTful (APEX_LISTENER, APEX_REST_PUBLIC_USER), 2 to use the same password that you used for the APEX_PUBLIC_USER, or 3 to skip this step [1]: 2

    Update may 1, 2014 11:37:12 oracle.dbtools.common.config.file.ConfigurationFiles

    INFO: update of configurations: by default, apex, apex_al, apex_rt

    Thank you.

  • Issue of SDRS to vCloud Director after you add the new data store to the Cluster of DTS

    Hi people,

    We use vCloud Director 5.5 in a vSphere full 5.5 environment.

    We have several DTS Cluster in vSphere and connected to vCloud Director.

    Following problem.

    When I add a data store to a Cluster of DTS and connect this to the corresponding storage profile data store, the storage profile is not available to vCloud Director more.

    After removing the new store data in the cluster of DTS, the profile becomes available again.

    Any ideas?

    Concerning

    Jean

    How did you the storage profile associated with the data store?  via c# client or vSphere web client?

    If you did the wrong way (c#) there no storage class label appropriate against it.

    A data cluster store has the storage class who would have all preparations of data contained inside.

    I think that you should check the service class is associated properly in vSphere web client (before adding to the DS Cluster).  Once it displays correctly, and then add the data store to the cluster.

  • Error after you apply the CPU

    Hello

    I applied several cpu on EBS and now I get the error:

    Object EXPECTED

    When I try to open certain pages.

    Should I run any option adadmin?

    Thank you
    Iron

    Salvation;

    Please also see note below:
    SE "error: object expected" from the IE context menu when on any tab a sub-tab, click [344210.1 ID]

    Respect of
    HELIOS

  • How to store the ASO dat file in different location

    Hi all

    I have a requirement where I need to store the .dat (ASO) file in one location other than the folder where are stored the artifcats of enforcement. In OSB, we can right-click the database properties, edit, and in the storage tab, we can choose where the data files and indexes must be stored. We have a similar option of ASO too? because the space we have for the application files are limited and we have a separate drive of SAN for the storage of the data and index files, and this is where the BSO .pag files are stored. Since our ASO cube is more I want to move the data to a location where the data of the BSO, I mean for the player designated for data. Any suggestion will be highly appreciated.

    Thank you.

    Yes, ASO has the notion of 'spaces '. There are four (by default, temp, log and metadata), but you probably just want to pass the tablespaces 'default' and 'temp' in your location of SAN. Temp will look really small (i.e. empty) until you run a restructuring or consolidation, then it will explode to the size of the default storage space so it is important not to miss.

    See the section "Managing storage for ASO bases" here http://docs.oracle.com/cd/E17236_01/epm.1112/esb_dbag/asysadmn.html, or the MaxL "alter tablespace" command http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/maxl_alttabl.html here.

    EDIT: Actually, looking at the documentation, I see that you can't move the metadata or journal storage. But you're probably only going to worry about 'default' and 'temp' anyway.

  • I want to move the folder Program Files to another hard drive.

    I have Windows 7 installed on a small primary partition on one of the two hard drives, double boot with Windows XP.  My installation of Windows XP is on a smaller primary partition (like Windows 7) and Program Files folder on a separate drive logic in an extended partition, not on the system drive.  I want to make a folder Program Files of Windows 7 on the same logical drive, Program Files and move the Program Files from Windows 7 folder to that partition on the second hard drive.

    Just an update.  I finally managed to move 'Users' on a separate partition, so my installation of Windows 7 now has Windows on a partition, the files program on a logical drive in an extended partition, and users on a separate logic in this extended partition.

    On the Windows partition, there are junctions that point to the logical drive Program Files and the logical drive of users and editing the registry to set these default locations.  Windows updates proceed normally and successfully.  Program facilities smoothly and work as expected.  I'll post my procedures on my site, I hope that in the near future, after that I tested and confirmed their on my other Windows 7 machines.

    Be forewarned, however, that this separation will break the ability to repair/reinstall (upgrade on-site) Windows 7.  It will stop when he sees that Program Files not are not on the system partition.  However, in my particular case, I depend on third-party software disk for backup, Imaging for the loss of this functionality (repair/reinstall) has no real interest for me.  Restore a disk image is much faster.

    There are other methods posted on the net to separate these main divisions of Windows during the installation. My methods are intended to guide differently to an existing facility while retaining all the features.  And once again, as shown in this thread, Microsoft Support seems to discourage that kind of thing.

  • After you move the code in the FLA for the document class, I get error

    This is the file before moving http://www.cybermountainwebservices.com/client0/date/ when you click on the contact us button it should dissolve now I get:

    ArgumentError: Error #2005: 0 parameter is of the wrong type. Must be of type IBitmapDrawable.
    at flash.display::BitmapData/draw()
    for WebSite / $construct / gotoContact () [C:\AS3projects\fullBrowser\scaleVid\WebSite.as:65]


    Here is the code:

    the offending code is in "BOLD" everything but the pixel dissolve will work as before

    com is the flvPlayback instance component which is on stage when the author, has nothing else on stage at the time of the author and no action script in the flv file

    package
    {
    import flash.display. *;
    import flash.display.BitmapData;
    import flash.display.IBitmapDrawable;
    import flash.media. *;
    import flash.events. *;
    Jim.interactive import. *;
    Import btnHolder;

    site Web/public class extends MovieClip
    {
    var mesolve:Dissolve2;
    var holder: btnHolder;

    public void WebSite()
    {
    internship. Align = StageAlign.TOP_LEFT;
    stage.scaleMode = StageScaleMode.NO_SCALE;
    owner = new btnHolder();

    addChild (holder);

    var onstage: *;
    on stage = com;  //

    report / var: number;
    var rRatio:Number;

    ratio = onStage.height/onStage.width;
    rRatio = onStage.width/onStage.height;
    var newRatio:Number;

    function fillBG(evt:Event_=_null):void
    {

    newRatio = stage.stageHeight/stage.stageWidth;
    Holder.x = stage.stageWidth - (holder.width + 25);
    Holder.y = 50;

    If (newRatio > ratio)

    {
    onStage.height = stage.stageHeight;
    onStage.width = stage.stageHeight * rRatio;
    }
    on the other
    {
    onStage.width = stage.stageWidth;
    onStage.height = stage.stageWidth * ratio;
    }
    }
    fillBG();

    stage.addEventListener (Event.RESIZE, fillBG);
    // ************************* buttons ***************
    this.holder.mcContact.buttonMode = true;
    this.holder.mcContact.addEventListener (MouseEvent.CLICK, gotoContact);

    function gotoContact(e:MouseEvent) {}
    var canvas: BitmapData = new BitmapData (stage.stageWidth, stage.stageHeight, fake, 0xffffffff);
    Canvas.Draw (this.stage);
    var bmp:Bitmap = new Bitmap (canvas);
    addChild (bmp);
    removeChild (com);

    mesolve = new Dissolve2 (canvas);
    mesolve.addEventListener (Event.COMPLETE, nextPage);
    SoundMixer.stopAll ();
    var contact: contactUs = new contactUs();

    function nextPage(e:Event):void {}
    trace ("NextPage");
    addChildAt (contact, 0);
    on stage = contact;
    removeChild (bmp);
    }
    }
    }
    }
    }

    @kglad he does, they are all inside the constructor.

    Perhaps he could operate by changing the line

    Canvas.Draw (internship);

    but really, they should be separated by the manufacturer.

  • Can I transfer files from the old computer running XP to new computer before or after you move the new Vista computer to Windows 7?

    I have a computer running windows vista that I'm planning on upgrading to Windows 7. I will be transferring files and settings from my old computer running windows XP SP3.  Can I make the transfer to the new computer before upgrade Vista to Windows 7 or should I first, up grade for Win 7, and then do the transfer?  I also asked a previous question about the email, I use Outlook Express on the XP machine.  What happens to the emails, settings, and contacts once I use Windows Vista and Win 7 easy transfer to the have Outlook Express? The new computer has Outlook 2003 is installed, all the settings will automatically go to this program?

    Make the transfer later.  Everything you do is do more work for the upgrade.  It takes hours as it is.  Please use the forums of office for questions by email.  Click Office link in the banner at the top of the forum page.

Maybe you are looking for

  • Import AOL Contacts

    AOL contacts can be exported via the AOL webmail. Connect using Firefox, go to 'Contacts', salt (check) want all the inputs, tools, export, select. CSV, export. Clean the entries in Excel if you wish. Import in Thunderbird. Now, if only I could get m

  • Share fails

    Hello Using the same parameters used several times on my MBP 15 2015 "2.8 ghz, the action has failed 3 times, 2 x this morning and again tonight. I'm trying different parameter go round, I bet it's a failure in the same place. Any ideas on the proble

  • Re: Satellite Pro S500 - brightness adjustment does not work correctly

    On my Satellite Pro S500 (preinstalled Windows 7 64-bit) change the brightness by pressing FN - F6 or FN + F7 does not work. The other NF - f... combinations seem to work correctly. When I press FN - F6 (or F7) a control box to change the brightness

  • Equium A200-15i: straneg double beeps

    Hello world While using my computer yesterday a couple of times I hear a double beep very audible.Sound is cut on the system. When I went to start this morning it wouldn't.I talked to customer support and got work again but this afternoon when on it,

  • I can not play CD on my laptop because I restored it back to factory settings

    Separated from this thread. I can not play CD on my laptop because I restored it back to factory settings