PostgreSQL is not migrated?

After Today I found out that I have a problem with the new OSX Maverick Server.
The postgresql database is not running.
I checked with the following command:
"psql postgres -U _postgres -h "/Library/Server/PostgreSQL For Server Services/Socket"
the response from the server was:
psql: could not connect to server: No such file or directory
          Is the server running locally and accepting
          connections on Unix domain socket "/Library/Server/PostgreSQL For Server Services/Socket/.s.PGSQL.5432"?
When I checked the Migration files inside the
/Library/Server/PostgreSQL/Migration
I noticed that the migration was not successfully completed.
cat pg_upgrade_restore.log
last entry shows:
ALTER TABLE ONLY ir_act_url INHERIT ir_actions;
psql:pg_upgrade_dump_db.sql:24582: ERROR:  column "name" in child table must be marked NOT NULL
How can I solve this issue and continue with postgresql?

VPN L2TP had problem on server 3.0
http://support.apple.com/kb/TS1629
http://support.apple.com/kb/TS5313
https://discussions.apple.com/message/23740790#23740790#23740790
https://discussions.apple.com/thread/5468091?start=15&tstart=0

Similar Messages

  • Session is not Migrated when I use HttpSessionActivationListener .

    Hi all,
    I studied about HttpSessionActivation Listener and in order understand it fully I created a simple program . I studied that the listener will be invoked whenever session attribute is migrated from one JVM to another .
    The following was what I did to understand HttpSessionActivationListener
    Created two instances of Tomcat in a single box.(Actually two services)
    Configured Apache Http Server to point the two instances (Load balancing and fail over) [Using this link|http://thought-bytes.blogspot.com/2007/03/how-to-load-balance-tomcat-55-with.html]
    Created a small web application and deployed in two servers
    Source codes
    ===========
    SessionMigrationTester Listener
    package c6;
    import javax.servlet.http.*;
    import javax.servlet.*;
    import java.io.*;
    public class SessionMigrationTester implements HttpSessionActivationListener,Serializable { //Implemented Serializable Interface
         public void sessionDidActivate(HttpSessionEvent evt){
              System.out.println("========================");
              System.out.println("Session DID Activated --**-- Serializable");
              System.out.println("========================");
         public void sessionWillPassivate(HttpSessionEvent evt){
              System.out.println("========================");
              System.out.println("Session WILL Passivate --**-- Serializable");
              System.out.println("========================");
    }Web.xml
    ========
    <web-app>
    <servlet>
         <servlet-name>SessionTest</servlet-name>
         <servlet-class>c6.SessionExample</servlet-class>     
    </servlet>
    <servlet>
         <servlet-name>servlet3</servlet-name>
         <servlet-class>c6.Servlet3</servlet-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>SessionTest</servlet-name>
         <url-pattern>/sessiontest.do</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
         <servlet-name>servlet3</servlet-name>
         <url-pattern>/servlet3.do</url-pattern>
    </servlet-mapping>
    </web-app>SessionExample.java
    package c6;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class SessionExample extends HttpServlet {
         public void doGet(HttpServletRequest req,HttpServletResponse resp)throws ServletException,IOException {
              System.out.println("Inside doGet method ");
              PrintWriter out = resp.getWriter();
              resp.setContentType("text/html");
              HttpSession session = req.getSession(false);
              out.println("<html>");
              out.println("<head> ");
              out.println("</head>");
              out.println("<body>");
              out.println("<form >");
              if(session ==null){
                   System.out.println("No Session exists creating a new one ....");
                   session = req.getSession(true);
                   String sessionID = session.getId();
                   if(session.isNew()){
                        session.setAttribute("hello",new SessionMigrationTester());
                        out.println("New session is created ID:- "+sessionID);
                        System.out.println("New session is created ID:- "+sessionID);
              }else {
                   String sessionID = session.getId();
                   session.setAttribute("hello",new SessionMigrationTester());
                   out.println("Old session ID:- "+sessionID);
                   System.out.println("Old session ID:- "+sessionID);
              out.println("Modified ***<br/>");
              out.println("<input type='submit' value='click me' />");
              out.println("<script lang='javascript'>");
              out.println("document.forms[0].action ="+"\""+resp.encodeURL("servlet3.do")+"\"");
              out.println("</script>");
              out.println("</form>");
              out.println("</body>");
              out.println("</html>");
              System.out.println("End of doGet");
         public void doPost(HttpServletRequest req,HttpServletResponse resp) throws ServletException,IOException {
              doGet(req,resp);
    }Servlet3.java
    =========
    package c6;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class Servlet3 extends HttpServlet {
         public void doGet(HttpServletRequest req,HttpServletResponse resp)
         throws ServletException,IOException {
              HttpSession session = req.getSession(false);
              if(session!=null){
                   System.out.println("Session Already Exists! "+session.getId());
              }else{
                   System.out.println("Session doesn't exists!!!");
         public void doPost(HttpServletRequest req,HttpServletResponse resp)
         throws ServletException,IOException {
              doGet(req,resp);
    }Whenever I stop one instance(say "Tomcat instance 1") I'm getting a message "Session Will Passivated "(which is what I have in overridden sessionWillPassivate method)
    I'm also getting "Session Did Activated" message (overridden in sessionDidActivated method) whenever I start the same instance(say "Tomcat instance 1").
    What I expected
    ============
    After stopping the Tomcat instance (say "Tomcat instance 1") I reloaded the same page expecting this time it will be served by another Tomcat instance(say "Tomcat Instance 2" and I will get "SessionDidActivated" message from "Tomcat instance 2" but it didn't worked as I expected instead the page is served by another Tomcat instance("Tomcat instance 2") but the session is not migrated and I'm not getting "SessionDidActivated" in the new Tomcat instance.
    I also created a new Servlet named as (Servlet3) and modified SessionExample.java to this .so that It contains button and when it clicked it will hit a new Servlet(Servlet 3) but it also doesn't help.
    I'm trying this in a single physical machine with two tomcat instance configured with Apache Http Server .
    Is anything I'm missing ?
    Please clarify me why the session is not migrated .
    Thanks in advance

    Hi ejp,
    One more question I have . Today I tried to find out why the listener class is not invoked(I doesn't get "SessionDidActivated" and "SessionWillPassivate" sysouts from listener class) and found that when I enable clustering in Tomcat it's doesn't works(even though session migrates) and when I switch back to normal mode it does work .
    Following is the fragment I uncomment to enable clustering
    <!--
            <Cluster className="org.apache.catalina.cluster.tcp.SimpleTcpCluster"
                     managerClassName="org.apache.catalina.cluster.session.DeltaManager"
                     expireSessionsOnShutdown="false"
                     useDirtyFlag="true"
                     notifyListenersOnReplication="true">
                <Membership
                    className="org.apache.catalina.cluster.mcast.McastService"
                    mcastAddr="228.0.0.4"
                    mcastPort="45564"
                    mcastFrequency="500"
                    mcastDropTime="3000"/>
                <Receiver
                    className="org.apache.catalina.cluster.tcp.ReplicationListener"
                    tcpListenAddress="auto"
                    tcpListenPort="4001"
                    tcpSelectorTimeout="100"
                    tcpThreadCount="6"/>
                <Sender
                    className="org.apache.catalina.cluster.tcp.ReplicationTransmitter"
                    replicationMode="pooled"
                    ackTimeout="15000"
                    waitForAck="true"/>
                <Valve className="org.apache.catalina.cluster.tcp.ReplicationValve"
                       filter=".*\.gif;.*\.js;.*\.jpg;.*\.png;.*\.htm;.*\.html;.*\.css;.*\.txt;"/>
                <Deployer className="org.apache.catalina.cluster.deploy.FarmWarDeployer"
                          tempDir="/tmp/war-temp/"
                          deployDir="/tmp/war-deploy/"
                          watchDir="/tmp/war-listen/"
                          watchEnabled="false"/>
                <ClusterListener className="org.apache.catalina.cluster.session.ClusterSessionListener"/>
            </Cluster>
    -->Am just curious to know why it happens like this .
    Can you please clarify me ?

  • How can I use my old MobileMe email address if I did not migrate to icloud by the deadline?

    I had a mobile me account that I did not migrate to icloud.  Now when I try and set up an icloud account using the old mobileme email address, it says that address is already in use. I then try and access it but the password doesn't work and it says mobileme is closed. When I try and reset the password, it says an email has been sent to the email on file...which is an old mobileme address that I cannot access.
    How can I get this email address set up in icloud? 

    Nice idea - I tried it but it doesn't seem to work (at least not for me).
    So here are the details in case, you can spot something more I could do....
    When MobileMe was live
    MobileMe ID was [email protected]
    AppleID (to make iTunes purchases) was [email protected]
    When iCloud went live (and MM was still alive)
    iCloud account was created based upon AppleID - [email protected]
    iCloud would not create [email protected] as was already in use (by me)
    iCloud would not merge [email protected] as iCloud does not merge
    MobileMe migration to iCloud option was not taken
    Deleted all data out of MobileMe account (mail, calendar, contacts, gallery)
    Deleted MobileMe mail account off of all devices
    When MM died
    I received notification that I had not migrated my MM account
    iCloud was happily working as Contacts/Calendar sharer using my AppleID of [email protected]
    Weeks later on Mac running 10.8
    System Preference - iCloud, already logged in with AppleID of [email protected]
    Then ticked the untick Mail box
    Long wait with small grey whirling cog box, stating "Loading". Eventually a BLANK message box with OK which then disappeared on a timeout.
    System Preference - Mail...  Re-added [email protected] (now picked up as iCloud account)
    Mail - Accounts.... Re-added [email protected] BUT got message "Mail can'y connect to the account..."
    So tried logging into www.icloud.com (using AppleID of [email protected] where my contacts/calendar now reside).  Clicked on Mail icon and received "@me.com Address Needed" message

  • Lync 2013 client is deployed but user accounts are not migrated from OCS to Lync 2013 Server - how to open Lync meetings automatically in the Lync Web Plug-in

    We have in our enterprise the following scenario:
    1 - Lync 2013 client is installed
    2 - User accounts are not migrated to Lync 2013 Server, users are using Office Communicator as their main tool
    3 - Users receive Lync 2013 meeting requests but when try to access them, Lync 2013 client launches and shows error. Users will need to open the browser and paste the URL to the address bar but this still open
    4 - We cannot use the workaround of adding "?SL=1" to the Lync 2013 meeting URL as the user base is large and manual workaround is not accepted
    5 - Question: is there any automated way, via egistry key or GPO setting, so that users temporarily (until their accounts are migrated to Lync 2013 server) can bypass Lync 2013 client completely and automatically open all Lync 2013 meetings
    on the browser, using Lync Web Plug-in?

    Thanks for the response,
    First, I should have mentioned clearly that users have Office Communicator 2007 client and Lync 2013 client installed in their machines. Their accounts are not migrated yet to Lync 2013 server.
    Second, we are using IE9 and IE10. The issue is that users CAN join Lync 2013 meetings with their browsers but have to paste the URL manually to browser and add "?SL=1" otherwise, if they just click at the "Join Online Meeting" or "Join
    Lync Meeting" URL it launches Lync 2013 client which shows error because is not configured yet, as they are using OCS client and migrating slowly to Lync 2013 server.
    Is there a Group Policy setting or a registry key from Microsoft that can be turned on to these users machines and make will all Lync meeting requests to be opened in IE browser instead of Lync 2013 client. We need a way to ignore
    Lync 2013 client until user accounts are migrated to Lync 2013 Server. Manually typing URLs is not an option in a big organization, can't explain thousands of users of different levels what to do.
    We are regretting the decision not to separate Lync 2013 from Office 2013 package we deployed recently. If Lync 2013 is uninstalled then all Lync meeting requests are opened in browser without an issue.

  • Photoshop elements 10 will not migrate to my new macbook pro/retina display.  There is no CD/DVD player on this machine.  Any suggestions on how to get Elements onto my machine?  Yes, I have the disk(s).

    Photoshop elements 10 will not migrate to my new macbook pro/retina display.  There is no CD/DVD player on this machine.  Any suggestions on how to get Elements onto my machine?  Yes, I have the disk(s).  Am I going to have to buy an external CD/DVD player to load this one program:(

    I have ordered a USB3 BluRay/DVD/CD player/burner and will use that both with my iMac ( in which the Superdrive seems to be failing ) and the MBPro Retina I just bought .

  • Application Software (example Microsoft Office) does or does not migrate to the new computer

    From a software standpoint, when you use data migration Mac to Mac or PC to MAC, why application software, like Microsoft Office or Adobe Photoshop, sometime are able to move (migrate) to the new computer without any issues and sometimes the user must BUY again the software?
    Technicians told me that sometimes the Migration Data is capable to migrate the Software Serial Number of the software and sometimes does not.
    But, what is the real techincal answer? What happens to the serial number when you migrate?

    Depends on how the App stores the serial number. Some apps fail when the file that holds the serial number gets moved and must be reinstalled.
    None of that requires you to purchase it again. You just have to install it using the key you were provided with the software.
    No apps will be migrated from a PC as they will not work with OS X.
    Office 2004 will not Migrate as it doesn't work in Mountain Lion.

  • 10.1.3 install did not migrate connections

    The 10.1.3 install did not migrate my connections from 10.1.2.

    Yes they seem to be ok, but I must say that our projects are simple Java apps, very little j2ee stuff, no UML, no diagrams. And it would be easy for me to have missed seeing something that did not work.
    Oh yes, also the project properties/libraries did not migrate so we had to re-do all of these settings.

  • Settings are not migrated in 1.2.1.32.13

    I've been trying to migrate the settings from 1.2.1.3200 to 1.1.2.32.13 but not all of them are migrating.
    connections are not migrating, although SQL Formatter and preferences are. H`ave anyone experienced anything like this??
    Export/Import did work.
    Windows XP SP2
    SQL Developer 1.2.1.3200 to 1.2.1.32.13
    Tony

    Barry,
    The problem seems to be between 3200 and 3213, I have migrated settings from 2998 to 3213 successfully.
    i have tested migration between these versions here are the results and some stack information. hope will help.
    From 2998 to 3200 Successful
    WARNING: Unknown directive: SetSkipJ2SDKCheck
    Using oracle.home=C:\sqldeveloper_3200
    Using ide.user.dir=null
    WARNING: version.properties contains an invalid VERSION property (i.e. it is not
    a float)
    java.lang.NumberFormatException: multiple points
            at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:10
    84)
            at java.lang.Float.parseFloat(Float.java:394)
            at oracle.ide.Version.<clinit>(Version.java:57)
            at oracle.ide.IdeCore.$init$(IdeCore.java:154)
            at oracle.ide.IdeCore.<init>(IdeCore.java:162)
            at oracle.ideimpl.DefaultIdeCore.<init>(DefaultIdeCore.java:64)
            at oracle.ideimpl.DefaultIdeCore.<init>(DefaultIdeCore.java:69)
            at oracle.ideimpl.Main.start(Main.java:89)
            at oracle.ideimpl.Main.main(Main.java:51)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at oracle.ide.boot.PCLMain.callMain(PCLMain.java:45)
            at oracle.ide.boot.PCLMain.main(PCLMain.java:37)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at oracle.classloader.util.MainClass.invoke(MainClass.java:89)
            at oracle.ide.boot.IdeLauncher.bootClassLoadersAndMain(IdeLauncher.java:
    218)
            at oracle.ide.boot.IdeLauncher.launchImpl(IdeLauncher.java:90)
            at oracle.ide.boot.IdeLauncher.launch(IdeLauncher.java:66)
            at oracle.ide.boot.IdeLauncher.main(IdeLauncher.java:55)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at oracle.ide.boot.Launcher.invokeMain(Launcher.java:508)
            at oracle.ide.boot.Launcher.launchImpl(Launcher.java:106)
            at oracle.ide.boot.Launcher.launch(Launcher.java:60)
            at oracle.ide.boot.Launcher.main(Launcher.java:49)
    java.lang.IllegalStateException: GlobalSettings already exists, cannot initialis
    e twice.
            at oracle.javatools.db.GlobalSettings.initialiseInstance(GlobalSettings.
    java:45)
            at oracle.ideimpl.db.DatabaseIdeAddin.initialize(DatabaseIdeAddin.java:6
    4)
            at oracle.ideimpl.extension.AddinManagerImpl.initializeAddin(AddinManage
    rImpl.java:433)
            at oracle.ideimpl.extension.AddinManagerImpl.initializeAddins(AddinManag
    erImpl.java:244)
            at oracle.ideimpl.extension.AddinManagerImpl.initProductAndUserAddins(Ad
    dinManagerImpl.java:157)
            at oracle.ide.IdeCore.initProductAndUserAddins(IdeCore.java:1517)
            at oracle.ide.IdeCore.startupImpl(IdeCore.java:1280)
            at oracle.ide.Ide.startup(Ide.java:642)
            at oracle.ideimpl.DefaultIdeStarter.startIde(DefaultIdeStarter.java:35)
            at oracle.ideimpl.Main.start(Main.java:90)
            at oracle.ideimpl.Main.main(Main.java:51)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at oracle.ide.boot.PCLMain.callMain(PCLMain.java:45)
            at oracle.ide.boot.PCLMain.main(PCLMain.java:37)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at oracle.classloader.util.MainClass.invoke(MainClass.java:89)
            at oracle.ide.boot.IdeLauncher.bootClassLoadersAndMain(IdeLauncher.java:
    218)
            at oracle.ide.boot.IdeLauncher.launchImpl(IdeLauncher.java:90)
            at oracle.ide.boot.IdeLauncher.launch(IdeLauncher.java:66)
            at oracle.ide.boot.IdeLauncher.main(IdeLauncher.java:55)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at oracle.ide.boot.Launcher.invokeMain(Launcher.java:508)
            at oracle.ide.boot.Launcher.launchImpl(Launcher.java:106)
            at oracle.ide.boot.Launcher.launch(Launcher.java:60)
            at oracle.ide.boot.Launcher.main(Launcher.java:49)
    Addin: Translator PlSql is trying to register a input type (.plsql) which confli
    cts with translator PlSql who already using this input type
    From 3200 to 3213 Un-Successful
    WARNING: Unknown directive: SetSkipJ2SDKCheck
    Using oracle.home=C:\sqldeveloper_3213
    Using ide.user.dir=null
    Addin: Translator PlSql is trying to register a input type (.plsql) which confli
    cts with translator PlSql who already using this input type
    reloadBuffers(): 49 nodes checked in 6.07898E-4 second(s)
    reloadBuffers(): 49 nodes checked in 4.14857E-4 second(s)
    From 2998 to 3213 Successful
    WARNING: Unknown directive: SetSkipJ2SDKCheck
    Using oracle.home=C:\sqldeveloper_3213
    Using ide.user.dir=null
    java.lang.IllegalStateException: GlobalSettings already exists, cannot initialis
    e twice.
            at oracle.javatools.db.GlobalSettings.initialiseInstance(GlobalSettings.
    java:45)
            at oracle.ideimpl.db.DatabaseIdeAddin.initialize(DatabaseIdeAddin.java:6
    4)
            at oracle.ideimpl.extension.AddinManagerImpl.initializeAddin(AddinManage
    rImpl.java:433)
            at oracle.ideimpl.extension.AddinManagerImpl.initializeAddins(AddinManag
    erImpl.java:244)
            at oracle.ideimpl.extension.AddinManagerImpl.initProductAndUserAddins(Ad
    dinManagerImpl.java:157)
            at oracle.ide.IdeCore.initProductAndUserAddins(IdeCore.java:1517)
            at oracle.ide.IdeCore.startupImpl(IdeCore.java:1280)
            at oracle.ide.Ide.startup(Ide.java:642)
            at oracle.ideimpl.DefaultIdeStarter.startIde(DefaultIdeStarter.java:35)
            at oracle.ideimpl.Main.start(Main.java:90)
            at oracle.ideimpl.Main.main(Main.java:51)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at oracle.ide.boot.PCLMain.callMain(PCLMain.java:45)
            at oracle.ide.boot.PCLMain.main(PCLMain.java:37)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at oracle.classloader.util.MainClass.invoke(MainClass.java:89)
            at oracle.ide.boot.IdeLauncher.bootClassLoadersAndMain(IdeLauncher.java:
    218)
            at oracle.ide.boot.IdeLauncher.launchImpl(IdeLauncher.java:90)
            at oracle.ide.boot.IdeLauncher.launch(IdeLauncher.java:66)
            at oracle.ide.boot.IdeLauncher.main(IdeLauncher.java:55)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at oracle.ide.boot.Launcher.invokeMain(Launcher.java:508)
            at oracle.ide.boot.Launcher.launchImpl(Launcher.java:106)
            at oracle.ide.boot.Launcher.launch(Launcher.java:60)
            at oracle.ide.boot.Launcher.main(Launcher.java:49)
    Addin: Translator PlSql is trying to register a input type (.plsql) which confli
    cts with translator PlSql who already using this input type

  • Migration from Access with SQL Developer 1.2.2998 Does not migrate Relation

    Hi,
    I've almost successfully migrated an Access database to Oracle with SQL Developer with Quick Migration Option. Everything went all right, except for the tables relationships... they were not migrated. Have I forgot to do something?
    Thanks in advance.
    PS: Using SQL Developer 1.2.0.29.98, Oracle 10g XE, MS Access 2000 file.

    Hi All,
    This is a bug which crept in just prior to release. It has been found, and a fix has been commited to our source tree. The fix will be available in our next patch release. (1.2.1).
    Regards,
    Dermot.

  • GRE/Legal Entity not migrated in R12

    LE not migrated into R12
    We are upgrading from 11.5.9.2 with OPM to R12.0.4, after upgrade, LE not migrated
    Question arise is
    At 11i, For Legal Entity, Is it necessary to attach Classification of HR Organization. Existing is GRE/Legal Entity Only.

    Hi,
    Please review the following notes:
    Note: 762483.1 - Government Reporting Entity List of Values Only Contains Setup Business Group PERWSHRG
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=762483.1
    Note: 467751.1 - R12: Legal Entities Defined in GL's Account Setup Manager are not in the GRE LOV for Employee Assignments
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=467751.1
    If the above notes do not answer your question, I suggest you post your question in [Human Resource Management (HRMS) |http://forums.oracle.com/forums/forum.jspa?forumID=113] forum (or [SCM - Process Manufacturing (OPM) |http://forums.oracle.com/forums/forum.jspa?forumID=120] forum), you would probably get a better response there.
    Regards,
    Hussein

  • Office 2010 User Settings NOT Migrated After Uninstall-Upgrade to 2013

    Greetings,
    We are in the final stages of preparing for an enterprise rollout of Office 2013, upgrading our user base from Office 2010. When we deployed Office 2010, we used the Office scrubber tool to remove Office 2003 and install Office 2010. Employing this same
    technique, which is
    fully documented by Microsoft as the recommended approach, the user settings from Office 2010 do not migrate to Office 2013. For example, the default save paths. If you set this to say, "C:\Temp", in Office 2010, that path will be changed
    after upgrading to 2013. There are other settings impacted as well and hoping that someone has seen this or knows what might be going on. The method we've used during pilot is an in-place upgrade from 2010 to 2013 and that will retain settings but we also
    see cases where the upgrade isn't clean and components of Office 2010 can be left behind. It is critical to a successful deployment that the uninstall-upgrade approach works flawlessly.
    Thanks,
    Doug
    Douglas Cote

    Hi Jori,
    There are three types of permissions in the Manage User Permissions in User Profile Service Application(UPS): Create Personal Site, Follow People and Edit Profile and Use Tags and Notes.
    If all the three permissions have been revoked from the user, then the user will not existed in the Manage User Permissions in UPS.
    So you don’t need to anything else to remove the users from Mange User Permission in UPS after revoking all the permissions from the user.
    As for the error when accessing Mange User Permissions in UPS, I recommend to restart the User Profile Service and add the user account to the Administrators of the User Profile Service Application.
    In Central Administration, highlight the User Profile Service Application and then click Administrators in the ribbon.
    If above cannot work, please provide more error message for the correlation ID in ULS log for further research.
    For SharePoint 2013, by default, ULS log is at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Products are not migrating from R3 to CRM

    Hi,
    We have created a new products in R3.
    those products are not migrating to CRM .
    What could be the reason.
    Points will be rewarded.
    thanks

    Hi
    Could you plz help me the process you are following to donwload products from R/3  to CRM.
    Kinldy note ..few things:
    1.Middleware set up to be done.
    2.Taxes to be mapped correctly for products.
    3.did you download the DNL_CUST_PROD0...if you are using product hierarchy did u download..DNL_CUST_PROD1,DNL_CUST_PROD3
    4.What is the error message you are getting in SWM01 for the BDOC type PROD
    UCT_MAT?
    if you have downlaoded these cutomizing objects...then use initial donwload (R3as) with object name "MATERIAL" ..these will bring all products from R/3..You can also use filters to do a selective download.
    Kindly provide these details..
    Regards
    Sayantan

  • Upgrading from 11.5.9.2 to 12.0.4, Legal entity not migrated

    Hi,
    Upgrading from 11.5.9.2 to 12.0.4, Legal entity not migrated, due to this issue unable to process any accounting transaction, In the GMA_MIGRATION_LOG contain the below message.
    TABLE_NAME     LINE_NO     RUN_ID     MESSAGE_TOKEN     M_TYPE     PARAM1     PARAM2
    GL_SUBR_STA     144,378.00     1,393.00     GMA_MIGRATION_ERROR_ABSTRACT     E     GL_SUBR_STA     Legal Entities
    GL_SUBR_STA     144,379.00     1,393.00     GMA_MIGRATION_ERROR_ABSTRACT     E     GL_SUBR_STA     Cost Types
    GL_SUBR_STA     144,380.00     1,393.00     GMA_MIGRATION_ERROR_ABSTRACT     E     GL_SUBR_STA     Previous Cost Types
    GL_SUBR_STA     144,381.00     1,393.00     GMA_MIGRATION_ERROR_ABSTRACT     E     GL_SUBR_STA     Current Cost Types
    GL_SUBR_STA     144,382.00     1,393.00     GMA_MIGRATION_ERROR_ABSTRACT     E     GL_SUBR_STA     Previous Periods
    GL_SUBR_STA     144,383.00     1,393.00     GMA_MIGRATION_ERROR_ABSTRACT     E     GL_SUBR_STA     Current Periods
    GL_SUBR_STA     144,355.00     1,392.00     GMA_MIGRATION_TABLE_STARTED     P     GL_SUBR_STA     NULL
    GL_SUBR_STA     144,356.00     1,392.00     GMA_TABLE_MIGRATION_TABLE_FAIL     P     NULL     NULL

    Hi,
    Please refer to your other thread.
    GRE/Legal Entity not migrated in R12
    Re: GRE/Legal Entity not migrated in R12
    Regards,
    Hussein

  • ICE Online not migrating all the KM contents

    Hi All,
    We are using ICE Online to migrate the KM Contents.
    In the Source repository, there are 5 folders(say - A,B,C,D,E). We created separate components for these folders in the Offer.
    After the ICE Online Transport, only the folders A,B and C are migrated to the Target System. The folder D & E are not migrated.
    Can anyone tell me the reason for this?
    Regards,
    Adren

    May the repository properties are differnt in source and target system.
    First transport the reposiotories from system admin->systemconfig->KM->CM ......
    Then do the ICE Online transport.
    Give a try .. good luck
    Raghu

  • Time Machine backups do not migrate from iMac to MacBook Pro

    I just moved from a iMac G5 to a MacBook Pro. I love Apple's migration tool, but it seems that Time Machine backups do not migrate.
    I checked with support, and did a basic amount of searching, and it seems that I need to erase and reformat the backup drive, losing all of my backups.
    Can this be true? That's a pretty screwy backup solution.
    Is it possible to rename the backup folder from "iMac G5" to "MacBook Pro"?
    Is it possible to add a MacBook Pro backup folder to the one already there?
    Any help is appreciated.

    I'm not quite sure what you mean. It sounds like you successfully migrated, and got everything set up properly on the new Mac.
    Now you want TM to just continue backing-up the new Mac to the old Mac's backups?
    If so, then no, that's not going to work. TM keeps the backups for each Mac completely separate. This is usually an advantage, so you can back up two or Macs to the same drive without any conflicts.
    Plus, the version of OS on your new Intel laptop is very different from the one from your old PPC desktop; a whole different set of drivers, and of course code for Intel vs. PPC.
    So TM on the new Mac cannot treat the old backups as if they were from the new Mac. It must start a whole new "sequence" of backups for the new Mac. If there's room on the disk, you can leave the old backups there until you're sure you don't need them, but that presents another problem: when you want to delete them, you can do it only one at a time, via TM, using the procedure in item #12 of the Frequently Asked Questions *User Tip* at the top of this forum. That's rather tedious and time-consuming, so most folks just erase the TM drive and let it start fresh.
    If I've misunderstood, please clarify the situation.

Maybe you are looking for

  • SAP Dialog Instance Installation.

    Hi Installation of ABAP System ECC6.0 I am trying to install another application server(Dialog Instance) on different host. My both System Central(main server) and Dialog system in same domain. I am installing SAP Server as a Local Installation. I am

  • Configuring My Router to Play Diablo II

    I recently purchased a Linksys Wireless Router - G (Model Number WRT54G). I got my network up and running with no problems. Both Computers connect to the internet well, but lo and behold it doesn't seem to allow me to play my Diablo 2 Expansion set v

  • Can't get Iphone to pair in Lexus 400h

    I've tried everything to get the Bluetooth to pair with my built in car bluetooth, but nothing works. Does anyone have any ideas? My wife's phones have always paired without a problem...

  • Line bar combo with logarithmic scale

    hi, I found that logarithmic scale is not supported for line bar combo. I have checked the checkbox "Use logarithmic scale" under "Tick Marks & Scale Type" under "Axis Scaling" for the left axis. but the charts (both checked and unchecked) are the sa

  • Safari Loses Word Press Toolbars

    I recently installed a new WP site on a remote server for a customer of mine. I noticed that when I went to edit POSTs or PAGES, the text editor toolbar was missing. This did not happen in Firefox or Chrome. I went to check the JavaScript setting and