Where in the database should my themes and styles and maps etc... go?

We had a problem performing an export of the MDSYS schema for backup purposes. When we tried to import our data, after a database corruption thanks to a patch, the themes and styles, and maps that we created did not get put back in user_sdo_themes, maps, styles, etc... the data was never exported.
Oracle support is saying that these things should not be going in the MDSYS schema, if they do not go in there, then where should they be going? Also how do I map the definitions back to where I should be putting them? We create all of our spatial data in a schema named RESOURCES. Should I be creating tbles such as user_sdo_themes in my RESOURCES Schema?
thank you!

The MDSYS user does in fact contain all of that information, but you should not be exporting the mdsys user any more than you export the sys or system users.
When I export map metadata for a user, and I want to be able to reinsert that data on import, I will do something like the following:
before exporting, I will create metadata tables
create table my_maps as select * from user_sdo_maps;
create table my_themes as select * from user_sdo_themes;
create table my_styles as select * from user_sdo_styles;
I'll export those tables with whatever data I am exporting.
After the import, I'll do something like this:
insert into user_sdo_styles (select * from my_styles);
insert into user_sdo_themes (select * from my_themes);
insert into user_sdo_maps (select * from my_maps);
When I am sure everything looks copacetic, I will drop the tables I created for export.
hope this helps.

