BOXI3 : How to copy a CMS to a new server?

Hello everybody,
Currently we have some problems on our production environnement.
Due to the complexity of the problem, we want to copy the production cms on our development server.
This is how we proceeded:
1- copy of frsinput and frsoutput on our dev server
2- copy of the production referential database using cmsdbsetup
But when we start the dev server all the servers are stopped and we have the following erro message "unable to locate the SIA on the server".
Can somebody give us some guidance to solve the problem?
Regards,

Hi,
Thank you for your quick replies.
I forgot important information.
Our confiuration is:
- OS: Sun Solaris 10
- BOXI3.0 with LAFIX16 and LAFIX33
- We have a production and a DEV environments that have already been installed
We want to copy the production cms on the DEV cms. What we did is :
1- copy the frs from prodution server to DEV server
2- copy the referential and audit database from production to DEV
3- use cmsdbsetup.sh to configure to import the copy of the production referential database on the DEV
4- restart all servers
Problem: All the servers don't see rhe SIA; so they can not start.
Did we forgot a step in the process?
Regards,

Similar Messages

  • I had my iPhone 4S stolen last week and I am going to sync it to my computer to get everything back on it. I have a new computer, i know how to copy music over to the new computer, but where are the contacts stored on the computer?

    Hi there,
    Can anyone help me!? I know how to copy my music library to my new computer but struggling with copying the contacts etc. Where do I find the contacts folder on my old computer?
    Thanks
    K

    I had my iPhone 4S stolen last week and I am going to sync it to my computer to get everything back on it.
    If it is stolen , how are you going to sync it?
    You mean you got a new iPhone and you want to sync it to your computer?
    Plug it in.
    I know how to copy my music library to my new computer
    New computer??? Or new iPhone?
    I know how to copy my music library to my new computer but struggling with copying the contacts etc. Where do I find the contacts folder on my old computer?
    I suggest you simply copy your entire User folder from old computer to new computer. This way all your data (Music, photos, contacts, emails, calendars, documents, etc.)  goes across.

  • Computer crashed - how to copy files from ipod onto new computer

    Dear all,
    My computer crashed and I desperately need some tips on how to copy my music files from my ipod to the new hard disk. Any ideas?
    Thanks so much,
    Patrick
    HP notebook   Windows XP  

    Check out the instructions/suggestions here.
    Music from iPod to computer.
    There's also Yamipod. This is a free program that transfers music and playlists etc from iPod to iTunes.

  • How to copy exitsitng extracter into another new extracter?

    Hello,
    Please some one can tel me how to copy the existing  extracter into another new extracter.
    I have requirment as below
    Currect me if i am wrong ,need to enhance the existing extracter and add some new fields,and need to include some masterdata filds also to it.
    For master data i am going to do write routines at Transfermation so that no need to include in my exter for those filds to extracter.
    Please some one guide me in this scenario.
    Chrs

    Hi,
    you do not have to copy the extractor, you can enhance it with fields and fill them via enhancement coding --> rsa6.
    If you want to copy it, you need to check what kind of extractor you have. Is it a function module or just a table extractor.
    for fm: copy the function module via se37 and copy the extract structure via se11. Add your enhancements in the copied structures and coding. Create a new datasource with rso2.
    for table extractor: create a view adding the additionally needed fields. create a new ds with rso2. Surely you need to add some coding in the relevant enhancement.
    regards
    Siggi

  • How to copy last record to a new record ?

    Hello,
    i have a question pls.
    i want to copy last record to every new record
    say,
    multirecord forms has : Tank_no Last_measured Lab_Denisty
    record1 : 1009aw 1532.94 .5796
    what i want to do next record is copying last record (record1 ) as
    record2 : 1009aw 1532.94 .5796
    so the user may change the Last_measured only and not to have to rewrite the Tank_no and the Lab_Denisty cause it doesn't change.
    May i do this ? if yessss, but How..?
    Regards,
    Abdetu..

    Hello poelger
    i check it then found the following code :
    DUPLICATE_RECORD Examples /*
    ** Built-in: DUPLICATE_RECORD;
    ** Example: Make a copy of the current record and increment
    ** the "line_sequence" item by one.
    DECLARE
    n NUMBER;
    BEGIN
    ** Remember the value of the 'line_sequence' from the
    ** current record
    n := :my_block.line_sequence;
    ** Create a new record, and copy all the values from the
    ** previous record into it.
    Create_Record;
    Duplicate_Record;
    ** Set the new record's 'line_sequence' to one more than
    ** the last record's.
    :my_block.line_sequence := n + 1;
    END; but then which trigger best fit the procedure should i use
    w-c-r or w-n-r-i Triggers
    and what is meant by line_sequence pls. ?
    Regards,
    Abdetu..

  • How to copy recorded live stream to new drive

    I was wondering if anyone out there knows how to copy a recorded live stream to a new drive on the server?  I can copy the file within the virtual app directory but not to another drive.
    The only solution i found was to edit the application.xml:
    <StreamManager>
            <StorageDir>e:\Sync\</StorageDir>
        </StreamManager>
    But unfortunately i need to rename the file once its recorded, and i'm having a hard time accessing that drive/directory where the file is located.
    Any help is greatly appreciated.
    thanks

    Hi,
    What I understood from your query I am providing you a solution:
    1. You can use the below to copy recorded live stream to new drive/directory in Application.xml
    <StreamManager>
            <StorageDir>e:\Sync\</StorageDir>
    </StreamManager>
    2. By default, a script can access files and directories only within the application directory of the hosting application. A server administrator can grant access to additional directories by specifying virtual directory mappings for File object paths. This is done in the FileObject tag in the Application.xml file, as shown in the following example:
    <FileObject>
          <VirtualDirectory>/_definst_;e:\Sync\_definst_\</VirtualDirectory>
    </FileObject>
    3. Create one application folder suppose test and then create main.asc file inside that which will have the below code
    application.onConnect = function(client) {
    application.acceptConnection(client);
    var fileObj = new File("_definst_");
    var fl = new Array();
    trace("File name : " + fileObj.toString());
    if (fileObj != null)
      if (fileObj.isDirectory)
       fl = fileObj.list();
       for (i in fl)
        trace("Directory : " + fl[i].name);
        if (fl[i].isFile)
         trace("File : " + fl[i].name);
         trace(fl[i].renameTo("dvrstream"+i));
        }//if closes
       }// for closes
      }//if closes
    }//if closes
    }// application closes
    This server side application rename files but since the folder which we had to access was outside application directory of the hosting application we had to map it using step 2.
    If this solution does not answer your query please be more ellaborative on what exactly are you trying to achieve. That will help me to answer your query correctly.
    Regards,
    Amit

  • How to Migrate the 12 Hives to new server in new farm

    Dear All,
    How could I migrate the 12 hives to new folder ??
    Are there specific folder I just copy/past or I just copy everything and override the original ?
    Thank you

    My first question would be why? Any customizations, hopefully, should be in .wsp format.
    Assuming you have manually copied files into the hive folder and are looking to get them to the new server, copying the whole hive across is a really bad idea. What I have done in this situation (more than once) is to use a differencing app such as Notepad++
    (with plugins) or WinMerge (my personal fave).
    1) Copy the hive from the source server to a temp folder on the destination server
    2) Use one of the apps above to compare the two directory structures
    3) Copy across just the missing files from the source folder to the destination hive
    By doing it this way you ensure you don't damage your fresh clean hive on the new server, and you should be able to get across the manual customizations you need.
    Good luck!
    -Corey

  • How to copy procedures and packages from one server to another?

    Hi,
    I have 439 packages and 178 procedures located in one server called MAXWELL.
    I need to copy these objects to another server called TITAN.
    The schema names is SPCBR in both servers.
    So both servers have an instance running with this schema SPCBR.
    SPCBR in TITAN server has their tables with table data which was generated by an export/import process from MAXWELL server.
    However, procedures and packages were not copied by the export/import because I used the clause 'tables'.
    Now, what can I do in order to equalize procedures and packages in both databases? I can't risk in damaging or duplicating data in my database located in TITAN server, ok?
    Thanks,

    Another simple alternative, according to AskTom (http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:454220160386)
    ---------------- getcode.sql ----------------------------
    set feedback off
    set heading off
    set termout off
    set linesize 1000
    set trimspool on
    set verify off
    spool &1..sql
    prompt set define off
    select decode( type||'-'||to_char(line,'fm99999'),
    'PACKAGE BODY-1', '/'||chr(10),
    null) ||
    decode(line,1,'create or replace ', '' ) ||
    text text
    from user_source
    where name = upper('&&1')
    order by type, line;
    prompt /
    prompt set define on
    spool off
    set feedback on
    set heading on
    set termout on
    set linesize 100
    ------------------- eof --------------------------------
    it extracts one procedure, function or package to a file. Thats it. If you
    wanted to get all of the procedures in a schema extracted to the current working
    directory, you would run a script:
    --------------- getallcode ---------------------------
    set termout off
    set heading off
    set feedback off
    set linesize 50
    spool xtmpx.sql
    select '@getcode ' || object_name
    from user_objects
    where object_type in ( 'PROCEDURE', 'FUNCTION', 'PACKAGE' )
    spool off
    spool getallcode_INSTALL.sql
    select '@' || object_name
    from user_objects
    where object_type in ( 'PROCEDURE', 'FUNCTION', 'PACKAGE' )
    spool off
    set heading on
    set feedback on
    set linesize 130
    set termout on
    @xtmpx.sql
    ---------------- eof ---------------------------------
    You can see how to filter on that one by adding to the where clause if you want.
    Just run @getallcode_INSTALL to run all of the scripts...

  • How to copy existing query report into new query report in SQ00

    Hi Experts,
    Hi Experts,
    I want to add fields "company code" "'region" to existing  query report AQZZ/SAPQUERY/FKF1============
    (list of vendor address) for this i done as following:
    1.In SQ01  go to "EDIT->other user group" and i selected user group as /SAPQUERY/FK
    2.I typed F1 in query field and click change button
    3.I clicked next screen button and entered into "change query f1: select fields screen".here i clicked "basic list" button and searched company code checkbox and saved it as result company code is appearing in the standard report"AQZZ/SAPQUERY/FKF1============"
    but unfortunately there is no region field(LFA1-REGIO) for this i think i should copy the existing  query report  into new query report(Ex:Z_LIST_OF_VEND) which should be 14 characters.please tell me briefly how to do this because this is first time i am using SQ00.
    one more issue is when i selected "edit-otheruser group" and choosing /SAPQUERY/FK  i  am getting only infoset "/SAPQUERY/FIKD" but i should need Info set: "/SAPQUERY/FIDD" please tell me how to add the previous one into user group.i think if i got /SAPQUERY/FIDD into usergroup  /SAPQUERY/FK i can add region also into Query report as i mentioned above by going SQ01 ...............................
    please help regarding this which should be very beneficiary to my carrier.
    Regards,
    naresh

    Hi Experts ,
    I solved issue by changing infoset in SQ02 by means of assigning field to field group and changed the query in SQ00.
    Regards,
    naresh.

  • How to copy  existing  row  value into new row  with a trigger. Same table

    Oracle guru,
    I am looking for a before or after trigger statement that will copy existing values inserted in the previous row into columns A & B. Then insert those values in a new row into column A & B if null? Same table. Hopefully my question is clear enough.
    -Oracle 10g express
    -I have an existing " before insert trigger" that insert id and timestamps when a new row is created.
    -Table is composed of column like id,timestamps,A,B and more.
    Thanks in advance
    Pierre

    957911 wrote:
    Oracle guru,
    I am looking for a before or after trigger statement that will copy existing values inserted in the previous row into columns A & B. Then insert those values in a new row into column A & B if null? Same table. Hopefully my question is clear enough.
    -Oracle 10g express
    -I have an existing " before insert trigger" that insert id and timestamps when a new row is created.
    -Table is composed of column like id,timestamps,A,B and more.
    Thanks in advance
    PierreI will call it a very Wrong design.
    It is a wrong Table Design. You are duplicating the data in table and not complying with the Database Normalization rules.
    How about Verifying if Column A & B are NULL before inserting and inserting another row and avoiding it in Triggers?
    If you are bent to achieve this, below code might be helpful. However, I would never go with this approach. If you would care about explaining the reason for going ahead with such a data model, people could suggest better alternative that might conform with Normalization rules.
    create or replace trigger trg_test_table
    after insert on test_table
    for each row
    declare
      pragma autonomous_transaction;
    begin
      if :new.col_a is null and :new.col_b is null then
        insert into test_table
        select 2, systimestamp, col_a, col_b
          from test_table
         where pk_col = (select max(pk_col) from test_table b where b.pk_col < :new.pk_col);
      end if;
      commit;
    end trg_test_table;Read SQL and PL/SQL FAQ and post the mentioned details.
    Do not forget to mention output from
    select * from v$version;

  • HR ABAP-How to copy a PERNR into another new PERNR?

    Hi All,
            How can we copy all the Infotype details related to a Personnel Number into another new Personnel number?
    Thanks in Advance,
       Anjaly

    Hi anjaly,
    1. There is no method/concept of Copying, w.r.t Personnel number.
    2. A new pernr,
        has to be hired in the system FIRST,
        via pa30/pa40 (hiring action),
    3. ONLY THEN,
    4. A new pernr is created in the sytem,
    5. ONLY AFTER THAT,
       we can put other data realted to pernr in the system using pa30 or anything else.
    regards,
    amit m.

  • How to copy a database to a new database on Windows 32bit?

    Hi Gurus,
    I have a production database 10g on Windows 32bit and I want to make a copy of this database as Test in same server ?
    Please help....
    Thanks,

    How big is your database?
    1)If database size is small, create a blank test db . Export from Production using expdp and impdp onto Test.
    2)If database size is hundreds of gb's use rman duplicate command. As you are restoring on to same host
    configure db_file_name_convert/log_file_name_convert in your pfile properly
    And also control_files parameter to new location in your new pfile.
    Refer: http://docs.oracle.com/cd/B19306_01/backup.102/b14191/rcmdupdb.htm#i1006859
    Edited by: vreddy on Sep 7, 2012 2:03 PM

  • How to copy iPhoto library to my new Macbook?

    I did a search and found some related topics that helped, but I wanted to make sure I got some more detail on this, as it seems to be a bit more complicated than I thought:
    I recently purchased a MacBook Pro, and need to copy my iPhoto library from our iMac to the Pro. So, here's what I did, which apparently is not correct:
    I have a backup of the iPhoto library on an external hard drive, where I simply copy the iPhoto Library folder periodically.
    So, I simply connected my MacBook to that external, and selected the folders I wanted to import, and clicked on "Import to Library."
    I believe what I ended up with is essentially all the thumbnails on the new library - all the images are there, but at a low resolution, and I don't seem to have the actual picture files anywhere.
    From my research here, it sounds like I need to actually copy the iPhoto library from the iMac (or external hard drive) onto my MacBook, and then open them up with iPhoto.
    First, is that correct?
    And second, how do I delete the thumbnails that are already on my library, since I don't actually see any files? Under iPhoto library in my Finder, there is simply an iPhoto Library "icon."
    Thanks for any help,
    Bruce

    Connect the External Hard Drive to your new computer, quit iPhoto, drag the iPhoto library from the pictures folder to the trash (empty it later after you are all done), drag the entire iPhoto library as a single entity from the EHD to the pictures folder on your new MacBook and launch iPhoto - it will find the iPhoto library you just put in the pictures folder, convert it if needed and you will have on the MB exactly what you had before on the iMac
    LN

  • How to copy contents of folder into new folder with Automator?

    What is the simplest, fastest Automator workflow to copy the contents of a folder into a new folder? And without using 3rd party actions.
    I have a template folder structure called .ProjectFolder (to keep it invisible) so I need to copy the contents of this folder into a new folder, preferably with the ability to name the new folder on the fly. I don't want to use 3rd party actions because this is something I then need to maintain. Thanks.

    957911 wrote:
    Oracle guru,
    I am looking for a before or after trigger statement that will copy existing values inserted in the previous row into columns A & B. Then insert those values in a new row into column A & B if null? Same table. Hopefully my question is clear enough.
    -Oracle 10g express
    -I have an existing " before insert trigger" that insert id and timestamps when a new row is created.
    -Table is composed of column like id,timestamps,A,B and more.
    Thanks in advance
    PierreI will call it a very Wrong design.
    It is a wrong Table Design. You are duplicating the data in table and not complying with the Database Normalization rules.
    How about Verifying if Column A & B are NULL before inserting and inserting another row and avoiding it in Triggers?
    If you are bent to achieve this, below code might be helpful. However, I would never go with this approach. If you would care about explaining the reason for going ahead with such a data model, people could suggest better alternative that might conform with Normalization rules.
    create or replace trigger trg_test_table
    after insert on test_table
    for each row
    declare
      pragma autonomous_transaction;
    begin
      if :new.col_a is null and :new.col_b is null then
        insert into test_table
        select 2, systimestamp, col_a, col_b
          from test_table
         where pk_col = (select max(pk_col) from test_table b where b.pk_col < :new.pk_col);
      end if;
      commit;
    end trg_test_table;Read SQL and PL/SQL FAQ and post the mentioned details.
    Do not forget to mention output from
    select * from v$version;

  • How to copy contents of hardrive to new hardrive on Tecra 9100?

    I've just recieved my new hardrive and need to copy the contents of the old one to the new one. The new hardrive came with no extra software. I have Norton Ghost, so naturally I went to the Copy Hardrive tool only to find it lists my current hardrive to copy to. How can I copy the contents if I need to install the hardrive? I mean surely it'll not do anything if I just put the new hardrive in?
    Please help!

    Hi,
    regarding your harddisk and the size, thats easy, just do the following steps:
    Go into "Control Panel" -> "Administrative Tools" -> "Computer Managment" -> "Disk Managment" and then activate the unformatted partition by making a right-click on the "Unallocated" part and click on "New Partition". The rest is easy to perform.
    And regarding the USB-Caddy: they are not expensive, you can get on in every electronic market for 10$, so it shouldnt be a big deal. :)
    Greets

Maybe you are looking for