Move Analysis from test OBIEE server to production

Hi all,
how do I move Analysis from test OBIEE server to production without re-creating it again from the beginning?

Check this link
http://www.rittmanmead.com/2011/02/obiee-11g-migrations/
Look at Catalog manager part.
Navigate to the specific folder/report using Catalog Manger and then select the report(s) and then File Menu archive and specify the folder to save the archive
Move them to Prod box and the Open Catalog Manger and navigate to specific folder and File menu Unarchive select the path for file
http://docs.oracle.com/cd/E23943_01/bi.1111/e10541/prescatadmin.htm#i1044262
If helps mark
Edited by: Srini VEERAVALLI on Feb 19, 2013 12:18 PM

Similar Messages

  • Move files from test environemnt to Dev environment

    we need to copy a set of dump files from the Test DATA_PUMP_DIR directory to the DEV DATA_PUMP_DIR directory. ( the files are available in some specified path here for both the environments.)
    so please let me know how to resolve the above task within short span of time.
    Thanks,
    Vas

    Nothing to do with database install - also posted duplicate here - Move files from test environemnt to Dev environments - locking thread

  • How do I move mail from an old server to a new server?

    I am rebuilding my server. The new server runs on OS X 10.9.4 with Server 3.1.2. The old server ran OS X 10.9.x and Server 3.x (the exact versions are not known).
    Within the folder /Library/Server/Mail, I found the email stores for both systems.  I have gone through each folder and identified the 36 character string that serves to identify the user's mailbox and paired each one to a user id on both systems.  On the old system, there are multiple mailboxes for some users, and I think it is a result of the users being deleted and recreated: perhaps the system identified the identical name and assumed that the user might be different and therefore created a unique 36 character id for the mail system.
    The trick is, I am trying to recover the mail from the old server.
    I have attempted to copy the files which are human readable and formatted for SMTP transmission to the new server under the correct mailbox corresponding to the owning user (see screen shots below). The simple act of copying the files has not made these files visible via the IMAP protocol. I have tried restarting the mail service hoping that the Server app would rebuild whatever indexes need to be built so that the mail can be served via IMAP, and that has not worked either.
    The question is, how do I get the mail from the old server mail boxes into the new server mailboxes?
    This screen shot shows the location of one mail collection at /Library/Server/Mail/Data/mail/[userid].  Mail sits in the "new" folder only for a moment before being processed and put into the "cur" folder.  Copying mail from the old server into the "new" folder produces an empty "new" folder, but one can see the files populate briefly before they are moved into the "cur" folder.
    The next screen shot shows one email opened in TextEdit.  The format should look very familiar.  This is the same format that one would use to send SMTP requests to an SMTP server.  This particular example happens to be an email from a Gmail account to the PediatricHeartCenter.org domain to test the mail system when the old server was set up.  It was sent on 24 Jan 2014 and had text reading "Intended for Mavericks1. -Jared".

    On further research, I have learned that OS X Server sets Dovecot to use the MailDir format.  The email messages can be removed from the folders and put back, and as long as they were present in the folder to begin with (received by Dovecot originally), they reflect in the Mail.app on client computers.  Deleting a file in the "cur" folder causes the file to disappear in Mail.app. Copying the file back into the "cur" folder will cause the file to reappear without any modification of an index file or any other system component, as long as the file was properly formatted by Dovecot to be identifiable to that folder.
    According to Dovecot.org's review of MailDir found here (http://wiki2.dovecot.org/Ma,ilboxFormat/Maildir), the file name can be broken into simple pieces: " [unixtimestamp].[process id].[hostName],S=<message size>,W=<virtual message size>/2,[status tags]".  The original MailDir++ specification requires the string ":2," to appear after the virtual size, but this file naming format is not legal in Mac OS X, so Dovecot is modified by Apple to use "/2," instead.
    The Dovecot's wiki describes inserting new messages as follows:
    Mail delivery
    Qmail's how a message is delivered page suggests to deliver the mail like this:
    Create a unique filename (only "time.pid.host" here, later Maildir spec has been updated to allow more uniqueness identifiers)
    Do stat(tmp/<filename>). If the stat() found a file, wait 2 seconds and go back to step 1.
    Create and write the message to the tmp/<filename>.
    link() it into new/ directory. Although not mentioned here, the link() could again fail if the mail existed in new/ dir. In that case you should probably go back to step 1.
    All this trouble is rather pointless. Only the first step is what really guarantees that the mails won't get overwritten, the rest just sounds nice. Even though they might catch a problem once in a while, they give no guaranteed protection and will just as easily pass duplicate filenames through and overwrite existing mails.
    Step 2 is pointless because there's a race condition between steps 2 and 3. PID/host combination by itself should already guarantee that it never finds such a file. If it does, something's broken and the stat() check won't help since another process might be doing the same thing at the same time, and you end up writing to the same file in tmp/, causing the mail to get corrupted.
    In step 4 the link() would fail if an identical file already existed in the maildir, right? Wrong. The file may already have been moved to cur/ directory, and since it may contain any number of flags by then you can't check with a simple stat() anymore if it exists or not.
    Step 2 was pointed out to be useful if clock had moved backwards. However again this doesn't give any actual safety guarantees, because an identical base filename could already exist in cur/. Besides if the system was just rebooted, the file in tmp/ could probably be even overwritten safely (assuming it wasn't already link()ed to new/).
    So really, all that's important in not getting mails overwritten in your maildir is the step 1: Always create filenames that are guaranteed to be unique. Forget about the 2 second waits and such that the Qmail's man page talks about.
    The process described by the QMail man page referenced above suggests that as long as a file is placed in the "new" folder, that a mail reader can access it.  The mail reader then moves the file to the "cur" folder and "cleans up" the "new" folder.  This is clearly happening in OS X, because the messages are moving from "new" to "cur", but IMAP is still not serving these foreign messages to the remote readers.
    The thought crossed my mind that perhaps it is the fact that the host name does not match, which would cause the failure, however changing the "host" portion of the name from the old-server to the new-server did not fix the issue.  Even with the new server name in the file name, the inserted message fails to appear in client Mail applications.
    Within the file their is header information that still references the old machine. I'd like to not have to change the email files, because this will violate the integrity of the message. Also, this might take a lot of time or incur risks associated with poor automated processing. The header information should not be referenced by Dovecot, because the wiki page describing MailDir notes that neither Dovecot nor Dovecot's implementation of IMAP refers to the messages header information when moving and serving these mail files.
    Unlike when using mbox as mailbox format, where mail headers (for example Status, X-UID, etc.) are used to determine and store meta-data, the mail headers within maildir files are (usually) notused for this purpose by dovecot; neither when mails are created/moved/etc. via IMAP nor when maildirs are placed (e.g. copied or moved in the filesystem) in a mail location (and then "imported" by dovecot). Therefore, it is (usually) not necessary, to strip any such mail headers at the MTA, MDA or LDA (as it is recommended with mbox).
    This paragraph leads me to believe that after the mail box is identified that the content of the file becomes irrelevant to the system which manages. This suggests that we should be able to inject messages into a mailbox and have the system serve them as though they had belonged in that mailbox all along. Yet I have not found a way to do this.

  • Error while table Import from Oracle (OBIEE server 64bit & Client 32bit)

    Hi All,
    Problem : ODBC/OCI Connectivity Issue between OBIEE 11.1.1.6.2 BP1 (64-bit) server and OBIEE 11.1.1.6.2 BP1 Client (32-bit) local machine.
    We have an OBIEE 11.1.1.6.2 BP1(64-bit) setup on a 64-bit ‘Windows Server 2008 R2 Enterprise’ machine.
    OBIEE dev team members have 32-bit local machines.
    OBIEE “Admin team member” (who will work on RPD) has OBIEE 11g client (BP1) installed on their *32-bit local machine*(which is common client software for 32/64 bit.)
    Now, two ODBC connections were created on this 32-bit local Client machine, with OBIEE 11g client installed on it.
    One with “BI server driver” for connection to OBIEE server machine(64-bit) to open RPD and other with “Oracle database driver” to connect to the Oracle database on 64-bit machine, to import tables.
    With this setup done, I am able to open the RPD in online mode and view the existing sampleapp related objects present in it.
    But when I try to import metadata from OBIEE client admin tool using OCI or ODBC, it gives an error that “Connection fails! “
    I have the required tns entry in my tnsnames.ora file and I am able to connect to this database from the local client machine, using sqlplus.
    Kindly let me know if there are any restrictions in using this type of a setup combination of 32-bit and 64-bit machines for OBIEE 11.1.1.6.2 BP1 setup.
    If not then, what steps are to be followed to do the setup btw 64-bit OBIEE server and 32-bit OBIEE client to make table import working.

    Hi Veeravalli.. Thanks for your response.
    I have my tns file residing in both the location you mentioned on the server machine. (64-bit)
    •     {Oracle_BI1}\network\admin directory
    •     {oracle_common}\network\admin directory
    And also in the below Oracle_home path of oracle_client in the local machine. (32-bit, Oracle 11g R2 database client)
    •     {oracle_Home}\product\11.2.0\client_1\network\admin
    Also, I have used the full expanded tnsnames as you mentioned. Still issue persists.
    When I use , “DataDirect 6.0 ODBC Oracle Wire Protocol” driver, for creating the system DSN and try to import tables from OBIEE client admin tool on local client machine, the connection happens and table list comes up, but it’s an SAP product and hence it throws a msg to purchase the tool to go further with table import.
    I am wondering if I any other configuration steps need to be carried out, with the ODBC/OCI set up between 64-bit OBIEE server and 32-bit OBIEE client.
    Also, the source database that I am trying to connect to is yet again on a 64-bit machine(Oracle 11g R2).
    Please suggest.

  • Using iPad to AirPlay home movies/pictures from a media server/external HD

    I'm trying to access all my home movies and pictures from a media server or external HD. I want use my iPad as the interface and use AirPlay to display them on my tv. One of my key requirements is that the interface allow the movies and pictures to be organized into albums like iPhoto. They need to be together instead of a folder for photos and a photo for videos. I would also like to have a favorites album that is essentially shortcuts to photos and videos in my other albums, just like iPhoto. Any ideas?
    FYI...I'm using a local storage device so I don't have to worry too much about network latencies and bandwidth. I also prefer not to have a full-fledged computer running all the time just to serve stored media. Thereforey preference is to use a media server instead of an external HD (although I would be open to that if airport extreme would be part of the solution.)

    I'm trying to access all my home movies and pictures from a media server or external HD. I want use my iPad as the interface and use AirPlay to display them on my tv. One of my key requirements is that the interface allow the movies and pictures to be organized into albums like iPhoto. They need to be together instead of a folder for photos and a photo for videos. I would also like to have a favorites album that is essentially shortcuts to photos and videos in my other albums, just like iPhoto. Any ideas?
    FYI...I'm using a local storage device so I don't have to worry too much about network latencies and bandwidth. I also prefer not to have a full-fledged computer running all the time just to serve stored media. Thereforey preference is to use a media server instead of an external HD (although I would be open to that if airport extreme would be part of the solution.)

  • Move certificates from Windows CA Server to IOS CA (Router 2900).

    Hi,
    You can move the CA certificates from my server windows  server 2003 to  a Cisco router?
    I currently have a Windows 2003 server CA (SCEP)  and need to move certificates from this machine to a cisco 2900 router (ISR) ... Is it possible?

    Hi Yerko,
    Yes you can.  Please have a look at the below link:
    http://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_conn_pki/configuration/15-mt/sec-pki-15-mt-book/sec-cert-enroll-pki.html
    Please visit the below section.
    Configuring Cut-and-Paste Certificate Enrollment
    SUMMARY STEPS
    1.    enable
    2.    configure terminal
    3.    crypto pki trustpoint name
    4.    enrollment terminal pem
    5.    fingerprint ca-fingerprint
    6.    exit
    7.    crypto pki authenticate name
    8.    crypto pki enroll name
    9.    crypto pki import name certificate
    10.    exit
    11.    show crypto pki certificates
    Regards,
    Kanwal
    Note: Please mark answers if they are helpful.

  • How to move phones from one CUCM server to another?

    How easy is it to migrate IP phones from one CUCM server to another?
    The situation is this:
    A vessel currently sitting in dry dock has 14 IP phones onboard which currently register with a CUCM server half way round the world (literally). As you can imagine there is quite a fair amount of delay for the signal processing, not to mention the connectivity being over a VSAT link. This being a temporary solution.
    A CUCM server has been configured and installed on the vessel with all the relevant partitions, route patterns, trunks etc. The phones have also been added to the new server ready for migration. The only real thing that will be different when the phones are migrated is the Directory Number on each phone. Both CUCM servers are running software version 7.1.3
    The phones currently pick up their local IP addresses via a local DHCP server which assigns 150 TFTP Server IP Address for the remote CUCM server. Is changing the the TFTP Server IP address to the local CUCM server enough to have the phones register with the local server.
    This is not something I've tried before so would appreciate feedback or any comments that may indicate anything I missed along the way.
    Thanks,
    Ric

    Hi Ricardo,
    On the DHCP scope created for the voice vlan change the Option 150(TFTP Server IP address) to the new CUCM and remove/delete the remote CUCM IP address just to ensure that phones once after registering to the new CUCM will not fetch any config from the remote CUCM as the DN's of the phones are changed on the new CUCM please ensure this.
    Apart from this i dont see any challenges as the firmware of the IP Phones will also remain same as CUCM version is same.
    Hope that helps.
    Regards
    Najaf

  • Trying to move itunes from a network server but not succeeding. Help!

    my work laptop is part of an exchange server network thing. I have to move my personal data from this network and so have experienced a few problems. Firstly when i moved the itunes files to my desktop away from the synched files in 'my documents' and 'my music' it deleted my whole library. I still had the files but everytime i tell itunes to add folders of music from their new location it still insists on putting the files back into 'my music' as well and thus back onto the server. I've changed the file location in the advanced settings to its new location on the desktop but its still doing the same thing. Can anyone help please?

    1 Quit iTunes.
    2 Copy the entire iTunes folder including music to the another location/external drive.
    3 Restart iTunes holding (Shift-Windows, Option-Mac).
    4 Select Choose library. Select the library in the folder you just moved.
    5 Move the old iTunes folder to the trash but do not empty it.
    6 Restart iTunes normally and verify the songs work. If they do, empty the trash.

  • LSMW testing - Development server to Production server

    Dear Experts,
    I have made a LSMW for ROH material in development server by changing External number ranger to Internal number ranges.
    It is working fine & is generating internal number ranges.
    What i wish to know is, what kind of testing (tables or transactions) will be required before using this LSMW in Production server?
    Thanks!
    Syed

    Hi Syed,
    Once you have tested LSMW in DEV, and found OK, transport it to PRD.
    You can also take a test run for LSMW in PRD.
    Also check some basic transactions of procurement on this material in PRD if possible
    Hope this will help U
    Regardsm
    Amol

  • Move dashboards from perfomance point server 2007 to share point 2013

     Hello every one,
    can you please help me in the below.
    I have to move the reports and dash boards from old to new share point (2013) site. There is already a share point site built and running successfully. I need to add 1 section of dash boards and reports into sharepoint 2013 from the old site.
    For this I need to add new sub site site rite? My question here is how to bring dash boards and reports from old site to new site (share point 2013).
    Old site is performance point server 2007 and new site is share point 2013.
    Thanks
    Kumar

    Given you aren't using PowerPivot for SharePoint, you can continue using SSAS 2008 R2 for your cubes and data connections. BI dashboards, Lists, and so forth are just SharePoint content, and they get upgraded when you migrate to 2013.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • OSX Server / MAMP / Move material from client to server

    I have a several questions.
    On my laptop I've been using MAMP (mamp.info) for quite some time, and I love it, most notably for the ease of use and clear directory structure. I've recently purchased a mini and osx server to learn that environment, and I know it already has php and apache installed. I'm actually running some web pages from the server now.
    Question is, I'd like to use the mamp stack on the server... is this a good idea. I like that all the files are in one directory. From a security standpoint, is it safer to use the included stuff in osx server?
    also, i'd like to use phpmyadmin and drupal on the server, like I am on the client stack once i'm done programming stuff. How can I go about this?
    thanks in advance for the info

    Question is, I'd like to use the mamp stack on the server... is this a good idea. I like that all the files are in one directory. From a security standpoint, is it safer to use the included stuff in osx server?
    I've never used MAMP to know what it's plusses are, although I guess it must have some since a number of people seem to use it (although maybe that's because they don't know most of the stuff is built-in). However, if you do go that route you're required to maintain it yourself with regard to updates (compared to the built-in version that Apple periodically updates via Software Update). This may be good or bad depending on a) how much time you have on your hands and b) how quickly MAMP update their distribution vs. Apple.
    I also loathe the fact that MAMP puts all its files in /Applications (this is just wrong).
    also, i'd like to use phpmyadmin and drupal on the server, like I am on the client stack once i'm done programming stuff. How can I go about this?
    Just download and install them like you would anywhere else. I can't speak for Drupal but I've used PHPMyAdmin on Mac OS X for years.

  • Move files from test environemnt to Dev environments

    we need to copy a set of dump files from the Test DATA_PUMP_DIR directory to the DEV DATA_PUMP_DIR directory. ( the files are available in some specified path here for both the environments.)
    so please let me know how to resolve the above task within short span of time.
    Thanks,
    Vas

    905508 wrote:
    Thanks for your quick response and let me know How to FTP the dat. Please suggest me th e peocdure.To be honest, if you don't know how to copy or FTP files you probably shouldn't be doing it for the first time with database files.
    also: as mentioned above, this is a PL/SQL forum, what you are asking has nothing to do even with Oracle, it is related to your operating system and the operating systems that the files are on.

  • Playing movies loaded from a home server...

    I'm thinking of getting an apple tv and then loading all my dvds onto a home server. What would be the process to allow apple tv to see these movies? Do I need to convert them all into a particular format first and if so, how?

    Thanks! That's very helpful. Does it matter what operating system I run on the server? Is there a "best" choice to go with all this? Obviously I would love to run Apple Server but not at the costs. I'm thinking of a linux box with about 8 TB of storage should give me plenty of room to grow for a long time.

  • Migrating from Test Database to Production Database

    Hi,
    I have a situation where I created my Portal Pages on test database and now, I want to move everything from test database to my production database. The portal version on both the sites is same (3.0.9.8). I have content areas and applications in my existing test site. What is the best and easiest way to achieve this?
    Thanks in advance.
    Regards,
    Jatinder

    Hi,
    the easiest way is to make an export of the portal schema en import it into you're production database.
    greetings
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jatinder:
    Hi,
    I have a situation where I created my Portal Pages on test database and now, I want to move everything from test database to my production database. The portal version on both the sites is same (3.0.9.8). I have content areas and applications in my existing test site. What is the best and easiest way to achieve this?
    Thanks in advance.
    Regards,
    Jatinder<HR></BLOCKQUOTE>
    null

  • Universe Migration Procedure from TEST Server to PROD server

    Hi,
    We are using SAP BO XI R3 version in our project TEST windows 2003 server.
    we have designed the universe in TEST BO Server and it's working great.
    Now, we would like to move/migrate the universe created in TEST Server to the PROD server.
    please let me know the migration steps [step by step procedure - documents] in getting the universe available in PROD server as well.
    Note: We are using SAP BO XI R2 version in PROD server & XI R3 in TEST Server respectively in separate physical machine .
    Regards,
    Karthik

    Thanks for your support Henry. I agree with your point.
    I have 1 quick question: if we copy the .unv file from TEST BO R3 server and paste the same .unv file to PROD BO R2 server, will it be available for importing in PROD BO R2 Server [to do modification in connection settings (connection to pointing PROD DB)]?
    If yes, we can copy [not export (no use of tool)] manually the .unv file from TEST R3 server and paste it manually in PROD R2 Machine under universes folder and make any modification like changing the connections....etc.,
    Please let me know if this approach works fine with no issues. Because its going to be done in PROD.
    Many Thanks,
    Karthik.

Maybe you are looking for

  • A table is 'stuck' in the Discoverer SQL query after rewriting query.

    Hi, I'm using Discoverer 10.1.2.2 on an Oracle 9.2.0.6.0 DB. I've taken an existing Work Book and modified it. I've removed several fields as well as their table from the 'Selected Items' Window. I've also removed any references to all fields in that

  • My ripped CDs skip half the time cannot obtain a clean rip of albums

    I am not sure what is going on but, I this is starting to happen a few too many times. I bought an album used off amazon, & ripped it into my itunes library, synced it to my ipod & the 2and to the last track skips & jumps all over the place, & I have

  • "Erase Free Space" in disk utility, writes a large file?

    While poking around in disk utility I came upon the 'Erase Free Space" function so I decided to try it out and see how it worked. I chose the medium security setting and let it run. After a while I stopped it because it was going quite slowly. Afterw

  • Getting jms queue jndi name via jmx

    Hi all, I'm writing a utility that will help us migrate jms messages to new servers, stores, etc. I would like to connect to a server and programmatically discover the jndi names of all the queues and topics on that server. I know how to get all the

  • My iTunes is not connecting to my iPod Touch

    I am having problems with my iTunes connecting to my iPod Touch.  Can you help?