Can anyone give me the steps for moving the repository databases in 9.3.0?

We are in the 9.3.0 environment and I need to move the four repository databases for essbase, biplus and webanalysis/workspace to a new machine. I tested moving the databases and rerunning the config util, but I lost my sample reports I created earlier. Does anyone have a step by step procedure for moving the repositories?
Thanks,
-C.

If you are moving reports why don't you bulk export them from workspace and then import them into your target.
Are you talking about migrating the repository across different shared services environments, if so then I doubt you will have much luck with trying to migrate the workspace repository as it pretty tied in with shared services.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Can anyone give me some documents for data cluster

    Hi,
    can anyone give me some documents for data cluster?
    ths!
    regards!

    Hi ,
    The following is a documentation on the <b>Data Cluster</b>:
    <b>Data clusters</b> are specific to ABAP. Although it is possible to read a cluster database using SQL statements, only ABAP can interpret the structure of the data cluster.
    You can store <b>data clusters</b> in special databases in the ABAP Dictionary. These are called ABAP cluster databases, and have a prescribed structure:
    <u><b>Cluster Databases</b></u> ( I have explained the cluster databse below )
    This method allows you to store complex data objects with deep structures in a single step, without having to adjust them to conform to the flat structure of a relational database. Your data objects are then available systemwide to every user. To read these objects from the database successfully, you must know their data types.
    You can use cluster databases to store the results of analyses of data from the relational database. For example, if you want to create a list of your customers with the highest revenue, or an address list from the personnel data of all of your branches, you can write ABAP programs to generate the list and store it as a data cluster. To update the <b>data cluster</b>, you can schedule the program to run periodically as a background job. You can then write other programs that read from the data cluster and work with the results. This method can considerable reduce the response time of your system, since it means that you do not have to access the distributed data in the relational database tables each time you want to look at your list.
    <b>Cluster Database :</b>
                    Cluster databases are special relational databases in the ABAP Dictionary that you can use to store data clusters. Their line structure is divided into a standard section, containing several fields, and one large field for the <b>data cluster.</b>
    <b>Creating a Directory of a Data Cluster</b>
    To create a directory of a data cluster from an ABAP cluster database, use the following statement:
    Syntax
    <b>IMPORT DIRECTORY INTO <dirtab>
                     FROM DATABASE <dbtab>(<ar>)
                     [CLIENT <cli>] ID <key>.</b>
    This creates a directory of the data objects belonging to a data cluster in the database <dbtab> in the internal table <dirtab>. You must declare <dbtab> using a TABLES statement.
    To save a <b>data cluster</b> in a database, use the <b>EXPORT TO DATABASE</b> statement .
    For <ar>, enter the two-character area ID for the cluster in the database. The name <key> identifies the data in the database. Its maximum length depends on the length of the name field in <dbtab>. The CLIENT <cli> option allows you to disable the automatic client handling of a client-specific cluster database, and specify the client yourself. The addition must always come directly after the name of the database.
    The IMPORT statement also reads the contents of the user fields from the database table.
    If the system is able to create a directory, SY-SUBRC is set to 0, otherwise to 4.
    The <b>internal table</b> <dirtab> must have the ABAP Dictionary structure CDIR.
    <b>******** Sample Program illustrating the data cluster .</b>
    PROGRAM Zdata_cluster.
    TABLES INDX.
    ******to save data objects in cluster databases
    DATA: BEGIN OF ITAB OCCURS 100,
            COL1 TYPE I,
            COL2 TYPE I,
          END OF ITAB.
    DO 3000 TIMES.
      ITAB-COL1 = SY-INDEX.
      ITAB-COL2 = SY-INDEX ** 2.
      APPEND ITAB.
    ENDDO.
    INDX-AEDAT = SY-DATUM.
    INDX-USERA = SY-UNAME.
    INDX-PGMID = SY-REPID.
    EXPORT ITAB TO DATABASE INDX(HK) ID 'Table'.
    WRITE: '    SRTF2',
         AT 20 'AEDAT',
         AT 35 'USERA',
         AT 50 'PGMID'.
    ULINE.
    SELECT * FROM INDX WHERE RELID = 'HK'
                       AND   SRTFD = 'Table'.
      WRITE: / INDX-SRTF2 UNDER 'SRTF2',
               INDX-AEDAT UNDER 'AEDAT',
               INDX-USERA UNDER 'USERA',
               INDX-PGMID UNDER 'PGMID'.
    ENDSELECT.
    ****To create a directory of a data cluster from an ABAP ****cluster database
    DATA DIRTAB LIKE CDIR OCCURS 10 WITH HEADER LINE.
    IMPORT DIRECTORY INTO DIRTAB FROM DATABASE
                                      INDX(HK) ID 'Table'.
    IF SY-SUBRC = 0.
      WRITE: / 'AEDAT:', INDX-AEDAT,
             / 'USERA:', INDX-USERA,
             / 'PGMID:', INDX-PGMID.
      WRITE  / 'Directory:'.
      LOOP AT DIRTAB.
        WRITE: / DIRTAB-NAME,  DIRTAB-OTYPE, DIRTAB-FTYPE,
                 DIRTAB-TFILL, DIRTAB-FLENG.
      ENDLOOP.
    ELSE.
      WRITE 'Not found'.
    ENDIF.
    *******run this program and see the result.
    Hope this documentation will give you an idea of data cluster.
    if useful, do reward with the points.
    Regards,
    Kunal.

  • When i connect my iphone 4,an error message saying usb device is malfunctioning is appearing...can anyone give me a solution for this?

    when i connect my iphone 4,an error message saying usb device is malfunctioning is appearing...can anyone give me a solution for this?i tried using on a different pc.but still get the same result..

    First thing i would try is to use another cable if available.

  • Can anyone give me an example for crm_svy_..._pai?

    Hi all, I have a survey, there are several questions. After I input the answers, I click the 'CHECK' button, I will check the answers. There will be different response to my answers. If the answer is not correct, I will post an error message.
    And I also need to retrieve data from tables to fill the blank.
    I am a beginner for CRM survey, can anyone help me? I create a FM:crm_svy_..._pai, and code in it right? But how can I do it?
    Can anyone give me an example for crm_svy_..._pai to do what I need?
    Many many thanks in advance!! 
    Heare is an example, but I don't its function and how does it work..
      read table lt_all_values into ls_value
                               with key answer_id = 'get_value'.
      if sy-subrc = 0.
        data: lt_values type crm_svy_api_string_t.
        append ls_value-value to lt_values.
        call method ir_survey_values->values_set
          exporting
            i_question_id = 'set_value'
            i_answer_id   = 'set_value'
            it_values     = lt_values.
      endif.

    Hi Yu,
    Could you tell how you solved your issue?
    Regards and tx in advance,
    Mon

  • Can anyone give me a bean for JAVAMAIL in JSP?

    Can anyone give me a bean for JAVAMAIL in JSP?
    I'd like to use a bean instead of writing a complete jsp page for each of my send mail options!!

    Have a look in the javaMail forum, youll find code for a class in there without too much trouble.

  • Can anyone give me a lit of ALL the final cut pro's in chronological order?

    Can anyone give me a lit of ALL the final cut pro's in chronological order?
    Thank-you

    Everything you need is here:-
    http://en.wikipedia.org/wiki/Final_Cut_Pro_X

  • What are the steps for using the backup files to reload data to my blackberry curve (8310, i think)?

    What are the steps for using the backup files to reload data to my blackberry curve (8310, i think)?

    Connect BB to PC. On 'Desktop Manager'>Backup & Restore tab>Click Restore. Double click .ipd file (backup file created from Desktop Manager).

  • What is the steps for flash recovery of database

    pls tell us what sre the steps for the flash recovery of the database.
    how will we be do the auto recovery from flash recovery area......
    rakesh

    See
    [url http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14220/backrec.htm#sthref2379]Flashback Concepts
    [url http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_9011.htm#sthref6870]Flashback Database
    [url http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_9012.htm#sthref6882]Flashback Table

  • What are the steps for moving FPGA to new target

    I thought I asked this question once but can't find it. So if this is a repeat I apologize.
    I have a PXI-7831r project that works. I need to cake a copy that runs on a PXI-7851r on another machine.
    What are the steps that I need to take and potential pitfalls.
    Thanks you in advance
    Judd
    Judd

    I hope this page helps.
    http://www.ni.com/white-paper/5075/en
    TailOfGon
    Certified LabVIEW Architect 2013

  • Sending myself Spam - can anyone give me a way for...

    Hi from a newbie!
    I've got a spamming problem on my btinternet mail account which I can't seem to shake off.
    My account is sending me mails regarding various subjects (mainly spurious jobs, as I'm looking at the moment); not thankfully to anyone else at the moment, but I can't see how or why.
    An additional problem is that as I'm accessing the account via webmail, I can use up to 3 different machines.  All three are running McAfee (2 with BT NetProtect).  All three run scans without threats showing up.
    I DID have a problem where the account started sending spam out to my address book, but I got around that by changing my password, but this problem still exists.  Can anyone help please?
    Solved!
    Go to Solution.

    what's probably happening is you are geting spammed by a stranger, but they are setting the from address to yours. So when it arrives to you, it looks like its from your account, but it's really not.
    Email does not authenticate the "from" address. If you have the right software, you can put anything you like in there.

  • Can anyone give me some tech info about the camera on my Pre?

    I'm about to set off on a long, lightweight trip and plan to use the Pre as my only camera on this trip.  I have a few questions about the pre camera which I can't seem to find answers to on the phone itself:
    1.  Is there any way to set the 'picture quality' on the camera - ie, low-res / hi-res - or do I just get what I'm given.
    2.  How 'big' is the filesize of each picture going to be - in other words, how many will I get before my 8Gb pre is 'full'
    3.  Is there any way to zoom with the camera?  I think not, but thought I'd ask...
    4.  To get the pictures off the phone, I plan to send them as attached files with text messages or email, back to base.  Then I could delete them from the pre, to create space. Will this method attach only low quality versions of each picture, or will the original-quality picture be sent?
    Thanks for being here.
    Jeff
    Post relates to: Pre p100ueu (O2)

    In answer to your questions,
    1. No, there is no way to change the resolution.
    2. It depends on the picture you take. I have not seen a spec. on the default file size. I suspect they will be in the KB range.
    3. No, no way to zoom.
    4. When you send the picture it should not change the resolution.
    For reference purposes, click on the following link for the support page for your device on the kb.palm.com webpage.
    http://kb.palm.com/wps/portal/kb/emea/pre/p100eww/​o2/home/page_en.html
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.

  • "An error occurred while attempting to change modules" message occurs whenever I try to run Lightroom. Can't use it. Can anyone give me any hint to solve the problem?

    I found a solution in one of Apple forums. I will copy her post:
    "

I was checking the differences between my normal admin User account/Library/Application Support/Adobe/Lightroom contents and the one on the clean other admin User folder in the same place on the G4 PB where Lightroom2 had launched normally and noticed that on the one that works there are a slew of folders (Develop Presets, Export Presets, External Editor Presets, Filename Templates, Filter Presets, etc etc). On the main admin account, there was only one, the first. So it seemed the install on that account didn't load all the needed info. I simply copied the missing folders from the account that worked into the Public folder, switched to my main account and added those missing folders in the proper place. Voilà!. Now Lightroom launches normally and I don't get the dreaded missing modules alert."
    The problem with me is that I do not have a working copy of Lightroom, just 1 account in which it doesn't run and don't know where to copy the missing folders from. Please send some advice.

    Surely the Adobe forums are the place for help with Adobe applications. The fact that the problem doesn't occur on your daughter's machine suggests that it's not an issue with Mavericks but a local problem on your own machine.

  • URGENT:Diagnose The Steps for Creating a Standby Database

    Why Following Steps Can Not Succeed? What are the problems?
    The Steps of Creating a Physical Standby Database
    SQL>alter system set db_recovery_file_dest_size=2000m scope=both;
    SQL>alter system set db_recovery_file_dest='C:\oracle\product\10.2.0/flash_recovery_area' scope=both;
    SQL> shutdown immediate
    SQL> startup mount
    SQL> alter database archivelog;
    SQL>alter system set db_flashback_retention_target=120 scope=both;
    SQL> alter database flashback on;
    SQL> alter database force logging;
    #The Primary Database Pfile after being edited
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    # SGA Memory
    sga_target=370147328
    # Job Queues
    job_queue_processes=10
    # Shared Server
    dispatchers="(PROTOCOL=TCP) (SERVICE=orcl10XDB)"
    # Miscellaneous
    compatible=10.2.0.1.0
    # Security and Auditing
    audit_file_dest=C:\oracle\product\10.2.0/admin/orcl10/adump
    remote_login_passwordfile=EXCLUSIVE
    # Sort, Hash Joins, Bitmap Indexes
    pga_aggregate_target=122683392
    # Database Identification
    db_domain=""
    db_name=orcl10
    # File Configuration
    control_files=("C:\oracle\product\10.2.0\oradata\orcl10\control01.ctl", "C:\oracle\product\10.2.0\oradata\orcl10\control02.ctl", "C:\oracle\product\10.2.0\oradata\orcl10\control03.ctl")
    db_recovery_file_dest=C:\oracle\product\10.2.0/flash_recovery_area
    db_recovery_file_dest_size=2147483648
    # Cursors and Library Cache
    open_cursors=300
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_tablespace=UNDOTBS1
    # Diagnostics and Statistics
    background_dump_dest=C:\oracle\product\10.2.0/admin/orcl10/bdump
    core_dump_dest=C:\oracle\product\10.2.0/admin/orcl10/cdump
    user_dump_dest=C:\oracle\product\10.2.0/admin/orcl10/udump
    # Processes and Sessions
    processes=150
    # Cache and I/O
    db_block_size=8192
    db_file_multiblock_read_count=16
    DB_NAME=orcl10
    DB_UNIQUE_NAME=orcl10
    LOG_ARCHIVE_CONFIG='DG_CONFIG=(orcl10,stdby4)'
    LOG_ARCHIVE_DEST_1=
    'LOCATION=/arch1/orcl10/
    VALID_FOR=(ALL_LOGFILES,ALL_ROLES)
    DB_UNIQUE_NAME=orcl10'
    LOG_ARCHIVE_DEST_2=
    'SERVICE=stdby4 LGWR ASYNC
    VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE)
    DB_UNIQUE_NAME=stdby4'
    LOG_ARCHIVE_DEST_STATE_1=ENABLE
    LOG_ARCHIVE_DEST_STATE_2=ENABLE
    REMOTE_LOGIN_PASSWORDFILE=EXCLUSIVE
    LOG_ARCHIVE_FORMAT=%t_%s_%r.arc
    LOG_ARCHIVE_MAX_PROCESSES=30
    FAL_SERVER=stdby4
    FAL_CLIENT=orcl10
    DB_FILE_NAME_CONVERT='stdby4','orcl10'
    LOG_FILE_NAME_CONVERT=
    '/arch1/stdby4/','/arch1/orcl10/','/arch2/stdby4/','/arch2/orcl10/'
    STANDBY_FILE_MANAGEMENT=AUTO
    SQL> create spfile from pfile;
    RMAN> connect target
    RMAN> backup database;
    ###TheBackupHandle==C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\ORCL10\BACKUPSET\2007_11_06\O1_MF_NCSNF_TAG20071106T064915_3LZ7LRN8_.BKP
    RMAN> backup datafile1,2,3,4,5;
    C:\DocumentsandSettings\Administrator>mkdir C:\ORACLE\PRODUCT\10.2.0\ORADATA\temp\stdby4
    SQL> alter database create standby controlfile as '/temp/stdby4.ctl';
    SQL> create pfile='/temp/initstdby4.ora' from spfile;
    #Pfile Edited for The Physical Standby Database
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    # SGA Memory
    sga_target=370147328
    # Job Queues
    job_queue_processes=10
    # Shared Server
    dispatchers="(PROTOCOL=TCP) (SERVICE=stdby4XDB)"
    # Miscellaneous
    compatible=10.2.0.1.0
    # Security and Auditing
    audit_file_dest=C:\oracle\product\10.2.0/admin/stdby4/adump
    remote_login_passwordfile=EXCLUSIVE
    # Sort, Hash Joins, Bitmap Indexes
    pga_aggregate_target=122683392
    # Database Identification
    db_domain=""
    db_name=orcl9
    # File Configuration
    control_files=("C:\oracle\product\10.2.0\oradata\stdby4\control01.ctl", "C:\oracle\product\10.2.0\oradata\stdby4\control02.ctl", "C:\oracle\product\10.2.0\oradata\stdby4\control03.ctl")
    db_recovery_file_dest=C:\oracle\product\10.2.0/stdby4/flash_recovery_area
    db_recovery_file_dest_size=2147483648
    # Cursors and Library Cache
    open_cursors=300
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_tablespace=UNDOTBS1
    # Diagnostics and Statistics
    background_dump_dest=C:\oracle\product\10.2.0/admin/stdby4/bdump
    core_dump_dest=C:\oracle\product\10.2.0/admin/stdby4/cdump
    user_dump_dest=C:\oracle\product\10.2.0/admin/stdby4/udump
    # Processes and Sessions
    processes=150
    # Cache and I/O
    db_block_size=8192
    db_file_multiblock_read_count=16
    DB_UNIQUE_NAME=stdby4
    LOG_ARCHIVE_CONFIG='DG_CONFIG=(orcl10,stdby4)'
    DB_FILE_NAME_CONVERT='orcl10','stdby4'
    LOG_FILE_NAME_CONVERT=
    '/arch1/orcl10/','/arch1/stdby4/','/arch2/orcl10/','/arch2/stdby4/'
    LOG_ARCHIVE_FORMAT=log%t_%s_%r.arc
    LOG_ARCHIVE_DEST_1=
    'LOCATION=/arch1/stdby4/
    VALID_FOR=(ALL_LOGFILES,ALL_ROLES)
    DB_UNIQUE_NAME=stdby4'
    LOG_ARCHIVE_DEST_2=
    'SERVICE=orcl10 LGWR ASYNC
    VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE)
    DB_UNIQUE_NAME=orcl10'
    LOG_ARCHIVE_DEST_STATE_1=ENABLE
    LOG_ARCHIVE_DEST_STATE_2=ENABLE
    REMOTE_LOGIN_PASSWORDFILE=EXCLUSIVE
    STANDBY_FILE_MANAGEMENT=AUTO
    FAL_SERVER=orcl10
    FAL_CLIENT=stdby4
    C:\Documents and Settings\Administrator>oradim -new -sid stdby4 -startmode manual
    Create Listener and Network Service Name for Standby Database.Stop and start listener(not need)
    SQL>create spfile from pfile='/temp/initstdby4.ora';
    C:\Documents and Settings\Administrator>set oracle_sid=stdby4
    SQL> startup mount;
    ORA-01078: failure in processing system parameters
    LRM-00109: ???????????????? 'C:\ORACLE\PRODUCT\10.2.0\DB_10\DATABASE\INITSTDBY4.ORA'
    Message was edited by:
    frank.qian
    Message was edited by:
    frank.qian

    you have now two different pfiles: one in c:\temp\initstdby4.ora. and %ORACLE_HOME%\database\initstdby4.ora.
    You are using the latter, as you didn't specify pfile= in your startup mount.
    Also, if you are using a spfile, the only line in a pfile should be: spfile=....
    In your pfile you are mixing up Unix like file locations with \ and Windows file locations with /
    Could you please read the docs
    more closely
    more closely
    more closely
    and work
    more carefully
    more carefully
    more carefully
    It is very simple, but you must work carefully.
    Sybrand Bakker
    Senior Oracle DBA

  • I would like to transfer my photos from IMAC desktop to my MACBOOK laptop, can anyone give me stepby step info on how to go about this

    I would like step by step help for transfering my photos from my IMAC to my MACBOOK .They both have same operating systemas well as same version 10.6.8
    Thanks

    Copy them to a disk/external drive/flash drive ro any other medium and then copy them to the other computer.
    Or e-mail them.
    Or connect the computers via firewire and transfer them.

  • Can Anyone give me a step by step on how to create a poster frame?

    I am trying to create a poster frame for a video I edited with Final Cut Express HD. I have read all kinds of topics but they seem complicated. Does anyone know a simple way of creating a poster frame ?
    Thanks!

    QDigital wrote:
    I am trying to create a poster frame for a video I edited with Final Cut Express HD. I have read all kinds of topics but they seem complicated. Does anyone know a simple way of creating a poster frame ?
    Thanks!
    Poster frame can mean a few things.
    More info please on what exactly you mean.
    Al

Maybe you are looking for

  • Wrong document URL for content server

    Hi, In my code I'm getting the url of an image by using the function: CALL FUNCTION 'CVAPI_DOC_VIEW'    EXPORTING      PF_DOKAR               = it_objectlinks-documenttype      PF_DOKNR               = it_objectlinks-documentnumber      PF_DOKVR     

  • Report to show Number of sent and received messages

    Hi, We are on PI 7.1 EHP 1. I'm wondering if there is a way to set up a daily report that will output the number of inbound and outbound messages by message type? I know this can be done manually in the RWB but is there a way to automate it? Thanks,

  • IAC 3.1.1 users who are member of more than one OrgUnit are not able to order services?

    Hi, Power Down, Power Cycle, Take Snapshot and Decommission services are not working for users who are member of more than one organization!! Error Message: The service form could not be submitted because of following error: [newscale][SQLServer JDBC

  • Third party CMS for SAP LSO

    Hello all, In the master guide for the ERP2005 it says that a Content Management system is required for the Learning Solution. We are planning to set up SAP LSO with a third party Content Management System. What is the minimum requirement for a third

  • Mac G5 drops/loses connection to Airport Extreme wireless base station

    When I power up my Mac, it connects normally to the AE wireless base station. After some time (sometimes minutes, sometimes hours) the connection will be lost, although all indications are that it is operating normally, i.e. the AE icon at the top of