Export / Import to new Instance

Hi,
I try to export and import an existing schema from one 11.2 db to another.
The import runs without any errors.
If I try to import into the other 11.2 db the datapump shows privileges problems but I also tried to import as sys.
a log
CREATE TABLE "BPM_DATEN"."AUFTRAG" ("ID" NUMBER(10,0), "DATA" "SYS"."XMLTYPE" NOT NULL ENABLE) SEGMENT CREATION IMMEDIATE PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACH
ORA-39083: Objekttyp TABLE:"BPM_DATEN"."KATALOG" konnte nicht erstellt werden, Error:
ORA-01031: insufficient privileges
Does anyone can help digging this out ?
Thanks a lot :-/
*T                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Re,
thanks stupid mistake
*T
Edited by: tbrinkmann on May 29, 2012 1:00 AM

Similar Messages

  • APEX 4.Loosing translatable text when exporting/importing to new workspace

    Hi everyone,
    I am developing a bilingual application (base English translated to french) and I noticed something weird when exporting/importing to another workspace.
    First, my application is flagged as requiring synchronization after an import. Yes, I did check that it was not flagged right before the export. I did choose Export Translations.
    Secondly, when I look at the translated application in the new workspace, my Region Names are not translated anymore (in english instead of french). When I cmpare the 2 Translation Repositories (using the Manually Edit Translation Repository) I lost all Region Names entries (Column Description = Region name).
    Thirdly, when again comparing the 2 Translation Repositories, I have the same number of Strings and Distinct Strings by if I group by Column Descriptions the sub-totals differ and I don't even have the same distinct Column Descriptions.
    My test was done with my development workspace and a test workspace (where I deleted all application prior to my test) in the same instance.
    Anybody had these problems?
    Thanks all
    I am using 4.1.1.00.23 on the Oracle Database 11g Express Edition.

    Hi there,
    Well....I guess "they lied" would be me, huh?
    Unfortunately, this is a bug. This issue with region titles was first reported in Bug in 4.1.1: Region Title translations is lost I recorded it as Bug 13801807 - REGION TITLE TRANSLATIONS LOST WHEN IMPORTING AS A NEW APPLICATION ID. It's fixed in APEX 4.2.
    I hope this helps.
    Joel

  • Export/Import the new Theme from Apex 2.2

    Ok, I am so very sold the new theme 15 in Apex 2.2 after 1 day playing. I really want to use it in the new app I am going to build very soon. Export/Import does not work at all because all the images whatsoever are NOT there. May somebody let me know how to do this? or can we do it?
    Thanks in adavnce.

    Hello,
    I'll see what I can do about providing a zip of the images directory for the new themes, it's not my call though. You can at the moment use Firefox and save the page (which also saves supporting files) and that will get you most of the images.
    You would then have to go through the css and make sure to grab all the background images in that file. On or two page grabs of different page types should give you most the images.
    Carl

  • XML Multiple Data Export/Import into New Form

    Is it possible to import an XML file with multiple form data (exported via "Merge data files into spreadsheet" option, then saved as XML) into a "template" form and create individual forms from the multiple data sheet? In other words, I've merged 65 forms' data into an XML file. Now I'd like to import it all back into an updated form.
    What I've been doing now is exporting the XML data individually for each form and importing each form individually into the new form.
    One option is to extend rights to the user to import nd export themselves, but I'm still looking into the Formrouter service, which, if implemented, won't be for a while.
    Any solutions to this painful process?
    Thanks - Derek
    I just realized this may be a question for a different forum...Acrobat... My apologies.

    Hi Derek,
    Without the LC Enterprise server product(s) I don't think you will be able to achieve this. Acrobat.com give a mechanism of distributing the form, I am fairly sure it will allow you to view the responses in a new form.
    Also applying reader extensions to the form with Acrobat will not help, as this removes the ability of importing/exporting XML. See https://acrobat.com/#d=3lGJZAZuOmk8h86HCWyJKg. If you are extending rights with LC Reader Extensions ES then this restriction should not apply.
    If you have the 65 XML responses, I would be inclined to bite the bullet and manually import the XML into the new form.
    Good luck,
    Niall

  • Import error moving components to new instance

    I am new to APEX and am attempting to move components developed in the Oracle hosting instance of APEX to our new, in-house hosted site.
    Everything seems to be ok until the very end of the export when I receive an error when the following is executed:
    <start code>
    begin
    declare
    s1 varchar2(32767) := null;
    s2 varchar2(32767) := null;
    s3 varchar2(32767) := null;
    s4 varchar2(32767) := null;
    s5 varchar2(32767) := null;
    begin
    s1 := null;
    s2 := null;
    s3 := null;
    s4:=s4||'return false; end;--';
    s5 := null;
    wwv_flow_api.create_auth_setup (
    p_id=> 210165489245841025764 + wwv_flow_api.g_id_offset,
    p_flow_id=> wwv_flow.g_flow_id,
    p_name=> 'DATABASE ACCOUNT',
    p_description=>'Use database account credentials.',
    p_page_sentry_function=> s1,
    p_sess_verify_function=> s2,
    p_pre_auth_process=> s3,
    p_auth_function=> s4,
    p_post_auth_process=> s5,
    p_invalid_session_page=>'101',
    p_invalid_session_url=>'',
    p_cookie_name=>'',
    p_cookie_path=>'',
    p_cookie_domain=>'',
    p_ldap_host=>'',
    p_ldap_port=>'',
    p_ldap_string=>'',
    p_attribute_01=>'',
    p_attribute_02=>'wwv_flow_custom_auth_std.logout?p_this_flow=&APP_ID.&amp;p_next_flow_page_sess=&APP_ID.:1',
    p_attribute_03=>'',
    p_attribute_04=>'',
    p_attribute_05=>'',
    p_attribute_06=>'',
    p_attribute_07=>'',
    p_attribute_08=>'',
    p_required_patch=>'');
    end;
    null;
    end;
    ORA-06502: PL/SQL: numeric or value error ORA-06512: at "SYS.OWA_UTIL", line 325 ORA-06512: at "SYS.HTP", line 1322 ORA-06512: at "SYS.HTP", line 1397 ORA-06512: at "SYS.HTP", line 1689 ORA-06512: at "FLOWS_030000.WWV_FLOW_SW_API", line 428 ORA-01006: bind variable does not exist
    <end code>
    Can anyone help me with what this might be.
    Thanks in advance,
    Barry D.

    Scott,
    Sorry, I should have shared more details.
    APEX 3.0.1, RDBMS 10gR2. In summary, I am attempting to move an entire APEX application in the Oracle hosted instance, workspace PCPERMIT to an in-house hosted instance, workspace DEVPCPERMIT.
    The export seems to work without error. I am using the Export Application Utility
    (from selected application: EXPORT/IMPORT > EXPORT). I take all the defaults with the exception of OWNER OVERRIDE. I input the the new workspace name DEVPCPERMIT in this correpsonding box and save the SQL generated to my PC.
    With respect to import, I am logging into the DEVPCPERMIT workspace, uploading the script and executing from SQL WORKSHOP > SQL SCRIPTS > SCRIPT EDITOR. The scripts completes however when I view the results,
    the error that I mentioned is logged.
    Should you need anyother information, please let me know. Your help is appreciated.
    Thanks,
    Barry D.

  • Cannot see Private Workareas after Import in a New Instance

    Hi guys,
    I followed the procedure you recommended in the designer 9i installation guide about migrating/upgrading the repository and It seems I missed something:
    -I made an export of my repository owner with the RAU in Oracle Database 8.1.7 with Rep. version .4.0.12.89.9 using designer 6i.
    -I create a new database instance in another machine with Oracle 9i (9.0.1.3.0).
    -I create a repository with Designer 9i and applied the patch is suggested in OTN to upgrade the repository to the same version as my current repository (4.0.12.89.9)
    -I import the DMP file to the new instance using RAU.
    -Created the Repository users and applied the grants according to the documentation.
    -I followed the steps about Full Reconciliate, compile all, etc.
    -After some tries I could see all the workareas defined in my repository owner.
    -However, I cannot connect to every single PRIVATE WORKAREA that every user defined in the current database!!!.
    -Moreover, I had to delete the Repository User (from RAU) and recreate it in order to get access to the global share ara.
    -My problem is very problematic as I have defined about 20 users and everyone has its own private area.
    Is there something I have missed???
    TIA.
    Edgardo.

    I have posted 4 questions including this. 3 of them were in the Designer forum and none of them were answered. Don4t know if I have to ask for rights to be answered, as is very frustrating not to have a clue of every problem we reported.
    I have found the solution to this problem, just in case some other guys are going thru the same issue.
    The problem is that for some reason the repository is not GRANTING the role which name is:CKR_<repos_owner>, so, if you want that all users see all the workareas they used to see before upgrading/migration, connect to SQLPLUS as SYSTEM, SYS or <repos_owner> and give the role to every user:
    grant CKR_<repos_owner> to USER1;
    WHERE: repos_owner is the repository owner where you created your repository.
    USER1 is the user who uses the repository.
    Hope this helps.!!!!
    Ed.
    Hi guys,
    I followed the procedure you recommended in the designer 9i installation guide about migrating/upgrading the repository and It seems I missed something:
    -I made an export of my repository owner with the RAU in Oracle Database 8.1.7 with Rep. version .4.0.12.89.9 using designer 6i.
    -I create a new database instance in another machine with Oracle 9i (9.0.1.3.0).
    -I create a repository with Designer 9i and applied the patch is suggested in OTN to upgrade the repository to the same version as my current repository (4.0.12.89.9)
    -I import the DMP file to the new instance using RAU.
    -Created the Repository users and applied the grants according to the documentation.
    -I followed the steps about Full Reconciliate, compile all, etc.
    -After some tries I could see all the workareas defined in my repository owner.
    -However, I cannot connect to every single PRIVATE WORKAREA that every user defined in the current database!!!.
    -Moreover, I had to delete the Repository User (from RAU) and recreate it in order to get access to the global share ara.
    -My problem is very problematic as I have defined about 20 users and everyone has its own private area.
    Is there something I have missed???
    TIA.
    Edgardo.

  • Export/Import integrator metadata between instances

    Hi all
    We have hit recently a situation with some customers who would like to migrate integrator related metadata from one instance to another (integrator, components, mappings, layout, parameter list).
    They are doing this using FNDLOAD. For example
    Download phase on the source.
    FNDLOAD apps/apps 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bneint.lct XXCOHR_Integrators.ldt BNE_INTEGRATORS INTEGRATOR_ASN="XXCOHR" FNDLOAD apps/apps 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bnemap.lct XXCOHR_mapping.ldt BNE_MAPPINGS MAPPING_ASN="XXCOHR" FNDLOAD apps/apps 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bnelay.lct XXCOHR_Layouts.ldt BNE_LAYOUTS LAYOUT_ASN="XXCOHR" FNDLOAD apps/apps 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bnecont.lct XXCOHR_bnecont.ldt BNE_CONTENTS CONTENT_ASN="XXCOHR"
    Upload phase on the target.
    FNDLOAD apps/apps 0 Y UPLOAD $BNE_TOP/patch/115/import/bneint.lct XXCOHR_Integrators.ldt FNDLOAD apps/apps 0 Y UPLOAD $BNE_TOP/patch/115/import/bnelay.lct XXCOHR_Layouts.ldt FNDLOAD apps/apps 0 Y UPLOAD $BNE_TOP/patch/115/import/bnemap.lct XXCOHR_mapping.ldt FNDLOAD apps/apps 0 Y UPLOAD $BNE_TOP/patch/115/import/bnecont.lct XXCOHR_bnecont.ldt
    The problem is that after trying to create a document using the new BNE elements they are getting various errors.
    No parameter list definition at parameter list idor No Mappings exist for the specified Content.
    I have had a look at some patch delivering integrators via the same LCT files , and the unified driver has for example the following sequence which is executed during the patch
    exec fnd bin FNDLOAD bin &phase=last+1 checkfile:pay:patch/115/import/D:pyinfcmp.ldt &ui_apps 0 Y UPLOAD @BNE:admin/import/bnecomp.lct @PAY:patch/115/import/D/pyinfcmp.ldt - UPLOAD_MODE=NLS WARNINGS=TRUE
    exec fnd bin FNDLOAD bin &phase=last+1 checkfile:pay:patch/115/import/D:pyinfcnt.ldt &ui_apps 0 Y UPLOAD @BNE:admin/import/bnecont.lct @PAY:patch/115/import/D/pyinfcnt.ldt - UPLOAD_MODE=NLS WARNINGS=TRUE
    exec fnd bin FNDLOAD bin &phase=last+1 checkfile:pay:patch/115/import/D:pyinfint.ldt &ui_apps 0 Y UPLOAD @BNE:admin/import/bneint.lct @PAY:patch/115/import/D/pyinfint.ldt - UPLOAD_MODE=NLS WARNINGS=TRUE
    exec fnd bin FNDLOAD bin &phase=last+1 checkfile:pay:patch/115/import/D:pyinflay.ldt &ui_apps 0 Y UPLOAD @BNE:admin/import/bnelay.lct @PAY:patch/115/import/D/pyinflay.ldt - UPLOAD_MODE=NLS WARNINGS=TRUE
    exec fnd bin FNDLOAD bin &phase=last+1 checkfile:pay:patch/115/import/D:pyinfmap.ldt &ui_apps 0 YUPLOAD @BNE:admin/import/bnemap.lct @PAY:patch/115/import/D/pyinfmap.ldt - UPLOAD_MODE=NLS WARNINGS=TRUE
    exec fnd bin FNDLOAD bin &phase=last+1 checkfile:pay:patch/115/import/D:pyinfpar.ldt &ui_apps 0 Y UPLOAD @BNE:admin/import/bneparamlist.lct @PAY:patch/115/import/D/pyinfpar.ldt - UPLOAD_MODE=NLS WARNINGS=TRUE
    I couldn' find anywhere this process being documented in an official document or Note.These customers have used some external non-oracle references fordoing so.
    Is there anywhere a document giving more information on how this export/import is supposed to work?
    Please reply to me directly as I am not part of this mailing list.
    Thank you and best regards,
    Dan

    Looks like you have not transferred your parameter list. Please use following code to download and upload your parameter list.
    Download
    FNDLOAD apps/$FNDPWD 0 Y DOWNLOAD $ BNE_TOP / admin / import / bneparamlist.lct GENERAL_201.ldt BNE_PARAM_LISTS INTEGRATOR_ASN = "HX" INTEGRATOR_CODE = "GENERAL_201_INTG"
    Upload
    FNDLOAD apps/$FNDPWD 0 Y UPLOAD $BNE_TOP/admin/import/bneparamlist.lct GENERAL_201.ldt
    For mapping there is a possibility that you might have migrated wrong content. You need to migrate content which is none instead 'text'
    HTH

  • I have some audio files on my previous phone which I would like to export to my new iPhone 5. I am told that you can only import files from iTunes. Is that true? If not, how do I import files from my phone - or my Macbook pro laptop-to my phone?  Thanks!

    I have some audio files on my previous phone which I would like to export to my new iPhone 5. I am told that you can only import files from iTunes. Is that true? If not, how do I import files from my phone - or my Macbook pro laptop-to my phone?  Thanks!

    iTunes will only import music from your phone that was purchased from the iTunes store.  To transfer music from other sources you have to use 3rd party software, such as PhoneView.

  • How to get existing library imported to new itunes install, old library was  not backed up or exported

    How to get existing library imported to new itunes install, old library was not backed up or exported.  This occured due to Win 7 user profile was corrupt.

    I know that in Mac OS X one can pick which library to use by holding down the option key while starting iTunes. What's the Windows equivalent?
    Press the Shift key.
    WIll the fact that the music is now on another physical drive make a difference
    No.
    I know the previous install is at least 7.0, but I have no idea about which point release.
    Try checking the content of the iTunes Music Library.xml file.
    Finally, what's the expected behaviour (or required procedure) with respect to reauthorization of this computer to use the same ITMS-purchased files?
    You will be asked to reauthorize the computer.
    (28446)

  • Page Export / Import in between two workspaces in the same instance

    Hi All,
    I am trying to import a page from one application to another application in a different work space in the same instance.
    In the export file i have changed the target application id and workspace id. I am facing below error while importing the specific page.
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-00001: unique constraint (FLOWS_030100.WWV_FLOW_PAGE_PLUGS_PK) violated &lt;pre&gt;declare s varchar2(32767) := null; l_clob clob; l_length number := 1; begin s := null; wwv_flow_api.create_page_plug ( p_id=&amp;gt; 190100618443233983 + wwv_flow_api.g_id_offset, p_flow_id=&amp;gt; wwv_flow.g_flow_id, p_page_id=&amp;gt; 31, p_plug_name=&amp;gt; 'Upload Scripts', p_region_name=&amp;gt;'', p_plug_templa
    Error installing page.
    Return to application.
    Any help for this.

    I got the solution for the page export/import in between 2 workspaces.
    Only thing is we need to do some template related changes in the page, item, region attributes .
    Ref: http://www.dba-oracle.com/htmldb/t_exporting_copyin_pages_screens_workspaces.

  • Export & import of sap sid schema for building a new system

    Hi,
    We have a quality BW system which runs on HANA SPS07 (Revision 73). The database contains many schemas in addition to sap<sid>, the rest of the schemas are used through native HANA and are very huge.
    We are planning to build a new test BW system by system copy method from quality BW systems. We dont want the export/import of entire database as it will take a long time because of huge native HANA schemas, also the schemas other than sap<sid> are not required in the target. Please let me know how to copy only the sap<sid> schema to the new database.
    Thanks & Regards,
    Saravanan

    Hi Saravanan,
    Try with rigth clic on schema -> Export,
    Select CSV format, choose a directory.
    And for import the schema use the follow query:
    import "old_schema"."*" as CSV from 'Directory' with replace threads 10 rename schema "old_schema" to "NEW_schema_name";
    Regards.
    Ferando.

  • How to export/import new SCV and products?

    Hi,
    I have created a new product, product version, software component and software component version in the SLD.
    Now I need to import that to another XI system with a different SLD. The product, product version etc. is unknown in the target XI system.
    How/What do I have to export all these new things?
    If I try to export/import the SCV, I get the following message during import:
    "<b>The target namespace for the special import already contains data for one or more export lines. Continuing this import may corrupt the state of your data.</b>
    Import CIM models and data to the current namespace: sld/active  (Database). 
    Ensure that this import will not cause an inconsistent state of your data.
    If you are uncertain about the consequences of this import, you should cancel it. "
    Do I need more export/import steps? That means: First the product, than the product version, than the SV and finally the SVC?
    Thanks and regards,
    Christian

    Hi Christian,
    if you want to move SLD content
    have a look at this doc:
    https://websmp110.sap-ag.de/~sapidb/011000358700000315022005E.PDF
    it's an officla guide to moving SLD content
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • ACS 5.3 - How to copy DB to a new instance of ACS 5.3

    I need to copy an existing ACS 5.3 database to another instance of ACS 5.3 that I've deployed.  I can't set up a primary/secondary between these two and do the deed via replication.  So it's going to have to be a export/import or a backup/restore.  I've been searching for days for a solution to what surely is a trivial task.
    Does anyone have any hints on how to do this?  Either the CLI or the GUI is fine with me.  I feel like an idiot...
    -drh

    Hello,
    You are not idiot at all. This is a problem that I was facing myself (not exact issue but very similar).
    Now, I think there is no supported way to move the DB itself in cisco docs. There is a way where you can copy the DB files via FTP from the old machine and restore them in the new machine. That will need a root patch to have a root access to both boxes.
    If you are authorized to open TAC cases then please directly do because they know better about the steps.
    But I am thinking about one thing, You can build your new ACS servers from scratsh and put them up on the network then remove the old machine. Keep the old machine up without putting it on the network so that you can access it the time you need.
    Let the new DB grow on the new server and after a few months you can just remove the old machine because you don't want that DB anymore (if you are keeping the DB on the old machine and it was operational the old data will be deleted anyway as per your retention period you configure on the ACS).
    So, I suggest (which is easier for you of possible) to keep the old machine running with access to the DB and install new servers and keep their own DB. After the retention period passes and you don't want the old data anymore just remove the machine.
    one other way (did not try it at all) is to take a full view DB backup from old machine and then configure same repository on the new machine. The full backup file may appear on the "Resotre" page where you can choose it and restore (I am not sure if old and new machines need to be with same hostname for the file to appear. you try it anyway it may work).
    HTH
    Amjad
    Rating useful replies is more useful than saying "Thank you"

  • Best choice for exporting / importing EUL

    Hi all
    I have been tasked with migrating an EUL from a R11 to a R12 environment. The Discoverer version on both environments is 10.1.2 and the OS is Solaris on oracle db's.
    I am unfortunately not experienced with Discoverer and there seems to be no one available to assist for various reasons. So I have been reading the manual and forum posts and viewing metalink articles.
    I tried exporting the entire eul via the wizard and then importing it to the new environment but i was not successfull and experienced the system hanging for many hours with a white screen and the log file just ended.
    I assumed this was a memory problem or slow network issues causing this delay. Someone suggested I export import the EUL in pieces and this seemed to be effective but I got missing item warnings when trying to open reports. This piece meal approach also worried me regarding consistency.
    So I decided to try do the full import on the server to try negate the first problem I experienced. Due to the clients security policies I am not able to open the source eul and send it to our dev. I was able to get it from their dev 11 system but I dismissed this as the dev reports were not working and the only reliable eul is the Prod one. I managed to get a prod eex file from a client resource but the upload to my server was extremely slow.
    I asked the dba to assit with the third option of exporting a db dump of the eul_us and importing this into my r12 dev environment. I managed this but had to export the db file using sys which alleviated a priviledge problem when logging in, I have reports that run and my user can see the reports but there are reports that were not shared to sysadmin in the source enviroment are now prefixed with the version 11 user_id in my desktop and the user cannot see her reports only the sysadmin ones.
    I refreshed the BA's using a shell script I made up which uses the java cmd with parameters.
    After some re reading I tried selecting all the options in the validate menu and refreshing in the discover admin tool.
    If I validate and refresh the BA using the admin tool I get the hanging screen and a lot of warnings that items are missing( so much for my java cmd refresh!) and now the report will not open and I see the substitute missing item dialogue boxes.
    My question to the forum is which would be the best approach to migrate the entire eul from a R11 instance to a R12 instance in these circumstances?
    Many thanks
    Regards
    Nick

    Hi Srini
    The os and db details are as follows:
    Source:
    eBus 11.5.2
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    SunOS 5.10 Generic_142900-11 sun4u sparc SUNW,Sun-Fire-V890
    Target:
    ebus 12.1.2
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production DEV12
    SunOS 5.10 Generic_142900-11 sun4u sparc SUNW,Sun-Fire-V890
    Yes the DBA initially did an exp for me using EUL_US as the owner but a strange thing happened with privileges and also, some of the imported tables appeared in the target environment under the apps schema(21 tables) even though the eul_us exp had been 48 tables.
    I also had a problem on the db with "eul_us has insufficient privileges on table space discoverer" type errors.
    I checked the eul_us db privileges and was unable to resolve this initial privilege error even though the privileges were granted to eul_us.
    The dba managed to exp as system and then import it with the full=y flag in the import command which seems to bring in the privileges.
    Then I ran the eul5_id.sql and then made up a list of the business areas and made a sh script to refresh the business areas as follows:
    java -jar eulbuilder.jar -connect sysadmin/oracle1@dev -apps_user -apps_responsibility "System Administrator" -refresh_business_area "ABM Activities" -log refresh.log
    This runs successfully and I can log in select business area and grant access to the users. The reports return data.
    Then one of the users said she can't see all her reports. I noticed some if I opened desktop that were sitting there prefixed with a hash and her version 11 user id.
    So back to the manuals and in the disco admin help the instructions are to first go to view > validate > select all options then go to the business area and click file refresh. This gives me a lot of warnings about items that are missing. I assume this is because the item identifiers brought across in the db dump are the version 11 ones and thus not found in the new system.
    Any suggestions?
    Many thanks
    Nick

  • Upgrade from 8.1.6 to 9.2.0.7 via export/import

    Has anyone done this or know if it's possible to simply build a 9.2.0.7 instance, then use export/import to perform the upgrade from 8.1.6 to 9.2.0.7 since a direct manual upgrade from 8.1.6 is not supported??
    TIA

    Yes, building a database in a new release and then exporting the existing database using its version of the exp utility, performing a binary copy of the exp file to the new server, and then running the new version imp utility using the transferred dmp file was the standard method of moving databases to new platforms/versions for many years. The same process could always be used on the same server between equal or from a current to a new release.
    HTH -- Mark D Powell --

Maybe you are looking for

  • CS5 apps crash during launch in XP

    Hi, I just bought and installed CS5 Design Premium and can't get it to work, including Photoshop.  Most of the apps crash.  They crash during launch (splash screen) and therefore never get going.  Each app seems to display different error messages. 

  • IPhoto 11 problems, crash, libr manager

    iPhoto 11 (9.2) Lion 10.7.3, iPhoto Library Manager, duplicate annhilator, thumbnail annihilator 27 inch, Mid2011, 2.7 Ghz Intel Core i5, 4 GB mem 1333 MHz DDR3. When my Mac G5 tower hd crashed in December, it did a terrible thing to my photos. I was

  • Interface Mapping VS Message Mapping

    What is the meaning of Interface mapping and Message mapping in real business? I think it is something like the difference between the class and object. object is an instance of class. While talking about the mapping, there are the source interface a

  • I have a MacBook Air, my iMovie is not responding... how do I make it work?

    HI, My MacBook Air, was bought less than 4 months ago. I have been able to use imovie for the past 2-3 months. But now, the iMovie application is not responding. I have tried again and again. I shut down the Macbook Air. I restarted it and it just do

  • Cannot log into mail after move from mobile me

    Just upgraded to iCloud.  After the move, the mail application cannot sign into the new iCloud mail account.  I can log into the browser, and I can see emails there.  But the mail application on my mac pops up a dialog saying that the password was re