ORA-01189: file is from a different RESETLOGS than previous files

Hi,
I am trying to clone a database A from B.. the cloning is on the same server.. they are both oracle 8i databases... my OS is sun solaris 8...
I followed the steps outlined in the following article:
http://www.samoratech.com/TopicOfInterest/swCloneDB.htm
Now, while creating the control file on target server, i am getting the erorr:
CREATE CONTROLFILE SET DATABASE "GNXDBT02" RESETLOGS NOARCHIVELOG
ERROR at line 1:
ORA-01503: CREATE CONTROLFILE failed
ORA-01189: file is from a different RESETLOGS than previous files
ORA-01110: data file 40: '/dbase17/oradata/gnxdbt02/ts_objs_vlarge_06.dbf'
It means that the file is from a time before a prev. resetlogs and hence is invalid.. I don't have a old copy of this file before prev. reset logs.. so in that case what options can i apply to open the DB and also not lost the data in that datafile?
thx

Hi,
According to documentation:
Cause: In a CREATE CONTROLFILE command, either this file or all previous
files were backups from before the last RESETLOGS.
This also may occur if this is a file that is offline and has been
offline since before the last RESETLOGS.
Action: If the file was taken offline normally before the last RESETLOGS and
is still offline, omit it from the CREATE CONTROLFILE command.
Rename and online the file after the database is open.
Otherwise, find the version of the mentioned file consistent with the
rest of the datafiles and retry the command.
If is the case, you can try edit the CREATE CONTROLFILE script, omit the erroring datafile listed in the ORA-1110 error, from the CREATE CONTROLFILE script, rerun the CREATE CONTROLFILE script and after the database is open, rename and manually online the erroring datafile.
Cheers

