Restore Designer from a FULL EXPORT

Hi to all ....
I have a FULL EXPORT of a database (9.2) where there was my Designer Repository my server crash and now I need to restore it in a new Oracle instance
I try to import the repos_manager user and the user DES that we use for designer
But not work ......
Any Idea Help ???
Thank's in advance

The user DES (I assume the schema owner) has to be created with the correct privileges (in my script the user is D2K and you may also have to change the tablespaces):
create user D2K
  default tablespace D2K_RAPID_GROW_D
  temporary tablespace TEMP
  profile DEFAULT
  quota unlimited on d2k_constant_grow_d
  quota unlimited on d2k_constant_grow_i
  quota unlimited on d2k_dependency_d
  quota unlimited on d2k_dependency_i
  quota unlimited on d2k_diagram_d
  quota unlimited on d2k_diagram_i
  quota unlimited on d2k_lob_d
  quota unlimited on d2k_rapid_grow_d
  quota unlimited on d2k_rapid_grow_i
  quota unlimited on d2k_system_meta_d
  quota unlimited on d2k_system_meta_i
  quota unlimited on d2k_temporary_d
  quota unlimited on d2k_temporary_i
  quota unlimited on d2k_version_d
  quota unlimited on d2k_version_i;
-- Grant/Revoke role privileges
grant ckr_d2k to D2K with admin option;
grant ck_oracle_repos_owner to D2K;
grant connect to D2K;
grant dba to D2K;
grant resource to D2K;
-- Grant/Revoke system privileges
grant create any synonym to D2K;
grant drop any synonym to D2K;
grant unlimited tablespace to D2K;