Similar Messages

  • HT201272 To whom it may concern, This morning I purchased an album, on listening to it three of the tracks are not playing correctly. I read on an apple discussion board that I should delete them and re-download them. This did not work as I was asked to p

    To whom it may concern, This morning I purchased an album, on listening to it three of the tracks are not playing correctly. I read on an apple discussion board that I should delete them and re-download them. This did not work as I was asked to pay for them, and one of the tracks was an album only track.

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • HT1418 I have iPod4 and cannot see day-to-day appointments, etc on PC Outlook calendar.  Only repeated items (birthdays, anniversaries, etc.) are visible.  Where is the rest of my data and how do I restore it to the only calendar I have in Outlook?

    I have iPod4 and cannot see day-to-day appointments, etc on PC Outlook calendar.  Only repeated items (birthdays, anniversaries, etc.) are visible.  Where is the rest of my data and how do I restore it to the only calendar I have in Outlook?
    Thanks

    Hello Schimi. The Time Capsule is a kind of product that offer you two possibility:
    - To use the TC as a router or as an external HD.
    The difference between WPA and WPA 2 are:
    - They are two kinds of internet connection.
    WPA uses dynamic key encryption , which means that the key is constantly changing and makes the invasion of a wireless network more difficult than WEP . WPA is considered one of the highest levels of wireless security for your network and is recommended if your devices support this kind of encryption . Newer routers offer WPA2 security . WPA2 is compatible with WPA , but offers higher security level . In fact, it meets the high standards of many government agencies . If the router and computer support WPA2 , this should be your choice.
    If you need any help or if you find some difficult setting up it you can contact Apple Support.
    I am sure that they can help you with that.
    I am sory for the delay. I holpe that you solve your issue.

  • I want to access the database with user name and password without con. info/udl

    hi to all,
    im doing project related with database... normally i'll connect ***.udl file to open database.vi.
    now what is my question is I want to open the database with the user name with password.... y i need this because once i run the program the program should ask username and password to open database for write/read operation. if its wrong user name and password means program should be denied... 
    can any tell how to access the database toolkit with the username with password....
    im using labview 7.0... 
    i think my question is clear....waiting for reply thank you in advance...
    pls see this attachment.....
    Regards,
    N. Srinivasan
    Attachments:
    access.vi ‏37 KB

    i have already read that link in the discussion forum...but im still have some confussion in... i attached file is so like to give user name and password..?
    and one more things can tell wat to do in ODBC and MDB and in UDL for password lock.. each time i run the promgram it should ask password to acces the database.. 
     thank you a lot for your reply.. 
    it will be more more useful if u clear my doubts clearly....
    Regards,
    N. Srinivasan
    Attachments:
    user=pass.PNG ‏35 KB

  • I like to know the table name where all the Interface name ( Data Type and

    Dear Friends,
    I like to know the table name where all the Interface name ( Data Type and Message Type in IR ) is stored.
    Thanks.

    Hi,
    Please find the repository API’s in the SE24 class builder that can be used for accessing repository objects from the ABAP stack of SAP XI. Check CL_SRAPI* in the SE24 transactions for digging further.
    location of interface objects
    CL_SRAPI_DATA_TYPE---data type
    CL_SRAPI_DATA_TYPE_ENH---data type enhancement
    CL_SRAPI_FAULT_MESSAEG_TYPE--fault message type
    CL_SRAPI_MESSAGE_TYPE--message type
    CL_SRAPI_INTEGRATION_SCENARIO--integration scenario
    have a look at the table SXMSPMAST, SXMSCLUP & SXMSCLUR
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4fbe7b8e-0a01-0010-b69b-b7e717378f22#search=%22SXMSPMAST%20%2B%20XI%22
    That document has references to lot of tables maybe it can be of use to u.
    Look at the below thread for SXMB_MONI tables and Function module:
    In Which Database Table the Messages are Stored in XI
    Message Monitoring  --> corresponding tables?
    Edited by: Dharamveer Gaur on Oct 8, 2008 10:40 AM

  • Where does the logging in RDBMSRealm go  --and-- are some JavaDocs missing?

    I see that a LogOutputStream is created in the example
    class RDBMSRealm, but where do all of the log
    statements go. The LogOutputStream is created as:
    log = new LogOutputStream("RDBMSRealm");
    but I do not see and file called RDBMSRealm and/or
    I do not see the log statements on stdout.
    BTW, I do have logging set to the most detailed
    level (Info) from the console if this matters.
    Also, are there some JavaDocs missing from
    Weblogic's Reference website at
    http://edocs.bea.com/wls/docs60/javadocs/index.html
    LogOutputStream is an example. I do not see the
    class when I select the package
    weblogic.logging.
    Where is it?
    Much Thanks
    Bill Ralenkotter.

    Thanks Terry,
    Sorry, I should have mentioned that I am using WL6.0.
    Does anyone know what I need to do to get the RDBMS Realm log to start on
    WL6.0.
    About the missing JavaDocs: Also, if I am doing development using these
    classes I still do not
    understand why they are not on the 6.0 refernce site!
    About the missing JavaDocs,
    I see java docs for a lot of classes, but what document do I use that
    helps me to understand the entire framework? The Programming
    Weblogic Security does give this information.
    Example question: how do I get a reference to the realm to create
    users? Should I even be doing this?
    Thanks for your help.
    Bill.
    "THorner" <[email protected]> wrote in message
    news:B4D7B3CBF165D311844100C04F4E3E1B031246@DANCERACE01...
    If you are using WLS5.1 you much set the property
    weblogic.security.realm.debug=true
    then this information will be sent to stdout. This is set to false by
    default, as there is a lot of information, and it is a big performance
    hit.
    I think weblogic likes to avoid some of its APIs being public, which is
    annoying at times, but probably reasonable
    terry
    -----Original Message-----
    From: Bill Ralenkotter [mailto:[email protected]]
    Posted At: Thu 03 May 2001 16:00
    Posted To: weblogic.developer.interest.security
    Conversation: Where does the logging in RDBMSRealm go and are some
    JavaDocs missing?
    Subject: Where does the logging in RDBMSRealm go and are some
    JavaDocs missing?
    I see that a LogOutputStream is created in the example
    class RDBMSRealm, but where do all of the log
    statements go. The LogOutputStream is created as:
    log = new LogOutputStream("RDBMSRealm");
    but I do not see and file called RDBMSRealm and/or
    I do not see the log statements on stdout.
    BTW, I do have logging set to the most detailed
    level (Info) from the console if this matters.
    Also, are there some JavaDocs missing from
    Weblogic's Reference website at
    http://edocs.bea.com/wls/docs60/javadocs/index.html
    LogOutputStream is an example. I do not see the
    class when I select the package
    weblogic.logging.
    Where is it?
    Much Thanks
    Bill Ralenkotter.

  • Hi where is the database link previously under windows menu?

    Hi where is the database link previously under windows menu

    Removed feature: Server Behavior, Bindings and Components Panels and Database feature
    There is a single extension to restore these features. Extension is available at:* Vista/Windows 7: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\DisabledFeatures* Mac OS X: /Applications/Adobe Dreamweaver CC/Configuration/DisabledFeatures
    As seen on http://blogs.adobe.com/dreamweaver/2013/06/a-look-at-the-modernized-dreamweaver-cc.html
    Video instructions on how to install these back available here: http://www.youtube.com/watch?v=cB2vmNfcq7A

  • I recently purchased Foo Fighters Sonic Highways on iTunes.  Where is the album artwork, liner notes and pictures?   When purchasing/downloading entire album on iTunes, do you get this information with the purchase?

    I recently purchased Foo Fighters Sonic Highways on iTunes.  Where is the album artwork, liner notes and pictures?   When purchasing/downloading entire album on iTunes, do you get this information with the purchase?

    The album cover art should show on the album in the Music part of your library. For other pictures and/or notes, does the album description page in the store say that it's an iTunes LP (does it have an LP label against it in the store) ? If not then you will just get the tracks.

  • Some of the content in my Itunes library has the "!" next to them and is unable to play the songs as it says the source is no longer available

    Some of the content in my Itunes library has the "!" next to them and is unable to play the songs as it says the source is no longer available, yet on an old Ipod the same tracks are available and play fine?
    I would love to know how to consolidate all my music and be able to play it without one device saying they are unavailable yet another device says they are?
    Also how obsurd is it for Apple to charge for supporting their devices! Or is that just me?

    Welcome to the Apple Community.
    Have you tried using spotlight.

  • I'm getting a similar message: There was an error opening the database..." and the only option I get is a "quit" button. Help!

    I'm getting a similar message: First it offers me chance to repair - but if I it repair, it crashes.  Then if I select do not repair I get the following warning: There was an error opening the database..." and the only option I get is a "quit" button. Help!

    From the path in the error message you posted it appears that the library is not on your internal (root) drive.
    What type of disk is the library on and how is it formatted?
    The crash log Léonie is referring to is what is printed out when Aperture crashes. You wrote that Aperture crashes in your first post so if the app crashes you must have gotten a crash report.
    Message was edited by: Frank Caggiano

  • Where is the location of tablespace file and control file

    Hi, all
    where is the location of tablespace file and control file? tks

    For DataFiles, query DBA_DATA_FILES or V$DATAFILE
    For TempFiles, query DBA_TEMP_FILES or V$TEMPFILE
    For Online Redo Logs, query v$LOGFILE
    For Archived Redo Logs, query v$ARCHIVED_LOG
    for Controlfiles, query v$CONTROLFILE
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • Where is the Patterns pop-up menu, and how do I make the little ?

    Where is the Patterns pop-up menu, and how do I make the little crapper pop up? (huh. They don't have and emoticon for furious.)
    I have been searching the "Help" system for hours.  All I want to do is find a picture of an empty blue sky to put behind two airplanes.

    From the Toolbox, select the Paint bucket tool
    In the Paint bucket options at the top, change from "Foreground" to "Pattern".
    Click on the Pattern block to the right and the Pattern dialog will pop up.

  • Where is the database panel in Dreamweaver CC?  Was this feature removed?

    Where is the database panel in Dreamweaver CC?  Was this feature removed?
    Mike

    At the link I posted above.
    There is a single extension to restore these features. Extension is available at:
    Vista/Windows 7: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\Configuration\DisabledFeatures
    Mac OS X: /Applications/Adobe Dreamweaver CC/Configuration/DisabledFeatures
    To install, follow instructions in the video
    http://www.youtube.com/watch?v=cB2vmNfcq7A
    Nancy O.

  • Hi, I have a PPC Running OSX 10.5.4 and I want to delete the User "Guest"and "Shared"Folders on my HD, they won't let me change the permissions and I keep getting errors that say the permissions should be 0 and are 501 and having files i can't delete that

    Hi, I have a PPC Running OSX 10.5.4 and I want to delete the User "Guest"and "Shared"Folders on my HD, they won't let me change the permissions and I keep getting errors that say the permissions should be 0 and are 501 and having files i can't delete that go on and on ad infinitum... I think it's a virus or a corruption? Can anyone tell me or help me and let me know what I'm dealing with here or wether I'm mistaken and should leave it alone?
    I'd appreciate it.
    Thanks,
    Matt

    mattmakesvidiots wrote:
    Hi, I have a PPC Running OSX 10.5.4 and I want to delete the User "Guest"and "Shared"Folders on my HD
    Why do you want to delete those?  What have you done so far to do that?
    I doubt that Mac has a virus.  On the other hand, your attempts to deleted those folders may have caused corruption.
    Two other comments:
    1) Is there a reason that Mac hasn't been updated to OS X 10.5.8?
    2) You've been misled by the poor field labeling on this Web site into trying to type your entire post into the "subject" field.  In the future, just put a short summary of your post into that field.

  • I have a podcast that isn't updating with the weekly podcast.  I called the company that submits them and they say it's on itunes as they have been submitting them. Any suggestions?

    I have a podcast that isn't updating with the weekly podcast.  I called the company that submits them and they say it's on itunes as they have been submitting them. Any suggestions?

    Apple isnt here. this is a user based forum for technical questions. The solution is to restart, reset, and restore as new which is in the manual after that get it replaced for hard ware failure. if your within your one year warranty its replaced if it is out of the warranty then it is 199$

Maybe you are looking for

  • IMac - external DVD drive crashes Aimersoft DVD Ripping program

    I am using Aimersoft DVD ripping software (legal version) to make mp4 files out of DVDs. It works fine on the IMac internal DVD drive. But when I try and use an external DVD drive using FW800/400 conversion cable, Aimersoft program keeps crashing. An

  • Trying to end a class

    While trying to end a class I get an error that states: class, interface or enum expected the following closing statement is used } // end class Employee the following is the entire code // Employee.java //store and recall payroll info import java.ut

  • Colormunki photo and lightroom 5

    does anyone have a workflow for using colormunki photo, lightroom 5 and OS X Mavericks with an Epson 3880?

  • Standard Gamma & Linearity Values

    What are ACR's standard default values of gamma and linearity when creating a camera colour profile?

  • I pod will not restore

    hi my i pod touch will not restore it will go as far as waiting for i pod then no further any help out there