Similar Messages

  • HT5538 My boss has an IPhone from a different carrier than my iPhone. I want to set up iMessage so we can text each other for free. Is that possible? If so, what do I do to my phone and/or hers to set it up?

    My boss has an IPhone from a different carrier than my iPhone. I want to set up iMessage so we can text each other for free. Is that possible? If so, what do I do to my phone and/or hers to set it up?

    Just turn on iMessage... Settings > Messsages > iMessage > On
    Note that iMessage uses data (very small amount) so you need a cellular data (3G/4G) or wifi connection for iMessagae to work.  Also, in the Messages app, iMessages are blue and standard text messages are green.

  • Why are files in Firefox 33 cache directory different size than saved files on desktop

    In previous versions of Firefox I used the cache directory to extract videos, flash files and hidden images, that were not saved in folder and a HTML Document file on desktop. For Example the opening image of a YouTube Video can not be extracted and saved from Firefox but is stored in the cache directory.
    To find these files without going through them one at a time, I would copy the cache folder on a desktop folder and then use Double Killer to delete the same size files in both the cache and the saved files in the desktop file folder. The files that are left behind in the cache folder are those that did not save to the desktop file and folder. I can then double check to see if I can find the videos, flash or images from the remaining files.
    I have updated to Firefox 30.0.3. The problem now is that the files in the cache are different in KB size from the saved files on the desktop folder. The dimensions of a saved image are the same but the size of the file differ. Now I can not use Double Killer to delete files and have to go through the whole cache directory one by one to find files that were not saved.
    Why did the Firefox developers changed the cache directory? Do I need to revert to a previous version of Firefox or is there a way that I can change the cache directory of Firefox 33.0.3 and the size that it stores files.
    Would also like to know what add-on gives the best quality screenshot with flash.
    Thanks for this support. Apart from this cache problem I find Firefox easy to use and the best web browser.

    Current Firefox 32+ releases use a new cache service named Cache2 and this cache service works differently.
    Files in the cache2 folder are special files that also store the meta data apart from the actual file data that you see on the about:cache page if you click an item.

  • How do I use OracleMaps Javascript API from a different host than MapViewer

    Hello,
    I have successfully set up the Mapviewer quick start 10131, and am able to view the sample page showMap.html perfectly. I would like to run this same sample on a different server than where Mapviewer is installed. Let say mapviewer is installed on jstraub-winsvr:8888 and I want to run showMap.html from jstraub-linux1:7777. I tried changing the function showMap and the location to oraclemaps like the following:
    <script language="Javascript" src="http://jstraub-winsvr:8888/mapviewer/fsmc/jslib/oraclemaps.js"></script>
    function showMap()
    var baseURL = "http://jstraub-winsvr:8888/mapviewer";
    var mapCenterLon = -122.45;
    var mapCenterLat = 37.6706;
    var mapZoom = 4;
    var mpoint = MVSdoGeometry.createPoint(mapCenterLon,mapCenterLat,8307);
    var mapview = new MVMapView(document.getElementById("map"), baseURL);
    mapview.addBaseMapLayer(new MVBaseMap("mvdemo.demo_map"));
    mapview.setCenter(mpoint);
    mapview.setZoomLevel(mapZoom);
    mapview.display();                
    Now when I try running this page on jstraub-linux1:7777 I get a Javascript error, and in Firebug, I can see that there are request like the following:
    POST: http://jstraub-linux1:7777/mapviewer/ReturnLocaleOper
    GET: http://jstraub-linux1:7777/mapviewer/mcserver?xml_request=%3C?xml+version=%221.0%22+standalone=%22yes%22?%3E%3Cmap_cache_admin_request%3E%3Cget_client_config+map_cache_names=%22mvdemo.demo_map%22+format=%22JSON%22/%3E%3C/map_cache_admin_request%3E
    Obviously those requests are bogus since mapviewer is at jstraub-winsvr:8888 and not jstraub-linux1:7777, I just want to run the page from jstraub-linux1:7777. Anybody know how I do this?
    Regards,
    Jason

    I believe that I am having the same problem. While I don't yet have a resolution, I do have a bit more information that may be useful. I have examined the oraclemaps.js script file and found some relevant references to the Javascript document.location object. As I watch the script execute, it seems that the author has made the assumption that the page served to the user has been served from the same Oracle Application Server running MapViewer. I have listed the lines that contain references to document.location below. (The line numbers may be off by a line or two as I have made some minor changes to facilitate my investigation.)
    Line 742 : //_f16._f104="http://"\+document.location.host\+"/mapviewer/foi";
    Line 6280 : var x2=String(document.location);
    Line 10270 : var x40=String(document.location);
    By changing line 742 to...
    f16.f104="http://mymvserver:8888/mapviewer/foi";
    ...I believe I have the script looking in the right place. (Previously, it had been looking for /mapviewer/foi on the server that originally served the page.)
    The x2 variable (at line 6280) seems to provide the current document location as a means to determine the MapViewer URL. Once again, the author seems to presume that MapViewer is found on the same server that originally served the page.
    this._f53=x2.substring(0,x3\+x5\+2)+"/mapviewer";
    I changed this line to read:
    this._f53="http://mymvserver:8888/mapviewer";
    Having made these changes, I have moved past the "object not found"-types of errors I had been getting. I now get "Permission Denied" errors which, I am thinking, may be the result of cross-site scripting problems predicted by the previous poster.
    So, my question is this: Is it really expected that the page that integrates the map display must be served by the same Oracle Application Server instance on which MapViewer is running? This strikes me as an absurd limitation, so I assume it is not the case. Indeed, there is a post on this forum by another user who claims to have written an ASP.Net application that uses the Javascript interface to integrate MapViewer and the map display ( Link:securing mapviewer ). This is precisely what we are trying to do; but I have yet to determine how to go about doing it.
    Can this be done? Is there any documentation that describes how to accomplish this?

  • Files missing from drive - and Time Machine (Freeway files)

    A file that was just updated yesterday is now gone from the computer - everywhere. Gone from the internal drive and gone from time machine. When I do a search for the file type, the last update to it shows as December 19th. This is the day after I erase & installed Snow Leopard and brought the file back onto the machine from a backup drive. When I click "yesterday" in the sidebar, or "past week" it shows the application (Freeway) being used, but not the file.
    Freeway is a little buggy with where it saves things, but all the resources for the file are still in the expected location. The .freeway itself, its backup on the internal hard drive, and its backup on Time Machine are all gone when I search in finder. This computer has been acting a little wonky, which is why I did the erase & install. Just last week a partition of the startup drive failed to mount. I turned off the computer, unplugged it for 30 seconds, and it was fine.
    Is this a symptom of impending startup drive failure? Already repaired permissions and ran a repair disk on the drive where the files should have been.

    It sounds like the files were deleted during the day yesterday.
    If they were on your system when today's first Time Machine backup was done (ie, after midnight), they'll be on that backup. So if you haven't yet, look directly at today's first backup, via the "Star Wars" display. You may or may not have success searching the backup there, so be sure to check all the places you might have put them.
    A very long shot is disk corruption, that somehow lost/overwrote the files. Verify your internal hd to be sure it's ok.

  • Can you merge 2 files together from your desktop rather than going through Adobe Pro?

    I have Adobe Pro and I am constantly merging PDF's daily and it is rather annoying to go in to Adobe Pro, drag the two files and save them again. I feel there should be a way that the user can drag files from their desktop to other pdf files and they attach themselves.

    If you have Adobe Pro you should be able to right click over the file and see “Combine Files in Acrobat” select the link then the add files screen will come up. Now you can drag the other files you need. Then select “Combine Files”.  The only drawback I have found if you need your files accessible you will have to update them in the combine file even if they are accessible before you combine the files.

  • The file is not readable, when more than one file open

    Get this error when I try to open more than one file. Happens on different files, but especially on jobs that have side panels on packaging. The files have placed .psd images. Happens on different computers (10.6 & 10.8.2).
    Can get the file open usually by closing the othere open file, but then is hard to copy and paste between files. Sometimes I get this when trying to open one file, but restarting Illustrator usually fixes this.
    Have tried working directly from the hard drive, and still get this problem. Does to follow an exact pattern, can try to open file a, then b one day thsi will work another will fail. Seems like something is corrupting the memory, and usually happens with more complex files. Happens in CS5 & CS6, though I mostly work in CS5.

    Anyone else getting this error?

  • Writing multiple arrays to a single xml file at seperate times without overwriting the previous file?

    Hi my name is Dustin,
    I am new to labview and teststand... I am trying to right multiple arrays of data to a single xml file. I can do this with a cluster but I have to create a variable for each of those arrays (21 arrays) and I was hoping to use the same variable for each array. Meaning I obtain my array of data write it to an xml file then replace that array in that variable with a new array and then call up my VI that writes that array to an xml file and write it to the same xml file underneath the first array without overwriting it. Attached is my VI I created to write an array to an xml file. Again I am wondering if there is a way to write multiple arrays to a single xml file at different times without overwriting the previous xml file.
    Thanks
    Solved!
    Go to Solution.
    Attachments:
    Write_to_XML_File.vi ‏11 KB

    Hi dlovell,
    Check the attached example. I think it may help you.
    Regards,
    Nitz
    (Give Kudos to Good Answers, Mark it as a Solution if your problem is Solved) 
    Attachments:
    Write to XML.vi ‏17 KB

  • Using GetResource to get a file from a different folder than bin

    Hi guys,
    here is the line of code I am working with:
    final static URL musicD = Sound.class.getResource("Sound//MusicD.mid")this loads MusicD.mid from the project/bin/Sound folder. However, SVN messes up my bin folder badly, how can I get a resource from the project folder, or better yet project/sound folder as opposed to the bin folder? Thanks!
    P.S. I am on a tight deadline, so a straight answer would be very helpful, what I dont need is more smug advice! =) thanks!

    hiwa wrote:
    Christ_Guard wrote:
    Hi guys,
    here is the line of code I am working with:
    final static URL musicD = Sound.class.getResource("Sound//MusicD.mid")this loads MusicD.mid from the project/bin/Sound folder. However, SVN messes up my bin folder badly, how can I get a resource from the project folder, or better yet project/sound folder as opposed to the bin folder? The syntax is wrong. Besides, what is your current current directory from where your application is launched? Is it in a jar file?Thanks for the honest help, I really appreciate it! I am working out of eclipse and compiling it there, so it is not yet a jar file. How would you suggest fixing the syntax to work?
    P.S.
    the directory I am working from is this:
    C:\Users\Christian\TCSS 305 Workspace\shielc-tetristhis directory has the src and bin directories, yet I dont know how to get the resources from this directory instead of the bin directory.

  • Is it possible to work on the same files/catalog from two different computers?

    My wife and I are photographers and work on two separate iMacs.  We just purchased an NAS and would like to know if we can both access the same files AND the Lightroom catalog from our respective computers.  All of the files are on the NAS but I can't figure out how to get her computer to recognize the catalog.  Any help would be greatly appreciated!
    -Brent

    Another option, since you already have the nas, is to get something like "Synchronize! Pro X",and use the nas to transfer the catalog back and forth.  You don't have to USB the catalog, just transfer it to the nas each time you are done, and before you start...
    Of course, I think both solutions are based on you not editing at the same time... i.e., both of you are making changes, as neither approach will work for that!
    Cheers!

  • Dynamic file name from input payload (RFC 2 flat file)

    Hi,
    I have an RFC to flat file scenario. The output flat file has not an XML structure, it's just a plain text file generated with abap mapping.
    In my source interface (RFC), I have a field called <FILENAME>, I want to use the value of that field to create the target file using dynamic file name. But if  in variable substitution I use payload:ZRFC_NAME,1,FILENAME,1 It doesn't work because the dynamic variable substitution try to access to output payload, not the source one...
    What can I do?

    Hi Marshal,
           You can add a extra node to your target strucutre like
    FileName- Node
    --FileName - Element.
    do the mapping from the field filename of RFC to FileName field in u r target strucure. And use this  field path at Refrence in variable subtituion.
    In the Content converison add the Name & Values as below
    FileName.fileldNames -- FileName
    FileName.fieldFixedLengths -- 0
    FileName.fixedLengthTooShortHandling -- Cut
    So the extra field in u r target structure would not populate in u r target text file.
    Cheers
    Veera

  • How tocopy a CD from a different computer than the one I am synced to

    My daughter got a Beyonce CD for Xmas.  Her iPhone has its "synced" library on an iMac27 which do not come with a CD drive anymore.
    So we go to our MBP and load the CD into iTunes there.   Then connect her iPhone so we can transfer the CD onto it.  But everytime time I try to do that I get the dreaded "You can only be synced to one iTUnes library - Do you want to erase your iPhone and sync to this machine" or something to do effect.
    Well I don't want to sync to this computer.  I just want to copy a CD onto her iPhone.
    Why does iTunes insist on making the simplest little things so maddeningly complicated.  All I want is a simple copy. 
    I have her iPhone set to Manually Manage Music and video on the iMac27 but when iTunes on the MBP says that it is set to Automatically Sync and when I try to change it to Manually Manage it says that it will erase all the contents of the iPhone.
    This is sooooooooo irritating.
    Thank you for any suggestions!
    iPhone 4.  iOS 7  iTunes 11.1  Mac OS 10.8.5
    PS:  I tried to do a search on this subject but there are too many keywords and I couldn't find a similar case with answer.
    PPS: Are there any good alternatives to iTunes?

    Her iPhone has its "synced" library on an iMac27 which do not come with a CD drive anymore.
    So we go to our MBP and load the CD into iTunes there. 
    So far so good.
    Now that the CD is ripped on your computer, copy the song files from your computer to a flash drive.  Take the flash drive to her iMac, where you can add the files to her iTunes library.
    Then, she can sync her phone to her own library, which will now include the new Beyoncé tracks.

  • Can I download an update from a different country than my account is registered in?

    My Adobe account was set up in Australia, but I am currently based in Germany. I would be using my Australian credit card to purchase a Lightroom 5 update...will it still let me download it in Germany?
    And can I use it on two computers?
    Many thanks!
    Zoe

    Zoe Berlin you will need to make sure the billing address is the same as the address on your account.  You can log into your Australian account and make the purchase under that account.  Or are you now living in Germany permanently and want all future software purchases to be registered to you with Germany as the country of residence?
    If so then please see Transfer an Adobe product license for information on how to transfer your registered Adobe software titles to a different account.

  • Pdf file recovery from over written new save as file

    I over wrote a file  and need to recover the original file that was over written with "save as".

    This is the time to use your backups.

  • HT1349 how do I change the email contacts I want to sink from a different email than the one listed on itunes?

    I am trying to sync my iphone and itunes is preset to an email account with no contact. I want to switch to a different email account to sync to but can't find a way to change the email already listed. Any ideas?
    Thanks

    Transferring email account settings via the iTunes sync/transfer process has nothing to do with syncing contacts direct with a supported address book app on your computer if this is what you are referring to.
    If you have an email account that supports syncing contacts over the air, you can manually create the email account with the iPhone's Mail app. This is supported with a Yahoo account, Gmail account, an Apple iCloud account, and with an Exchange account. A Hotmail account can now be accessed as an Exchange account with the iPhone's Mail app.

Maybe you are looking for

  • Vendor number in FBL3N and FAGLb03 - GRIR clearing account

    Hi, I have added a special field BSEG-LIFNR and when i run above reports, it is showing vendor number only against doc type WE and not against any other document types. I wanted this facility to be available primarily to track GRIR account postings.

  • Basic configuration guide to set ECC to PI

    Hi Experts, I would to set a scenario for BAPI to File. Please let me know the basic configuration to be set for ECC and PI. Explain in detail as I am totally new to this. Thanks Sunil

  • Query using database connectivity tool kit

    I'm currently using an application that can read and write from an access database using labview. My problem is that I want to somehow have a query (hopefully just using the tool kit) that searches the database and displays the results in the read sc

  • A possibly dumb question re exporting clip for web use

    Hi, I've been experimenting with diff resolutions etc for exporting a clip intended to be added to a web page. Diff levels of mpeg compression, etc. I'm most impressed with the quality of H264, the video codec for the video ipod. I play it in a quick

  • When the macbook pro starting is shutdown

    I have macbook pro 2012 A1278 and i upgraded to OS X Yosemite, when the macbook is starting and the you see the apple logo for 15 seconds is shutdown.