Similar Messages

  • Is it possible to restore database from a full backup without controlfile?

    Hi,
    I have done a full backup for the database oracle 11g using:
    run{
    allocate channel c1 type disk;
    set limit channel c1 kbytes 102400;
    sql 'alter system archive log current';
    backup full tag 'dbfull' format 'd:\dbbackup\f_%d_%u_%s_%p_%t' database include current controlfile;
    backup archivelog all delete input format 'd:\dbbackup\al__%d_%u_%s_%p_%t';
    release channel c1;
    but, I deleted all the datafiles include all control files.
    Is it possible to restore the database?
    Is there a way to restore the control file from the backup files?

    Thanks Werner!
    I finally find the correct backuppiece for the controlfile.
    D:\dbbackup
    2010-03-19 18:41 <DIR> .
    2010-03-19 18:41 <DIR> ..
    2010-03-19 18:41 5,711,872 AL__ORCL_04L8VSN6_4_1_714076902
    2010-03-19 18:41 104,857,600 F_ORCL_02L8VSJ0_2_10_714076768
    2010-03-19 18:41 104,857,600 F_ORCL_02L8VSJ0_2_11_714076768
    2010-03-19 18:41 104,857,600 F_ORCL_02L8VSJ0_2_12_714076768
    2010-03-19 18:41 24,535,040 F_ORCL_02L8VSJ0_2_13_714076768
    2010-03-19 18:39 104,857,600 F_ORCL_02L8VSJ0_2_1_714076768
    2010-03-19 18:39 104,857,600 F_ORCL_02L8VSJ0_2_2_714076768
    2010-03-19 18:40 104,857,600 F_ORCL_02L8VSJ0_2_3_714076768
    2010-03-19 18:40 104,857,600 F_ORCL_02L8VSJ0_2_4_714076768
    2010-03-19 18:40 104,857,600 F_ORCL_02L8VSJ0_2_5_714076768
    2010-03-19 18:40 104,857,600 F_ORCL_02L8VSJ0_2_6_714076768
    2010-03-19 18:40 104,857,600 F_ORCL_02L8VSJ0_2_7_714076768
    2010-03-19 18:40 104,857,600 F_ORCL_02L8VSJ0_2_8_714076768
    2010-03-19 18:40 104,857,600 F_ORCL_02L8VSJ0_2_9_714076768
    2010-03-19 18:41 9,830,400 F_ORCL_03L8VSMP_3_1_714076889 ---->the controlfile backup piece.the file name contains '03' instead of '02'(datafile).
    After run 'start nomount', I restore the controlfiles using 'restore controlfile from 'd:\dbbackup\F_ORCL_03L8VSMP_3_1_714076889';
    The key point is to find the right backup file piece for the control file.

  • Import a single view from a full export

    Good Morning
    How can I extract a single view from a export file?
    I can restore a single table no problem
    or the whole export file, but i just need one
    view out of it
    Thanks
    David

    Hi David & Reza,
    There is a way where you can extract a single view from the export file.
    01. Do the import process with show=y, that will show all the DDL syntaxes including views.
    02 Spool or redirect the output to a file.
    03.Get the view syntax and recreate it.
    Cheers,
    Kamalesh JK

  • Restoring a full export

    I need to restore a test database from a full export. What is the procedure for this? Do I need to blow away the existing DB and then import? Thank you,
    David

    When performing the full import beware of the SYS schema. You are supposed to import specific schemas and objects. You should be aware also that when issuing the full=y, if the export was generated at the highest abstraction level (database), then tablespace definitions will be stored there too and import will try to recreate them on the same paths as the original file.
    ~ Madrid

  • How to do a full export and exclude user specific tables

    Hi all,
    Is it possible to export all objects but one (or more) tables with expdp when doing a full export?
    This is what I've to in mind: (parfile)
    directory=expdp
    dumpfile=full.dmp
    logfile=full.elog
    full=y
    exclude=table:"IN('userA.table_A')"
    This par-file does not encounter any error messages but it doesn't exclude table_A in schema userA either.
    I guess that's because the the term userA is not interpreted as an owner.
    It's not a big deal to filter out a table when doing a schema export.
    I wonder whether it is at all possible do except a table from a full export. If so, I'd value your suggestions.
    Regards,
    Louis

    Louis,
    The exclude parameter in DataPump takes only the object name, not the schema name. So, if you only have one table called 'TableA', then you can just use:
    exclude=table:"IN('table_A')"
    If you have more than one table called 'table_A', then the exclude will exclude all of them. There is no way to specify user_1.table_a with an exclude parameter.
    Dean

  • Urgent -- need to restore table from full database backup

    Hello,
    Can somebody tell me the process for restoring just a table from a full database backup?
    I did a full online database backup yesterday, and one of my tables got ruined today. I need to restore it as soon as possible, but I don't know how. When I tried flashback tables, it said that feature wasn't enabled. Should I restore the datafile or the tablespace?
    Thanks much,
    Nora

    If you only want to recover the table and not the other objects in the tablespace, and assuming the table was damaged by a user statement (and not, say, block corruption), you would need to recover your backup to a different system, export the table that was damaged, and import the table into your real production database. If you can recover the entire tablespace to an earlier point in time, or if you can lose some committed changes to other database objects, you may have other options.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How to restore a single table from a DP Export from a different schema?

    Environment:
    Oracle 11.2.0.3 EE on Solaris
    I was looking at the documentation on DP Import trying to find the correct syntax to import a single table from a DP Export of a different schema.
    So, I want to load table USER1.TABLE1 into USER2.TABLE1 from a DP Export.
    Looking at the REMAP_TABLE options:
    REMAP_TABLE=[schema.]old_tablename[.partition]:new_tablename
    OR
    REMAP_TABLE=[schema.]old_tablename[:partition]:new_tablenameI can't see where to specify the target schema name. The examples had the new table name residing in the same schema with just a new name.
    I looked at the REMAP_SCHEMA but the docs say that will import the entire schema into the new schema and I only want one (1) table.
    Any suggestions are most welcome!
    -gary

    I thought I tried that combination and it seemed to me that the REMAP_SCHEMA somehow over-rode the TABLES= parameter >and started loading all the objects.If it does fail (and it should not) then please post the details here and I will try to see what is happening.
    Let me get back into the sandbox and try it again. I admit I was in a bit of a hurry when I did it the first time.We are all in a hurry, no worries. If it fails, please post the details and the log file.
    Does it make any sense that one parameter would override another?No, this should never happen. We have tons of checks to make sure the job can't have multiple meanings. For example, you can't say
    full=y schemas=foo --- Which do you want, a full export or a list of schema exports, etc.
    Your suggestion was the first thing I thought would work.This should work. If not, please post the log file with the command and the results.
    Dean
    Thanks again for the help and stay tuned for my new attempt.
    -gary

  • I'm trying a full restore in Lion, but it won't. States that there isn't enough space on the Mac HD. How do I restore everything from a recent Time Machine Backup?

    I'm trying a full restore in Lion, but it won't. States that there isn't enough space on the Mac HD. How do I restore everything from a recent Time Machine Backup?

    Thanks but I think it has something to do with the 'restore'. in the newest iTunes 11, when I click on the tab "iphone", it redirects me to the "welcome to your new iphone" page and asks about doing a 'restore'. I already did a 'restore', but it went to the original factory settings and I want to 'restore' to my lastest back up as of April 12. When I choose that option, it says my iphone doesn't have enough space. I don't know how much I need to delete in order to make it work. I've deleted lots, but it only has 4.1 GB available. I'm not sure why this isn't enough to do a 'restore'. I don't want to delete all my photos and videos, but maybe I will have to?...7.7GB is used up for that. I can't sync or do ANYTHING...

  • Import of Table data only from Full export Dump

    I want to import data inot specified tables of a databse only. Is it possible to do this from a dump file which is the full export of the another database. The database i want to import into is the mirror of the database whose export dump i want to use. Let me know if this is possible and if yes then how i could do this.
    Thanking in advance.

    Please check the following link for full instructions:
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/part1.htm#435787
    If on another release, the same documentation is available for it on OTN as well.
    Thanks!

  • HT201250 How do I restore photos from Time Machine?  All of my photos have been imported within iPhoto and therefore are exported to Time Machine via an iPhoto file.  I can't figure out how to break individual photo files out of the iPhoto file.  Any idea

    How do I restore photos from Time Machine?  All of my photos have been imported within iPhoto and therefore are exported to Time Machine via an iPhoto file.  I can't figure out how to break individual photo files out of the iPhoto file.  Any ideas?

    You might post this query on the iPhoto forum and perhaps someone there can provide an answer.
    I tried this on my MBP and it seems that you have to restore the entire iPhoto Library.  What I did was put the current library in a separate folder on the desktop and then I restored the library from a prior date.  If you were to do that, you then could extract the desired photos and then delete the restored library.  Then place the current library back to the original location and import the desired photos.
    Not tidy but it seems it will work.
    Ciao.

  • Restoring portal installation from a full system save

    Good morning,
    Need advice please - I have an LPAR that contains an ECC and Portal installation. I need to restore the portal installation only from a full system save and need confirmation of what needs to be restored. Using SN825473 I have the following :
    Library R3<sid>*
    Library SAP<sid>*
    then everything in the directory /usr/sap/<SID> and its subsequent directories.
    Is this correct?
    Anette

    Here you go
    http://exchangeserverpro.com/restore-exchange-server-2013-database-recovery-database/
    http://exchangeserverpro.com/restoring-mailbox-exchange-server-2013-recovery-database/
    Search, Recover, & Extract Mailboxes, Folders, & Email Items from Offline Exchange Mailbox and Public Folder EDB's and Live Exchange Servers or Import/Migrate direct from Offline EDB to Any Production Exchange Server, even cross version i.e. 2003 -->
    2007 --> 2010 --> 2013 with Lucid8's
    DigiScope

  • Move a design from PS to Indesign

    Hi All,
    I have designed a full colour event poster in Photoshop (CS5) in A3 size.
    The design itself uses photographs with various layer styles, texture (background) images with pixel gradient masks, text and some .eps logos
    The problem that i have come across after designing it is that the final exported pdf (in print quality) is too large for the recipient. They have suggested supplying the art in indesign format (or using indesign to create the .pdf)
    While i have a vague knowledge of how to use indesign, i really don't know what i need to do to get my design from Photoshop to indesign and maintain the look of the poster.
    So.. Just wondering if anyone would be able to give me an idea of the best way to go about this.
    Any help would be much appreciated.... Thanks

    Thanks for all of your suggestions. I think my reasons for moving to indesign were due more to my lack of knowledge than the recipients requests.
    I think i need to proivide a little more info to be clear.
    The poster is designed in A3 at 300dpi (images are all 300dpi)... but will be downsized to an A4 advertisement in a magazine.. and upsized to an A2 poster for promotion of the event.
    It is my understanding that it would be best to keep all text and logos as vector objects so they maintain their sharpness when upsized. I have also converted all text to shape layers before saving the pdf from photoshop.
    I guess my question was as much about what would be the best way to do it in the future, as it was about solving my current problem..
    Any further tips or advise would be welcome.
    I have managed to get the file size down to 33mb using your suggestions... thanks

  • Separating Design from Development

    Dear Adobe,
    This is my first post on your Labs forums. I just finished playing with the new CS4 -> Flash Catalyst -> Flash Builder workflow and have to say: I am inspired but not impressed. As mainly an AJAX and Cocoa developer, I had to learn AS3 syntax and MXML markup as I went along. I will list my three biggest problems with Catalyst and Builder below.
    Design still mingles with Logic
    When I first saw Catalyst and Builder, I was excited to finally see a real separation of code and design. I was expecting Catalyst to be the OSX "Interface Builder" of flex, and Builder to be the "XCode." I do like the <fx:Script /> <fx:Declarations /> and <fx:Design /> separation in each MXML document, but feel as if the <fx:Design /> segment should somehow be "off limits" to developers (or at least discouraged). If Catalyst was only allowed to edit the Design segment of the MXML and Builder only edited the Script and Declarations segments then leaner coding practice could be achieved and true interoperability between Designer and Developer would be reachable.
    Please allow for custom transitions and transition copying/grouping
    At the moment, Catalyst strikes me as an extremely dumbed down version of Flash that only lets the designer use preset "transitions" on their component heirarchy. This is suboptimal in two ways: Firstly, if the designer wants anything more complex than a linear move + Rotate3D + fade, they will have to just give up the UI to the developer. We are trying to avoid having the developer write UI code, so the designer should be able to really get creative with their transitions and animations without having to create swcs or swfs in Flash IDE. Secondly, there is no way to save a transition and apply it to elements of the same type. Layouts are often very repetitive and it is inhumane to expect a designer to sit there and drag out "transition" sliders for each dropdown on a page (for example). I agree that this scripting should be done in a GUI like Catalyst, but components need to be able to inherit transitions. I don't even want to imagine a GUI for such a thing, but you are Adobe, this is what you guys do!
    Allow us to export to either Air or SWF at build-time, not at import!
    I don't see why this isn't already enabled. Isn't Air supposed to have even more features than Flash? Couldn't Flash Builder just scan your project and warn you of any "air-only" libraries you are using? If you choose not to use anything other than the standard Flash 10 libraries, what would be the harm in giving us the option to export as either at build-time?
    I hope that my comments were somewhat useful. Before anybody responds with hostility: I am not a professional Flex developer. This was my first time playing around with the Flex framework and with Catalyst <-> Interface Builder, these were my first impressions.
    Thanks for producing such amazing products--
    --Jordan
    P.S. Your spell checker converts all ":D"s to .. As in <fx:Design /> to <fxesign />.. Made me chuckle

    Wow! Thanks for the in-depth response! It's always nice to see that even at such a huge company, you are all still human beings!
       I watched Ely's talk on Skins in Flex. I liked how fx:Skin is a completely separate class, even though fx:Design  kinda has it covered already. What's the difference? I am sure you will incorporate "skins" into the next release of Catalyst, so why not keep Skins and Design layouts in completely separate files? I wouldn't mind seeing a C-like setup where each MXML page has a "header file" with object definitions that both the Skin file and Logic file can access. The alternative to this multiple file setup is, of course, just having multiple sections of code inside the MXML file (like you already do). My only gripe with keeping logic and design in the same file is that as soon as you open up an MXML document to a developer's little paws, you immediately render it useless in a GUI program like Catalyst. If the developer is strongly encouraged to   bind event listener and data providers in the "script" partition (using AS3), the MXML could be left untouched so that Catalyst could update the UI. My concern for separating design from logic stems from my experience as a Rails developer where mixing "logic" and "html" is essentially taboo. I suppose in a front-end app where the GUI is what matters most, true separation isn't imperitive. Yet if you want to poise Catalyst->Flash Builder as an application development tool, I would almost expect it!
       Speaking of expectance, I was practically sure someone would flame me for comparing Flex to Cocoa. Upon further thought, Cocoa was probably not the best example I could've chosen. In fact, I don't know of a single application framework which forces separation between logic and UI in any stringent way so that both UI and Logic development can be improved. Why shouldn't Flex be the first?
       As for the animation and transitions, Catalyst is currently a tool for grouping artwork into "components" (objects), messing with their "properties" (attributes), and adding "Actions and Transitions" (simple event handlers and calls to transition handlers). While re-naming objects to components, attributes to properties, and event handlers to actions is a-ok, I don't see why the full power of object oriented design can not be unleashed to the average designer. I know there has been a lot of talk on these forums about adding CSS-like properties to components: by unleashing OO architecture into GUILand, you can kill two birds with one stone.
       I believe, for example, that the average designer is intelligent enough to understand that they can create one "parent" piece of artwork (let's say for buttons on a menu), and then slightly modify (extend) that never-displayed parent to produce their buttons in Catalyst. This way, if the designer decides that every button in the menu needs to brighten when rolled over, he/she can simply add the effect to the parent artwork. A nice little GUI to the artwork inheritance structure would be needed, but I believe that such an edition would yield great power to the designers. Hey, it's certainly more humane than having to reconfigure transitions and effects for every single component!
       While I'm at it (I'm having too much fun here!), why not allow designers to save transitions in their own sort of structure. Let us say the designer creates the blinky transition for the main menu button rollover, instead of binding the transitions directly to individual layers, he or she could define more general "sub components" that could be bound later. So the Transiton object here would simply state that the "Front Plate" fades to 50% opacity for 2 seconds. The designer could then apply the transition to any component in the project and just specifying what the "Front Plate" is each time. This is similar to how Catalyst currently handles custom text fields and scroll-bars, you just specify which layers do what, and it "magically" hooks it all up.
    The ability to quickly export my SWF as an air app would allow me to more easily explore Air development. That's all. So I guess my answer to you is "Yes."
    In all, I really do feel like the new Flex workflow really shows potential. If developers support you, I see no reason why next generation web-centric applications would be written in anything else. If Flex can unify design and application development, it has the ability to take boiler plate looking desktop apps to the next level. I just don't think that taking away features is the way to achieve this.
    Respectfully-
    --Jordan

  • I just had to reformat the external hard drive that houses my iPhoto library, then restore it from a backup. Now Time Machine is telling me my backup hard drive suddenly does not have the space to complete a backup. I also noticed when I go in to Time Mac

    I just had to reformat the external hard drive that houses my iPhoto library, then restore it from a backup. Now Time Machine is telling me my backup hard drive suddenly does not have the space to complete a backup. I also noticed when I go in to Time Machine, there are only about 5 backups recorded on the ext. hard drive. There were many more before. Any idea what happened and if I have to buy a new back up hard drive?

    Hallo  Kieth ,
    I am not quite ready to restore the full iphoto library , as I have days of work re - imputting titles,descriptions and enhancement . I hope that your suggestion works , as I use my Macbook basically to work with digital photography. Through time , I will need to delete my library to recover more disc space and I would hate to have to spend more time re - imputting titles and descriptions all over again .
    Thanks for your interest and advice.
    regards  - Alan

  • Can't find files after restoring them from Time Machine

    Hi!
    Yesterday I formated my macbook pro and re-install Mountain Lion. Before that I made a backup using Time Machine.
    When I wanted to create full system restore I couldn't do that. Neither using migration assistant neither with Mountain Lion startup disk. But that was yesterday story. I guess I was one of those unlucky guys who can't do a system restore because some strange reason.
    So what is the problem today: They someone says that I should enter a time machine and do a restore of a Macintosh HD. Restore of the whole hard disc.
    And I did that.
    And now I can't find those files on my Macbook. I can see on disk space  that they are on the disc but I can't find them.
    Is it because of the different user account or something like that?
    It would be really great if I could get a full system restore but it would be also great if I could just see all the files that i restored.
    THanks for the help guys!

    That's not the right way to restore. Delete the folder named "Macintosh HD" in the Volumes folder. It will take a very long time.
    Most likely, some folders were inadvertently excluded from your backups, and as a result you can't restore your data in Recovery, Setup Assistant, or Migration Assistant.
    Starting from a fresh installation of OS X, set up a new administrator account and log in. You should now be able to enter Time Machine and restore your user data from a snapshot.* I suggest you do this in two stages. Quit all applications except the Finder before you begin.
    Restore all the visible items at the top level of your home folder.
    Hold down the option key and select Go ▹ Library from the Finder menu bar. Enter Time Machine and restore all items in the Library folder. Log out and log back in as soon as the restore is complete.
    Any other invisible folders or files at the top level of your home folder that you want to preserve will have to be restored separately. For most users, that isn't necessary.
    You'll have to reinstall all third-party applications from scratch, or restore them from another kind of backup, if you have one.
    You'll have another problem if this is a new computer, or if you erased the startup volume: Time Machine won't continue your previous snapshot series, but will instead try to begin a new one, starting with a full copy of all files. There might not be enough space on your backup volumes for that. There are different ways of dealing with that situation, depending on your needs. The easiest way is to set your backup drives aside, if possible, until you're sure you'll no longer need the data on them, then erase them and start over. Meanwhile start a new backup on one or more empty storage devices. If that solution isn't workable for you, ask for instructions.
    *If you don't see any snapshots in Time Machine, exit the time-travel view and then hold down the option key while selecting
    Browse Other Backup Disks...
    from the Time Machine menu, which has an icon that looks like a clock running backwards. Select the backups of your computer by its previous name. If you don't have the Time Machine menu, open the Time Machine preference pane in System Preferences and check the box marked
    Show Time Machine in menu bar

Maybe you are looking for

  • How do I print one page at a time for a photobook .pse project?

    I am trying to print a photobook project one page at a time as I am using double sided paper that I need to turn over.  One other project I did asked me if I wanted both sides and would I do the turning myself, but this one doesn't.  I also wanted no

  • Add rows to query result?

    Is it possible to add rows to a SQL query's result, similar to the COMPUTE command in SQL*Plus? That is, for example, when the value for column A changes, add a row after the previous row (the last one before column A changed) to show the sum of the

  • SharePoint Online Newsfeed Content Life Span?

    Hello, Does anyone know how the MySite Newsfeed work? The displayed content sometimes only goes back 2 days, and sometimes it shows a lot more.  Thanks!

  • Satellite A60-156: Where to find graphic driver for Vista

    I've recently upgraded my A60 with new dvd, memory and hard drive. Upgraded to Vista and all works perfect except i cannot find an upgrade for my display driver. Just shows as standard graphics adaptor and i cannot get any 3d functionality on it even

  • BOM Construction Advice

    Hey guys, new here so go easy! lol We have had SAP business one for over a year now, and use it for SOP and POP well. we have structured our BOM's and Items in a way which makes it very complicated, but this is the way we were told by our installer.