Migrating email from Lotus 6.5 to Oracle Collaboration Suite 10

hello,
can you help me with some hints about this migration (email from Lotus 6.5 to Oracle Collaboration Suite 10)... I'm from Romania and I found out that there is nobody here to do such thing ... so I have to do it...and I don't have a migrating tool for OCS 10g...there is just one for 9, and I've tryed to use it but there are to many errors... please tell me what do I have to do with this migration ...

The focus of this forum is on database migration. I would suggest you post your question to the collab suite migration forum
Migration
Donal

Similar Messages

  • Migration software from SAP R/3 to Oracle eBusiness Suite

    Is there any Oracle product which can migrate an Oracle 9i R2 database for SAP R3 to eBusiness Suite?
    Has any one successfully integrated an SAP R/3 system with eBusiness Suite?

    Check the following links:
    How to migrate data from SAP to EBS? What's your solution and tools?
    Re: How to migrate data from SAP to EBS? What's your solution and tools?
    Oracle Helping SAP Customers to get “OFF SAP”
    http://www.oracle.com/corporate/press/2005_jun/sap.html
    SAP shops migrate to Oracle Applications
    http://www.dba-oracle.com/oracle_news/news_sap_migrate_oracle_applications.htm

  • Migration from Oracle Collaboration Suite

    Hello all.
    I am having some trouble to migrate an Oracle Collaboration Suite from one server to another one. We are seriously considering to migrate to Sun Collab instead. Is it possible to use Oracle Collab's directory, mail and calendar information? Is it possible to import to Sun Collab?
    Thanks in advance
    Carlos Inglez

    CInglez wrote:
    I am having some trouble to migrate an Oracle Collaboration Suite from one server to another one. We are seriously considering to migrate to Sun Collab instead. Is it possible to use Oracle Collab's directory, mail and calendar information? Is it possible to import to Sun Collab?=> Email data could be migrated using IMAP copy mechanism.
    => The directory data would need to be modified/translated/mapped into the appropriate form for Sun Collaboration Suite user accounts.
    => The Oracle calendar information could be exported in ICS format then re-imported into Sun Calendar.
    So theoritically it should be possible although it would require a significant amount of testing and development of tools/scripts to assist in the process if you have a large number of users.
    Regards,
    Shane.

  • Need to read Email from Lotusnotes and Outlook using Oracle

    Dear All,
    My database version Oracle 10.2
    I need to read Email from Lotusnotes and Outlook using Oracle.
    I have tried with below link
    http://sourceforge.net/projects/plsqlmailclient/The problem is i am getting some java error.
    Can anyone suggest me to proceed further.
    Cheers,
    San

    I am using the another function to read an email from pop3 server
    create or replace
    FUNCTION pop3 (
       username   VARCHAR2,
       PASSWORD   VARCHAR2,
       msgnum     NUMBER
       RETURN tstrings PIPELINED
    IS
       --POP3_SERVER             constant varchar2(19) := '127.0.0.1';
       pop3_server   CONSTANT VARCHAR2 (100)     := 'xxxxxx';
       pop3_port     CONSTANT NUMBER             := 110;
       --POP3_TIMEOUT            constant number := 10;
       pop3_ok       CONSTANT VARCHAR2 (10)      := '+OK';
       e_pop3_error           EXCEPTION;
       --E_READ_TIMEOUT  exception;
       --pragma exception_init( E_READ_TIMEOUT, -29276 );
       socket                 UTL_TCP.connection;
       line                   VARCHAR2 (30000);
       BYTES                  INTEGER;
       -- send a POP3 command
       -- (we expect each command to respond with a +OK)
       FUNCTION writetopop (command VARCHAR2)
          RETURN VARCHAR2
       IS
          len    INTEGER;
          resp   VARCHAR2 (30000);
       BEGIN
          len := UTL_TCP.write_line (socket, command);
          UTL_TCP.FLUSH (socket);
          -- using a hack to check the popd response
          len := UTL_TCP.read_line (socket, resp);
          IF SUBSTR (resp, 1, 3) != pop3_ok
         THEN
           RAISE e_pop3_error;
          END IF;
          RETURN (resp);
       END;
    BEGIN
    --UTL_TCP.CLOSE_CONNECTION (SOCKET);
       PIPE ROW ('pop3:' || pop3_server || ' port:' || pop3_port);
       -- Just to make sure there are no previously opened connections
       UTL_TCP.close_all_connections;
       -- open a socket connection to the POP3 server
       socket :=
          UTL_TCP.open_connection (remote_host      => pop3_server,
                                   remote_port      => pop3_port,
                                   --tx_timeout => POP3_TIMEOUT,
                                   CHARSET          => 'US7ASCII'
       -- read the server banner/response from the pop3 daemon
       PIPE ROW (UTL_TCP.get_line (socket));
       -- authenticate with the POP3 server using the USER and PASS commands
       PIPE ROW ('USER ' || username);
       PIPE ROW (writetopop ('USER ' || username));
       PIPE ROW ('PASS ' || PASSWORD);
       PIPE ROW (writetopop ('PASS ' || PASSWORD));
       -- retrieve the specific message
       PIPE ROW ('RETR ' || msgnum);
       PIPE ROW (writetopop ('RETR ' || msgnum));
       --PIPE ROW( 'LIST '||msgNum ); PIPE ROW( WriteToPop('LIST '||msgNum) );
       PIPE ROW ('*** START OF INTERNET MESSAGE BODY ***');
       LOOP
       dbms_output.put_line('entering');
          BYTES := UTL_TCP.available (socket);
         IF BYTES > 0
          THEN
             BYTES := UTL_TCP.read_line (socket, line);
             line := REPLACE (line, CHR (13) || CHR (10), '');
             -- WILL HAVE TO USE PLSQL FUNCTIONS (HAVE BOOKMARKED) TO GET THE MAIL
             -- IN THE PREFERRED FORMAT. CAN USE "REPLACE()"
             IF LENGTH (line) = 1 AND line = '.'
             THEN
                PIPE ROW ('*** END OF INTERNET MESSAGE BODY ***');
             ELSE
                PIPE ROW (line);
             end if;
         END IF;
          EXIT when length (LINE) = 1 and LINE = '.';
          -- PIPE ROW (line);
       END LOOP;
       --PIPE ROW( '*** END OF INTERNET MESSAGE BODY ***' );
       -- close connection
       PIPE ROW ('QUIT');
       PIPE ROW (writetopop ('QUIT'));
       UTL_TCP.CLOSE_CONNECTION (SOCKET);
    EXCEPTION
       WHEN e_pop3_error
       THEN
          PIPE ROW ('There are no mails !');
    END;I am getting the below output .
    21     pop3:sbssld1 port:110
    75     "+OK Lotus Notes POP3 server version Release 8.0.1 ready on SBSSLD1/SBPSS.
    47     USER [email protected]
    69     "+OK [email protected], your papers please.
    13     PASS password
    63     "+OK [email protected] has 1 message.
    6     RETR 1
    17     "+OK 1546 octets
    38     *** START OF INTERNET MESSAGE BODY ***
    9     Subject:
    48     X-KeepSent: A231D6D0:8485FE4B-65257AB1:0022E60F;
    23      type=4; name=$KeepSent
    46     To: [email protected]
    53     X-Mailer: Lotus Notes Release 8.0.1 February 07, 2008
    95     Message-ID: <[email protected]mbnpparibasfs.in>
    48     From: [email protected]
    36     Date: Fri, 9 Nov 2012 11:51:14 +0530
    90     X-MIMETrack: Serialize by POP3 Server on SBSSLD1/SBPSS(Release 8.0.1|February 07, 2008) at
    23      11/09/2012 11:51:21 AM
    17     MIME-Version: 1.0
    37     Content-type: multipart/alternative;
    68     "     Boundary="0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6""
    27     Content-Disposition: inline
    (null)     (null)
    58     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6
    39     Content-type: text/plain; charset=UTF-8
    33     Content-transfer-encoding: base64
    (null)     (null)
    (null)     (null)
    76     DQoNCg0KUmVnYXJkcywNClNoYW5tdWdhbSBOYXRhcmFqYW4uDQpNb2IgOiA5NjI5MjUyNDI1DQpP
    76     ZmYgOiAwNDQgMjI1MDQ3MDAgRXh0biA0Nzc5DQoNCiB+SWYgdGhlIGZhY3RzIGRvbuKAmXQgZml0
    68     IHRoZSB0aGVvcnksIGNoYW5nZSB0aGUgZmFjdHMu4oCdIC0gQWxiZXJ0IEVpbnN0ZWlu
    (null)     (null)
    58     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6
    38     Content-type: text/html; charset=UTF-8
    27     Content-Disposition: inline
    33     Content-transfer-encoding: base64
    (null)     (null)
    76     PGh0bWw+PGJvZHk+DQo8cD5SZWdhcmRzLDxicj4NClNoYW5tdWdhbSBOYXRhcmFqYW4uPGJyPg0K
    76     TW9iIDogOTYyOTI1MjQyNTxicj4NCk9mZiA6IDA0NCAyMjUwNDcwMCBFeHRuIDQ3Nzk8YnI+DQo8
    76     YnI+DQogfklmIHRoZSBmYWN0cyBkb27igJl0IGZpdCB0aGUgdGhlb3J5LCBjaGFuZ2UgdGhlIGZh
    60     Y3RzLuKAnSAtIEFsYmVydCBFaW5zdGVpbjxicj4NCjwvYm9keT48L2h0bWw+
    (null)     (null)
    60     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6--
    (null)     (null)
    36     *** END OF INTERNET MESSAGE BODY ***
    4     QUIT
    42     "+OK Lotus Notes POP3 server signing off.
    "Now pls suggest me how can i store the sender mail id, receiver mail id, subject and body of the mail in a table.
    So that i can display the saved data in the above table as a mail in my separate application.
    Thanks in advance.
    Cheers,
    San

  • Sending an email from Lotus Notes release 5.0.4a

    I need to write java code for sending an email from Lotus Notes release 5.0.4a.
    Initially, I tried using Lotus Domino Toolkit for java, but the current release, "Lotus Domino ToolKit for Java/Corba release 5.0.8" is not compatible with the notes client/server we are using(5.0.4a).
    Now, I am trying to use "Lotus Domino Toolkit 2.1" which supports notes version 5.0.3 and higher, but I couldnot find out how to use it to send email.
    Is there are other way in which we can connect to Lotus Notes for sending email. I cannot use SMTP as the Lotus Notes administrator is afraid of security issues so there is no possibility that I can connect to Domino server using java mail API by enabling SMTP on the Domino server.
    I would be thankful if somebody can help me to do this.

    First off - This is very "off topic"
    The Domino SMTP server is not hard to lock down. Any Notes Admin worth his/her salt should know how to do it. Try to persuade them to run the SMTP stuff using name and password authentication only, or restrict access to an IP address range. This is all easy stuff.
    Otherwise DIIOP/CORBA is one way to go. If your toolkit jar files don't work with the server then try using the ones on the server. Look in %noteshome%\data\domino\java for the ncso.jar file.
    This works for me on an AS/400 java VM to WinNT/Linux Domino servers of various versions.
    How to create an email using this method is again not difficult. All you really need is a blank database template. You have to create a document with certain fields in it (all documented) and then save it. That's all there is to it.
    Word of warning DIIOP is not very rapid and careless coding can create problems. Ensure that once you have finished a session you make sure you close it else you will have continual connection problems.
    Try searching around the domino/notes groups on how to actually do this.
    SH

  • Migrating from Oracle Collaboration  Suite to UCM

    Hi
    I was using Oracle Collaboration suite for my document management system . Now I plan to migrate it to UCM , is there any specific documents advising on this topics ?
    Thanks
    Joseph John

    Hello Joseph,
    This is exactly my question too, my customer has implemented a document management solution based on OCS (Content Services) and Oracle BPEL. Now it is not clear where to go and additionally, considering a lot of problems with those products, they are considering other solutions to move too. If there is a migration plan (at least from the licensing point) this would help much.
    Regards,
    Nurlan

  • Java program to send email from lotus notes

    Hello,
    Please anyone suggest me how to send email from lotus notes using java.
    Thanks.

    I don't understand the question. Are you asking:
    1. How do I send e-mail from Lotus notes manually? Press the Send button.
    2. How do I send e-mail from Java? Look into the Java Mail API. Doesn't require Lotus Notes (or any other e-mail client, for that matter).
    3. How do I send e-mail to a Lotus Notes address? Just send e-mail to the address (see # 2 above). Nothing special required just because the recipient uses Lotus Notes. FYI: I use Lotus Notes (though I hate it) because it's our company's standard & have written Java apps that send e-mails to Notes. The only time I've had to be aware the recipient was a Notes client was when I was sending HTML formatted messages; then I had to pay attention to the limitations of Notes' brain dead HTML parser.

  • Migrating emails from Symantec Enterprise Vault to Exchange Online

    Hi
    I am in the process of planning a migration from on-premises Exchange 2010 to Exchange Online in Office 365. The on-premises Exchange environment is using Symantec Enterprise Vault v9 for archiving emails older than a certain number of months. 
    I am planning to use the cutover migration method to migrate mailboxes to Exchange Online. What is the best way to migrate email from Enterprise Vault to Exchange Online? Will the E-mail Migration Tool in Exchange Control Panel do the job or will a third
    party tool need to be used? 

    You have a few options ...
    a/ Export all the mail from each archive to a PST file, and then import that in to Exchange, or Office 365.
    b/ Export all the mail from each archive back to the original mailbox.
    c/ Use a third party tool, like Archive Shuttle from QUADROtech which can migrate directly to Office 365 from Enterprise Vault.
    Hope that helps,
    There are other migration solutions out there as well from TransVault and NUIX.

  • Migrate data from PostgreSQL 7.2 to oracle 9i on Linux

    Kindly guide me on how to migrate data from PostgreSQL 7.2 to oracle 9i on Linux. Please provide me a performance comparision between Orcle 9i on Linux and on windows 2000
    thanks

    Hi Geo
    We do not currently have tools to support Postgres to SQL migration. However, there are tools currently under developement which may help you in the future. In the meantime, there are some useful articles on postgres.org web site. See http://archives.postgresql.org/pgsql-sql/2002-10/msg00352.php
    We do not have comparison docs bertween Oracle on UNIX and Oracle on Windows as the the main code base is identifical. There are some artchitectural changes on windows where Oracle background processes have been implemented as threads and are installed as Windows services. More information on the architectures on both platforms can be found on the following sites:
    Oracle on Windows
    http://otn.oracle.com/tech/windows/index.html
    Oracle on Linux
    http://otn.oracle.com/tech/linux/index.html
    http://oss.oracle.com
    cheers
    Jan

  • Oracle Collaboration Suite download disappear

    Hi,
    Where can I download the Oracle Collaboration Suite. Few weeks back I was able to see the download page, now they are nowhere to find.
    Thank you.

    Hello
    We found your details on Oracle forums.
    We are Experts Computer Consulting, company based in Abu Dhabi, UAE
    Currently we are looking for Oracle Collaboration consultant, someone who has good knowledge in installation, configuration of oracle collaboration suite.
    We would like to know if you are interested to work in United Arab Emirates. If yes then send us your resume along with your salary expectations.
    Thanks
    Experts Computer Consulting
    P.O. Box: 27635, Abu Dhabi, UAE
    Tel: 00971-2-6765722
    Fax:00971-2-6765799
    Email: [email protected]

  • Career as Oracle Collaboration Suite DBA

    I am getting an opportunity to work on Oracle Collaboration Suite DBA in same company.
    If you have few mins then please can you guide me how is it to
    work on OCS. Will it be helpful for me if i learn this application also ?
    How is the market value of OCS DBA's ?

    Dificult to say. The market has not adopted the OCS as a big product. Maybe this will change with beehive (next version).
    OCS requires you to have DB + AS + OCS skills. So you will have a lot to do and you'll work on a visible (corporate email) system. Lots of fun + lot of stress.
    cu
    Andreas

  • Are There "Oracle Collaboration Suite" Forums?

    Is there a forum for questions on "Oracle Collaboration Suite"? i.e. Oracle Email, Oracle Calendar, etc?
    I see that Oracle Collaboration Suite Release 1 (9.0.3.0.0) for Solaris Operating System (SPARC) (32-bit) is available for download. I am trying to determine if there will be a release that will run on Windows 2000, and if so, when its release may be scheduled for?
    Thanks,
    G

    Thanks Arnaud. It works.
    Few more question about UI changes
    Are there any copyright issues by Oracle to change text/images/css of Oracle Collaboration Suite Components; for example if I change
    <strong>OracleLogo Collaboration Suite Mail </strong>to <strong>MyCompanyLogo Easy Mail </strong>so will it raise any copyright issue for us? or is there any document that defines <em>to what extent can we make changes?</em>
    Regards
    Sami

  • Download Oracle Collaboration Suite

    Hi,
    OTN announced the Oracle Collaboration Suite in the products-section.
    As far as ai know Collaboration Suite is not identical with Oracle Unified Messagin shipping with 9iAS Rel.2 for UNIX.
    I4d like to test Collaboration Suite (we use Interoffice and are still staified with it).
    Can anybody explain to me where to get the Collaboration Suite (we are Oracle Partner...) ?
    Thanks.
    Ronny

    Having re-read my last post. It dawned on me with The Netherlands comment. Most attacks on our servers originate in either China, S Korea, or The Netherlands. We have blocked many class A's from The Netherlands and wound up blocking download.oracle.com.

  • Oracle Collaboration Suite system compatibility error on Red Hat 3.0 ES

    Hello,
    I have installed Oracle Collaboration Suite on Red Hat 3.0 Es.i can view the home page of Oracle Real-Time Collaboration ,But during system Compatilbility check, it is showing me the error message as "your system is not compatible with Oracle Web Conferencing. Please look at your system details for more information."
    Can anyone please help?
    Regards,

    What clients are you trying to use to for web conferencing. It sounds like you are trying to use redhat to view. Only windows will work with web conferencing and it has to be the latest and greatest? version of internet explorer.
    Ben

  • Oracle Collaboration Suite Release 2 for Windows

    Is Oracle Collaboration Suite Release 2 (9.0.4.1.0) available on Windows platforms. I found it is available for LINUX, Solaris, HP-UX and AIX. Any information.
    Mohan

    unfortunately
    OCS Release2 for windows is not available.

Maybe you are looking for

  • Difference b/w Java Class and Bean class

    hi, can anybody please tell me the clear difference between ordinary java class and java Bean class. i know that bean is also a java class but i donno the exact difference between the both. can anybody please do help me in understanding the concept b

  • Simple Feed from user entry variable to customer exit

    Requirement, I am trying to populate the user entry date from variable single value <b>ZP_userent'.</b> and then feed that date to customer exit variable <b>'ZP_custexit'.</b> to calculate the range User entry date --  '01012099'. but it is not popul

  • How to upgrade 6i form to 11g forms which includes OLE container ?

    How to upgrade 6i form to 11g forms which includes OLE container ?

  • Consolidation Unit Hierachy deletion

    The consolidation unit is time dependant, but has many duplicate hierarchies created unwantedly over a period of time. Hence this creates confusion in parameter selection in reports. Can the unwanted hierarchies be deleted in development and transpor

  • Error message 0X40010017

    When I try to open some PDF's in Photoshop CS3 7.5 ...I recieve an error message of 0X40010017. I am working in Quark and Photoshop. I do not have Illustrator.  How can I open these PDF's thanks. Martymag22