E.M.P. 11.1.2.1 repointing to the new database

Hi all;

Need of your advice here;

I had a requirement for re-pointer the EPM environment to the other (new) database. I just want to share my point of view how this can be done please correct me if I'm wrong.

(1) the relational database of the former backup

(2) backup the \Oracle\Middleware\ file of all servers in the EMP

(3) the registry backup

4) clone or COPY all schemas (HFM, planning, Essbase, FDM.. etc) to the database

Then

(4) remove the respective environmental USER_PROJECTS folders

5) RUN the CONFIGURATION TOOL and then provide the NEW database server and port details. Update the TNSNAMES.ora file with the new database.

(6) repeat step 5 for all other components

OR

Is there a way we can change the PROPERTIES file with the Reconfiguration pointing to the new database of execution? Please notify.

Thank you

UB.

Yes you must reconfigure on these servers, but it is only shared services registry which needs configuration to point to the new database, Essbase uses the information updated in reg.properties.

Try it and see.

See you soon

John

Tags: Business Intelligence

Similar Questions

  • Repointing of the reports to changed the subject domain names

    Hi all

    Is there an easy way to repoint already created reports to use the new areas?

    Thank you.

    Hello..

    First you not told us why you want to change the name of HIS (field)?
    I think you might have changed the name of HIS (the presentation layer) in SPR... Am I wrong?
    If so, you better create an alias name as the old name for the name of presentation layer... before renaming the name of the layer...

    To create aliases for name of presentation layer,

    1. double-click on the file of presentation in the presentation layer layer, go to the alias tab. Click the new (Insert) option and type the name of the old and click OK and now in the general tab, type the new name in the name field

    2 OR, right-click of presentation layer, click Rename and type the new name. This process automatically creates the alias of presentation Layer (SA) you can watch only on the alias tab.

    By doing this, of course, already developed reports will not be affected, but... If you want to change reports existed, as if you want to add another column... then the SA is not available in the selection pane.

  • TMS database name

    Is it easy to rename an existing MSDS database or create one from scratch, which is different from the standard denomination.

    I can't seem to find options to repoint to a new database, and I did not know if the installation process would find the DB if it was something else that references the install document.

    In all previous versions, the TMS database is called "tmsng" - is not able to be changed.

    In the latest version (TMS 14.4.2), when you run the TMS tools, it seems that you are able to change the "tmsng" (I have not tried to confirm if it works or not) as directed by the attached screenshot.

    Wayne
    --
    Remember the frequency responses and mark your question as answered as appropriate.

  • Add data to an [existing] the AnalogWaveform < Double >

    Hello

    I'm the life-long tension using DAQmx scene, and I am puzzled as to how I can add new samples in an existing array of waveform.  Whenever I run my program, I receive only 1000 samples of data in the AnalogWaveformarray.  Because I need to do some calculations after each asynchronous reading, I wish I had the waveform table 'accumulate' data until the acquisition stops.  Then, I can trace the entire waveform.  Is this even possible, or do I just store the data in a WaveformPlot?  Any suggestion would be appreciated.  Thank you!! Here's my code for callback:

    public void ReadCallBack_MeteringTask (IAsyncResult ar)
    {
    Try
    {
    If (runningTask is ATR AsyncState)
    {
    read data
    AnalogWaveformof the waveforms [] = daqReader.EndReadWaveform (ar);

    cancel the acquisition if channel trigger is not valid
    If (triggerChannelIndex < 0="" ||="" triggerchannelindex=""> = meteringTask.AIChannels.Count)
    {
    meteringTask.Dispose ();
    runningTask = null;
    System.Windows.Forms.MessageBox.Show ("Invalid trigger channel index.");
    return;
    }

    continue to acquire data until the short-circuit has been detected
    shortCircuitInitiated = IsShortCircuitInitiated (waveforms, triggerChannelIndex, desiredLevel);
    If (shortCircuitInitiated)
    {
    short circuit detected, read more and stop acquisition
    daqReader.MemoryOptimizedReadWaveform (desiredSamplesPerChannel, waveforms);

    Stop the task
    meteringTask.Dispose ();
    runningTask = null;
    return;
    }

    Read the next set of samples
    daqReader.BeginMemoryOptimizedReadWaveform (desiredSamplesPerChannel, callBack, meteringTask, waveforms);
    }
    }
    catch (DaqException ex)
    {
    meteringTask.Dispose ();
    runningTask = null;
    System.Windows.Forms.MessageBox.Show (ex) Message);
    }
    }

    Hi Eric,.

    Unfortunately, it seems that the AnalogWaveform data type has no the possibility of adding a waveform, mainly due to the uncertainty as how to manage with different timing waveforms.  In your case, since it is still the timetable, we should be able to piece together a solution.

    First of all, note that AnalogWaveform[] is an array of the data types AnalogWaveform returned by the function of data acquisition.  The table represents the number of channels that is to measure your task of acquisition.  This example I can give you is for a track, but you should be able to extrapolate in several channels.

    We must create a global variable of AnalogWaveform that will maintain the variable information.  Then, whenever your function will run, you must add the information of waveform at the end of the global variable.  Due to some restrictions in the type of data, we must do a few things to work around this problem, but hopefully the example code below is clear.  If it isn't, please answer any questions you may have.

    public AnalogWaveform = new AnalogWaveformglobalWaveform (0); //set to 0 because it is resized subsequently

    ....

    AnalogWaveformof the waveforms [] = daqReader.EndReadWaveform (ar);

    First, you must create a temporary variable waveform that is as large as the existing data stored in the global data as well as the size of incoming data

    AnalogWaveform tempWaveform = new AnalogWaveform(globalWaveform.Samples.Count + 100); //replace 100 with the known size of your waveform that you read in the previous step

    Then, you must copy the waveform timing information.  Given that your calendar information will not change, we can just do this copy every time your code runs

    tempWaveform.Timing = [0] of the waveforms. Calendar;

    tempWaveform.PrecisionTiming = [0] of the waveforms. PrecisionTiming;

    tempWaveform.ScaleMode = [0] of the waveforms. ScaleMode (ScaleMode);

    Then we need copy the existing data from the globalWaveform to the largest temporary variable.  This must be done because there is no way to add to the global variable.

    int index = 0;

    for (int j = 0; j)< globalwaveform.samples.count;="">

    {

    tempWaveform.Samples [index ++]. Value = globalWaveform.Samples [j]. Value;

    }

    Finally, it copies the data from the new waveform, read in the tempWaveform variable.  This means that tempWaveform is a local variable which contains the entire waveform.

    for (int k = 0; k)< waveforms[0].samples.count;="">

    {

    tempWaveform.Samples [index ++]. Value = [0] of the waveforms. Samples [k]. Value;

    }

    The last step was we do globalWaveform repoint towards the entire waveform.  When this function is out of reach, the data will always exist because globalWaveform is pointing to it.

    globalWaveform = tempWaveform;

  • By the way special characters, through JDBC

    Hello

    Reading the Oracle documentation indicates that characterset conversion is handled at the database level and that the JDBC layer passes data through JAVA to the UTF-16 format, at least that's my reading of it.

    I have a JAVA application that when I point to a database with a we8mswin1252 character set and I uses jnettrace to capture the jdbc, I see the insert statement in passing the hexadecimal value to 91 to the smart quote character.

    When an application is repointée to a database with a characterset we8iso8859p1 then the trace jdbc shows the insert statement by passing the hexadecimal value BF for smart quote.

    The trace should not display the same value being passed in twice if the conversion is done at the database layer?

    Client server: 2015-10-13 12:42:34.361

    203 = packet size

    00 00 00 06 00 00 00 CB...

    00 00 11 69 00 01 01 01... I have...

    01 02 03 5TH 00 02 80 29... ^...)

    00 01 01 3 01 01 00 0D... <...

    00 00 00 04 7F FF FF FF...

    01 01 02 00 00 00 00 00...

    00 00 00 00 01 00 00 00...

    00 00 49 53 45 52 54 4F... INSERT

    20 49 4F 4F 54 20 47 4. IN. LG

    4TH 45 53 5F 52 4F 4F 4F NES_RONN

    49 45 28 20 55 4 49 51 IE (.) UNIQ

    55 45 49 44 2 46 49 45 UEID, FIE

    (4 44 31 20 29 20 56 41 LD1.). GOING

    4 55 45 53 20 28 3-31 SYPHILIS. ( : 1

    2 20 32 20 29 01, 01: 3A2.)...

    01 01 00 00 00 00 00 00...

    00 00 00 00 00 02 00 03...

    00 01 16 00 00 00 00 01...

    01 00 01 03 00 00 01 B2...

    1F 00 01 10 00 00 01 B2...

    01 00 07 07 C6 0B 0B 01...

    08 1F 0D 41 20 73 69 3D. =... A. If

    6th 67 6 65 20 91 20 61 ngle... a

    6th 64 20 61 20 64 6F 75 nd.a.dou

    62 6 65 20 93 20 71 75 wheat... what

    6F 74 65 ote

    Client server: 2015-10-13 11:40:18.793

    Size of the package = 200

    00 00 00 06 00 00 00 C8...

    00 00 11 69 00 01 01 01... I have...

    01-08-03 5TH 00 02 80 29... ^...)

    00 01 01 3 01 01 00 0D... <...

    00 00 00 04 7F FF FF FF...

    01 01 02 00 00 00 00 00...

    00 00 00 00 01 00 00 00...

    00 00 49 53 45 52 54 4F... INSERT

    20 49 4F 4F 54 20 47 4. IN. LG

    4TH 45 53 5F 52 4F 4F 4F NES_RONN

    49 45 28 20 55 4 49 51 IE (.) UNIQ

    55 45 49 44 2 46 49 45 UEID, FIE

    (4 44 31 20 29 20 56 41 LD1.). GOING

    4 55 45 53 20 28 3-31 SYPHILIS. ( : 1

    2 20 32 20 29 01, 01: 3A2.)...

    01 01 00 00 00 00 00 00...

    00 00 00 00 00 02 00 03...

    00 01 16 00 00 00 00 01...

    1F 01 00 01 03 00 00 01...

    1 00 01 10 00 00 01 1F...

    01 00 07 07 C6 0B 0B 01...

    01 01 02 1 41 20 73 69... A. If

    6th 67 6 65 20 BF 20 61 ngle... a

    73 20 64 6F 75 62 6 C 65 s.double

    20 BF 20 71 75 6F 74 65. .quote

    Thank you

    Ronnie

    Reading the Oracle documentation indicates that characterset conversion is handled at the database level and that the JDBC layer passes data through JAVA to the UTF-16 format, at least that's my reading of it.

    No - it's NOT correct. What "Oracle documentation" have you read that in? Post a link.

    Java internally stores characters in the UTF-16 format data.

    The JDBC driver will convert to the character set the character set of the client and the database character set.

    See chapter globalization support for JDBC Developer Guide

    http://docs.Oracle.com/CD/E11882_01/Java.112/e16548/global.htm#JJDBC28643

    Support of globalisation 19

    The Java Database Connectivity (JDBC) Oracle drivers support globalization, formerly known as Support NLS (National Language). Globalization support lets you retrieve data or insert data into a database in any character set that Oracle supports. If the clients and the server are using different character sets, then the driver will provide support to perform conversions between the database character set and the character set of the client.

    This chapter contains the following sections:

    See the last sentence of the first paragraph?

  • Problem with form of smartview

    Hi all


    We have recently migrated Hyperion Planning 11.1.1.3 application to a newer version of 11.1.2.3 and many workbooks are saved with forms of the old version 1.3 smartview.
    When we try to open the saved form, it tries to connect to the old version 1.3, and we see no possibility to change the details of the connection here.

    How easily update us the connection to 1.2.3 and open / save the form in the new version?

    Thank you

    Michel K

    Hi AravindhK,

    I went through the same process, a few months ago, and according to the number of MS Excel workbooks, it is really easy - although a tedious might say - to the convert\migrate the leaves of ad hoc recovery overall.

    1. make sure that the URL of the shared connection is set to point to the new HP v11.1.2.3.x.

    2. open a MS Excel spreadsheet to be repointe

    3. from the main Ribbon bar, click Smart View > Panel

    4. in Smart View Panel, locate and then click [content Document] by clicking on the arrow pointing down icon

    5. a list of all the worksheets connected display then

    6. right click on each definition of the connection, and then select [change the connection]

    7 select the new connection APS URL from the drop-down and then click the [next] button

    8 go again cube HP, and then click [finish]

    9. Repeat steps 6 through 8 as needed

    10. save the MS Excel workbook

    11. click on the button [update] on each worksheet containing a form\adhoc retrieval\submission

    The same principle applies to forms and worksheets adhoc retrieval\submission.

    See how you go.

    JBM

  • Transfer from one Mac to another catalog does not work?

    I copied an entire Lightroom Catalog folder from one Mac to another, and I placed it in the Documents folder on the new Mac. I expected just open when I launched CC2015, although she does not.

    1. what should I do to repoint CC2015 in this catalog folder?

    2. to do this, I can place the main folder anywhere on the computer too long that I indicate in LR it where? Are there benefits to be placed in any particular place, or is it just the preferences of the user?

    Thank you.

    IMO, you should keep records high-lit & files to the screen clip below.

    That is to say. Your most recent work catalog dated February 27, 2016 with its record of previews.

    and keep a few folders of backup.

    All the rest could be deleted.

    Catalog backups must be in the same folder as your catalog of work - if the disk drive fails you have lost a lot. !!

    The catalogue dated February 9, 2016, {Lightroom Catalog.lrcat 5} can also contain development not in the catalogue 27 Feb. -then maybe preserve also!

    You could remove the 'Previews' folder, but Lightroom will slow down a bit because he rebuilt the previews when you reopen {Lightroom Catalog.lrcat}

  • Upgrade and increased use of fashion related to two embedded vCenter 5 installs

    Hi all

    I have a question. I would like to upgrade our vCenter 5.5 to 6.0 update1 and at the same time instances to begin to use related methods improved.

    Currently, we only use modes related to 5.5, but we would like to use in the 6.0.

    The two vCenter running 5.5 are shipped installed (vCenter + SSO in the same VM).

    VMware vCenter Server 6.0 Deployment Guide, I read and I find anywhere a upgrade path for our scenario.

    In my lab at home, I managed to install 2 CSP between a CITRIX Netscaler and 2 vCenters connected to loadballancer and use improved methods related to vCenters but these where initial installs so no upgrade.

    Anyone has an idea about this scenario upgrade?

    Thank you

    Mircea

    I had a similar situation, and while I found a few ways to use enhanced bound mode with incorporated the PSC, it is not technically supported by VMware.

    However, I have deployed two new external to the PSC (two sites) and two VCSA w/o the embedded PSC.  I joined all in the same domain.

    Once it was in place, I improved my previous VCSA, who had the PSC on-board, to 6.0 U1 and used the new option repoint via CMSSO-UTIL to point of the VCSA existing on the same domain than the one I just created with two new external to the PSC.  I was then able to migrate everything to the two new vCenters.

    http://emadyounis.com/vCenter/vCenter-server-appliance-VCSA-6-0-Update-1-rundown/  (Info on the format of the command CMSSO-UTIL near the bottom of the page).

    Looks like more work that it is, and the result is a nice clean environment, no down time to VM and two external to the PSC which reproduce and two VCSA who linked enhnaced active mode.

    If you go down this road and you have problems, let me know, I can try to help.

  • SRM point again vCenter

    We have decided to take our guests to a new vCenter and don't want a lot with SRM (it is installed on its own virtual machine in the environment and use a MRD).

    To have a quick glance I think I should be able to do a repair on the existing installation of the SRM and point to the new vCenter, during repair I suppose it will ask the IP address of the new vCenter? As a result, I hope to be able to upgrade to 5.0 5.5.8, could I possibly do the upgrade and repoint at the same time?

    I saw the article, but I guess I won't need to follow if the installation program updates the IP for me?

    http://KB.VMware.com/selfservice/microsites/search.do?language=en_US & cmd = displayKC & externalId = 2008033

    Thank you very much!

    I think the best option is to do a fresh install, because if you plan to switch to version 5.8, this upgrade path is not supported, take a peek: upgrade of Site Recovery Manager

    Important

    The upgrade of Site Recovery Manager 5.0.x Site Recovery Manager 5.8 is not supported. Upgrade of Site Recovery Manager 5.0.x to a release of Manager5.5.x of Site recovery before upgrade you to Site Recovery Manager 5.8. See upgrading of Site Recovery Manager in the documentation of the Site Recovery Manager 5.5 for more information on the upgrade of 5.0.x to 5.5.x.

    And see what are the documents tells a new installation of vCenter and the MIS upgrade: Types of upgrade that supports Site Recovery Manager

    Type of upgrade

    Description

    Support

    Update the Site Recovery Manager on-site

    The easiest way to upgrade. This path is to upgrade instances of server vCenter Site Recovery Manager-related before the upgrade of Site Recovery Manager server. Run the new version of the Site Recovery Manager installer on the Recovery Manager Server host computer, connect to the existing database of existingSite.

    Yes

    Site Recovery Manager with migration update

    This path includes improving the vCenter Serverinstances associated with Site Recovery Managerbefore the upgrade of Site Recovery Manager server. To migrate the Site Recovery Manager to a different host or a virtual machine as part of the upgrade of Site Recovery Manager, stop the existing Site Recovery Manager server. Do not uninstall the previous version of the Site Recovery Manager Server and make sure you keep the contents of the database. Run the new version of Site Recovery Manager installer on the new host or virtual machine, connect to the existing database.

    Yes

    New vCenter Server installation with migration ofSite Recovery Manager

    Create new facilities of vCenter Server and migrate these new instances of server vCenter Site Recovery Manager Server.

    N ° you cannot migrate the Site Recovery Manager Server to a new installation of vCenter Server. Site Recovery Manager requires a single object on the server vCenter Server identifiers that are not available if you are using a new Serverinstallation vCenter. To use a new Serverinstallation vCenter, you must create a new Site Recovery Manager Server installation.

  • Upgrade to a larger drive and the need to reorient my library?

    I have a 1 TB external hard drive with all my photos and I just he cloned on a 4 TB drive and I now want to repoint my LR 4 to the new drive.

    1 - is the name of the drive the files are on the question? If I decide later to change the name of the drive that will break the links to the photos?

    2. how to repoint my library/catalog to the new drive?

    Thank you!

    If your files are not on the same drive, the same name of player, in the same exact spot the they were before then Lightroom will think that these files are missing. The solution:

    Lightroom think my photos are missing - how to fix? Lightroom Queen

  • SSMove issues and recommendations?

    Using Lab Manager 3.0.1.

    I have asked a few questions below to the different technical support engineers, but have gotten conflicting information from them so I thought I would try here to see if I can get answers from users in the real world or other technical support engineers.

    We have got a new SAN and want to move VMs chained to the old SAN to the new San.

    Some of these chains have several virtual machines, and many of the total channels over 100 GB in size.

    Question 1: It is recommended to use SSMove for large VMS / channels?

    Former SAN data warehouses are the FC and the new SAN datastore will be connected to the ESX host with iSCSI.

    Question 2: The data will pass on the connections of the FC and iSCSI or through the Service console between two ESX host?

    We thought to do a SAN copy for "backup" strings VM to front a SSMove.  In the case of data move corruption due to a failure, we re LM to point to the VMs 'backed up' on the data store holding the backup copies.

    Question3: Is it possible to repoint LM to copies of VM channels on a different data store?

    Question 4: With LM 3.x SSMove, what happens to partially moved if the process fails to halfway due to causes such as channels of data/VM/host network loss or other timeout issues?

    Other recommendations and responses would be very appreciated.

    > For our data store "backup", we wouldn't use a SAN snapshot utility. We PCs just the files or use a SAN copy utility to copy the VM data for the data backup store. Changing anything since your last comment?

    not really.  data moved between UUID, heading updates and update DB LM would be in order.  We have just a pretty slick way to do when you contact support, instead of update all this by hand.

    This sounds like a scenario that we could predict?

    Yes, as long as the backup data that was on the LUN before the failure.  If for any reason, the backup is even a few different pieces in the VMDK file, this could adversely affect a virtual machine that is related to this VMDK. (child nodes).

    aside from that, it seems reasonable.

    Kind regards

    Jonathan

    B.SC., RHCT, VMware vExpert 2009

    NOTE: If your question or problem has been resolved, please mark this thread as answered and awarded points accordingly.

  • CC of Dreamweaver continues to search for Photoshop CS5

    I upgraded to CS5 for CC and I know now stupidly not uninstall CS5 first.

    I'm running the Mavericks (Mac OSX 10.9.1)

    My problem is that when you use Dreamweaver CC I try to change a jpeg file using the editing tool in the properties panel. As a first step, the tool has tried and managed to open the image in Photoshop CS5. Well I wanted to of course on it to open it in Photoshop CC so I uninstalled Photoshop CS5 thinking I could redirect it to the new version. (Ha!)

    I tried the following to correct the problem.

    I open a jpeg file and use the get info to open with Photoshop CC.

    I uninstalled and re-installed dreamweaver CC.

    I know that some people on windows have hacked the registry to correct... no idea how to do it on a mac.

    Help is greatly appreciated.

    I found my solution.

    Preferences--> File Types / editors--> repoint of Photoshop CC and make primary

  • How can you tell if a machine virtual is a linked clone or not

    I am able to create VM linked to from a snapshot through the SDK.

    The only way I can say that the virtual machine is linked is the size of the vmdk file.

    I was wondering if all the properties on the virtual machine can distinguish the VM, linked to the normal ones.

    Thank you

    Since it is the basic disk is supported by the VM of the parent in which the linked Clone was created from, you could look at it's peripheral VirtualDisk and check to see if it's parent, if so it will repoint towards the main VM VirtualDiskFlatVer2BackingInfo in which the LC has been cloned from.

    The other thing is if you created of LC and you want to distinguish between internally, just add an annotation on the VM the LC has been cloned from and perhaps say it is a LC, might be easier if you follow just internally.

    =========================================================================

    William Lam

    VMware vExpert 2009

    Scripts for VMware ESX/ESXi and resources at: http://engineering.ucsb.edu/~duonglt/vmware/

    Twitter: @lamw

    repository scripts vGhetto

    Introduction to the vMA (tips/tricks)

    Getting started with vSphere SDK for Perl

    VMware Code Central - Scripts/code samples for developers and administrators

    150 VMware developer

    If you find this information useful, please give points to "correct" or "useful".

  • First Web Client Login error - DRM 11.1.2.1

    Hi all

    I installed and configured DEM 11.1.2.1 on a Windows Server 2008 computer on a SQL 2008 R2 SQL database.

    I have successfully started the service and after repointing of the IIS to the correct directory structure (was originally wwwroot) customer web page loads.

    I try to connect using the admin user and configuration of password in configuration steps and I get the following error:

    The server returned an error: DRM-63017: Session does not exist

    I get what that means really, but without success so far, someone can help?

    See you soon
    Aaron

    Hi all

    There is a power supply that did the trick for me! (#13810554)

    Best regards
    MWI

  • The SRM database move to another SQL Server?

    If I needed to move only the SRM database of there is already a SQL 2005 cluster to another SQL Server, it could be realized without a re - install the MRS?

    Thank you

    Yes, you can make a backup and restore to the new DB or detach and re - join the new DB. From there, just repoint the DSN to point to the new SQL Server and all should be good. If I'm not mistaken, there is a SRMUser that is created in security roles in SQL that will have to be moved also.

Maybe you are looking for