Using store.sync in threaded environment

Dear All,
I just wanted to know what will happen during this condition.
I have been using berkeley DB java edition for a while.
I have this environment set
private Environment myEnv;
private EntityStore store;
private PrimaryIndex pk;
private SecondaryIndex sk;
EnvironmentConfig myEnvConfig = new EnvironmentConfig();
myEnvConfig.setAllowCreate(true);
myEnvConfig.setSharedCache(true);
myEnv = new Environment(envHome, myEnvConfig);
StoreConfig storeConfig = new StoreConfig();
storeConfig.setAllowCreate(true);
storeConfig.setDeferredWrite(true);
store = new EntityStore(myEnv, storeName, storeConfig);
As you can see I have set deferredwrite as true .
Due to this I have to use sync.store whenever inserts and delete take place.
I have threaded environment . I just wanted to know .
Due to the above setting during inserts and delete happening in together will my berkeley db cache ever get corrupted .
I have not yet seen any issue .
Is there by any chance cache would be corrupted. Please update me on this
Regards
Ashwin

Ashwin,
When you use deferred write, you are (a) running without transactions, and (b) reducing your durability guarantee. That is, if the environment goes down, you might lose some portion of the operations you were doing with deferred write.
(b) only applies when the environment crashes and restarts. I think that you are asking about concurrent reads to the deferred write database while the environment is up. In that case, the issues you have to think about are the same as with regular non-transactional updates. Because you are not using transactions, there is a chance that a reading thread will see data that is logically inconsistent. For example, since you have secondary indices, an insert into the store will result in an insert both into the primary and the secondary index. Since the insert is non transactional, those two updates are not atomic, and another thread may happen to read the primary before the secondary index insert has completed.
However, you should never see a data record that is physically corrupt. Each data record will be correct, which considered on its own.
Regards,
Linda

Similar Messages

  • Use Firefox Sync to store bookmarks in the cloud?

    Can I setup Firefox Sync even if I only have one device? If so, can I use Firefox Sync to backup my bookmarks to the cloud (instead of using a third-party extension?) I'm guessing that Sync stores bookmarks in the cloud because how else would it be able to merge bookmarks with another device (e.g., a phone)?

    Sync does indeed store the data you choose to Sync in the cloud.
    Because you need to retain a lengthy unique code in order to recover that data from a different installation of Firefox, many users find it not to be a good method of backup because that Recovery Key was lost in a hard drive crash or reformat. Make sure you store the key in a safe location outside of your computer along with your username and password.
    If you end up choosing to use a different cloud backup service such as Crashplan or Carbonite, you can point it to your bookmarkbackups folder so you have a number of files for potential recovery. To get the full path to that hidden folder, the easiest way is to access it from within Firefox.
    You can open your current Firefox settings (AKA Firefox profile) folder using
    Help > Troubleshooting Information > "Show Folder" button
    Double-click bookmarkbackups. You should see numerous files that are date and time coded. You can click after the folder name in the address bar to select and copy the path. (This is based on Windows 7, but I assume Windows 8.1 is similar from the desktop side.)

  • My iMac was synchronised to my iPod in the store I purchased it. When I purchase an audio books it is not synching accross to the iPod. Am I missing something . What would happen if I use the 'sync' button again?

    My iMac was synchronised to my iPod in the store I purchased it. When I purchase an audio book it is not synching accross to the iPod. Am I missing something ? What would happen if I use the 'sync' button again?

    Yes. Other things have synced including books, but I don't know how these happened. According to the 'audible' instructions it should happen automatically, but it doesn't.

  • DB_LOCK_DEADLOCK: Using BerkeleyDB Xml in a threaded environment

    Hello,
    I'm having problems running a Berkeley DB application in a threaded environment. In summary, this is what I'm doing:
    I implemented the following class:
    ref class MyTestClass
    private:
         DbEnv* env;
         XmlManager* man;
         unsigned int ctr;
    public:
         MyTestClass()
              ctr = 0;
              env = new DbEnv(0);
              env->set_cachesize(0, 64*1024, 1);
              env->set_lk_max_lockers(1000);
              env->set_lk_max_locks(1000);
              env->set_lk_max_objects(1000);
              env->open("c:\\temp\\SampleDb",
    DB_CREATE | DB_INIT_LOCK | DB_INIT_LOG |
    DB_INIT_MPOOL | DB_INIT_TXN | DB_THREAD | DB_PRIVATE, 0);
              man = new XmlManager(env, DBXML_ALLOW_AUTO_OPEN);
         void MyTestWriter()
              while(true)
                   DbXml::XmlQueryContext *ctx;
                   DbXml::XmlTransaction *txn;
                   DbXml::XmlResults *res;
                   try
                        ctx = new XmlQueryContext(man->createQueryContext(XmlQueryContext::LiveValues, XmlQueryContext::Lazy));
                        txn = new XmlTransaction(man->createTransaction());
                        res = new XmlResults(man->query(*txn, "for $v in collection('test.dbxml')/sessions return insert nodes <A/> into$v", *ctx, DB_RMW));
                        txn->commit(DB_TXN_SYNC);
                   catch(XmlException& e)
                   finally
                        delete res;
                        delete txn;
                        delete ctx;
         void DeadlockUnblocker()
              while(true)
                   int ret;
                   env->lock_detect(0, DB_LOCK_DEFAULT, &ret);
                   Sleep(5000);
    Basically I create a shared MyTestClass object and then spawn 4 threads: 3 of them execute the MyTestWriter method and 1 executes the DeadlockUnblocker method.
    What happens is that the 3 threads block even before completing the first write. After 5 seconds the DeadlockUnblocker is executed and 1 thread is unblocked and throws a "DB_LOCK_DEADLOCK: Locker killed to resolve a deadlock" which is trapped by my catch block. However, the other threads are still hanging on the execution and the entire flow of the application is stopped.
    Anybody can tell me what I'm doing wrong ??
    Thanks
    Matteo

    Matteo,
    First, the C++ API works best if you avoid new/delete of Xml* objects. There are relatively few cases where that's necessary. Using scoped objects ensures their destruction.
    As for your hang the best tool to use is "db_stat -CA" in the environment directory at the time of the hang to find out what is going on. You'll have to not use DB_PRIVATE in the DbEnv::open() flags for it to work. While a deadlock thread is reasonable if you expect a lot of deadlocks (and concurrent write will do that) it is best to use DbEnv::set_lk_detect() to get immediate detection.
    Regards,
    George

  • Using iTunes SDK in multi thread environment

    I'd like to use the Windows iTunes COM SDK in a multithread manor.
    Ex. create the iTunes COM object in thread A and use it again in thread B.
    How it the COM interface for iTunes defined (MULTITHREADED, APPERTMENT THREAD, SINGLETHREADED)
    Can I then marshall the interface, between interfaces, without deadlocking my app? (I hate frozen apps, so I use threads as much as possible).

    Annoyingly the SDK hasn't been updated in over three years. I've had a casual look via Visual Studio's object inspector to see if I can spot any new methods or properties that could be useful but if they are there then they are hidden well. Media Kind, for example, was introduced in iTunes 9, I think, but can't be read from code.
    I don't know what tasks you're hoping to automate, but you might find some of my scripts useful either in their own right or as food for thought.
    tt2

  • Thread waits and locks using Solaris 8 T1 threads

    Hi,
    I have got a problem relating to Webmethods running on JVM Hot Spot server VM (1.4.2_07-b05 mixed mode).
    From time to time the webmethods applications seems to slow down and completely lock up with the mpstat on solaris showing:
    1. context switching increases (csw)
    2. spin on mutexes also show approximately 25 % increase (smtx)
    The only way i could overcome this problem is to kill the process - which incidentally produces a thread dump. Incidentally i have also done a pstack on the process.
    The thread dump shows among other things alots of object waits, with locks on objects in an object Pool. The main process is in a waiting state on object, locked by itself, similarly other thread deamon are also in a waiting state on objects which itself has locked. Seems rather wierd (dont understand that).
    Anyway we are on Solaris 8 -using the T1 solaris thread library. My question is whether we need to move to T2 solaris thread library and use the option of -XX:-UseLWPSynchronization on JVM would help in the long run. As i am quire new to the JVM Hot Spot (excuse my lack of knowledge in this sphere), i am also posting the thread dump or parts of it here - I am reading them as dead locks but i could be wrong, would also appreciate some help on this matter to clarify what i am reading:
    "IS <ENERGYAUST#wm.ip.ebxml.MSH:process>" prio=5 tid=0x00a2e570 nid=0x12c in Object.wait() [63f7e000..63f819c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.wm.util.pool.ObjectPool.allocate(ObjectPool.java:248)
         - locked <0x97835bf8> (a java.lang.Object)
         at com.wm.util.pool.ObjectPool.allocate(ObjectPool.java:191)
         at com.wm.app.b2b.server.ThreadManager.runTarget(ThreadManager.java:83)
         at com.wm.app.b2b.server.ThreadManager.runTarget(ThreadManager.java:62)
         at com.wm.app.b2b.server.control.ControlledThreadPool.runTarget(ControlledThreadPool.java:359)
         at wm.ip.ebxml.coder.util.getEnvelopeStream(util.java:588)
         at sun.reflect.GeneratedMethodAccessor99.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.wm.app.b2b.server.JavaService.baseInvoke(JavaService.java:322)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:113)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:635)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:584)
         at com.wm.app.tn.route.RoutingActions.invokeWrapper(RoutingActions.java:959)
         at com.wm.app.tn.route.RoutingActions.invoke(RoutingActions.java:827)
         at wm.tn.route.route(route.java:750)
         at sun.reflect.GeneratedMethodAccessor60.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.wm.app.b2b.server.JavaService.baseInvoke(JavaService.java:322)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:113)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:635)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:584)
         at wm.ip.ebxml.Receiver.processMessage(Receiver.java:588)
         at wm.ip.ebxml.Receiver.process(Receiver.java:186)
         at wm.ip.ebxml.MSH.process(MSH.java:165)
         at sun.reflect.GeneratedMethodAccessor23.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.wm.app.b2b.server.JavaService.baseInvoke(JavaService.java:322)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:113)
         at com.wm.app.b2b.server.ServiceThread.run(ServiceThread.java:82)
         - locked <0xbb1b42e0> (a com.wm.app.b2b.server.ServiceThread)
         at com.wm.util.pool.PooledThread.run(PooledThread.java:105)
         - locked <0x9ad44eb8> (a com.wm.app.b2b.server.TMPooledThread)
         at java.lang.Thread.run(Thread.java:534)
    "IS <ENERGYAUST#wm.ip.ebxml.MSH:process>" prio=5 tid=0x00a2d980 nid=0x12b in Object.wait() [6407e000..640819c0]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.wm.util.pool.ObjectPool.allocate(ObjectPool.java:248)
         - locked <0x97835bf8> (a java.lang.Object)
         at com.wm.util.pool.ObjectPool.allocate(ObjectPool.java:191)
         at com.wm.app.b2b.server.ThreadManager.runTarget(ThreadManager.java:83)
         at com.wm.app.b2b.server.ThreadManager.runTarget(ThreadManager.java:62)
         at com.wm.app.b2b.server.control.ControlledThreadPool.runTarget(ControlledThreadPool.java:359)
         at wm.ip.ebxml.coder.util.getEnvelopeStream(util.java:588)
         at sun.reflect.GeneratedMethodAccessor99.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.wm.app.b2b.server.JavaService.baseInvoke(JavaService.java:322)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:113)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:635)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:584)
         at com.wm.app.tn.route.RoutingActions.invokeWrapper(RoutingActions.java:959)
         at com.wm.app.tn.route.RoutingActions.invoke(RoutingActions.java:827)
         at wm.tn.route.route(route.java:750)
         at sun.reflect.GeneratedMethodAccessor60.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.wm.app.b2b.server.JavaService.baseInvoke(JavaService.java:322)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:168)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:324)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:581)
         at com.wm.lang.flow.FlowState.step(FlowState.java:438)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:403)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:982)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:113)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:635)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:584)
         at wm.ip.ebxml.Receiver.processMessage(Receiver.java:588)
         at wm.ip.ebxml.Receiver.process(Receiver.java:186)
         at wm.ip.ebxml.MSH.process(MSH.java:165)
         at sun.reflect.GeneratedMethodAccessor23.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.wm.app.b2b.server.JavaService.baseInvoke(JavaService.java:322)
         at com.wm.app.b2b.server.invoke.InvokeManager.process(InvokeManager.java:612)
         at com.wm.app.b2b.server.invoke.StatisticsProcessor.process(StatisticsProcessor.java:44)
         at com.wm.app.b2b.server.invoke.ServiceCompletionImpl.process(ServiceCompletionImpl.java:226)
         at com.wm.app.b2b.server.invoke.ValidateProcessor.process(ValidateProcessor.java:49)
         at com.wm.app.b2b.server.ACLManager.process(ACLManager.java:198)
         at com.wm.app.b2b.server.invoke.DispatchProcessor.process(DispatchProcessor.java:39)
         at com.wm.app.b2b.server.AuditLogManager.process(AuditLogManager.java:411)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:521)
         at com.wm.app.b2b.server.invoke.InvokeManager.invoke(InvokeManager.java:369)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:246)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:113)
         at com.wm.app.b2b.server.ServiceThread.run(ServiceThread.java:82)
         - locked <0xbb1b4410> (a com.wm.app.b2b.server.ServiceThread)
         at com.wm.util.pool.PooledThread.run(PooledThread.java:105)
         - locked <0x9ad44f30> (a com.wm.app.b2b.server.TMPooledThread)
         at java.lang.Thread.run(Thread.java:534)
    "AuditRejectHandler" daemon prio=5 tid=0x009b23c8 nid=0x23 in Object.wait() [73681000..736819c0]
         at java.lang.Object.wait(Native Method)
         at com.wm.util.sync.CountingSemaphore.semWait(CountingSemaphore.java:74)
         - locked <0x97800e18> (a com.wm.util.sync.CountingSemaphore)
         at com.wm.app.store.impl.TSSimpleQueue._waitForMessage(TSSimpleQueue.java:585)
         at com.wm.app.store.impl.TSSimpleQueue.getWait(TSSimpleQueue.java:464)
         at com.wm.app.store.impl.TSSimpleQueueConsumer.getWait(TSSimpleQueueConsumer.java:37)
         at com.wm.app.audit.AuditFactory$AuditRejectHandler.run(AuditFactory.java:1646)
    "AuditRetryHandler" daemon prio=5 tid=0x007bc5c8 nid=0x22 in Object.wait() [73781000..737819c0]
         at java.lang.Object.wait(Native Method)
         at com.wm.util.sync.CountingSemaphore.semWait(CountingSemaphore.java:74)
         - locked <0x97800ed0> (a com.wm.util.sync.CountingSemaphore)
         at com.wm.app.store.impl.TSSimpleQueue._waitForMessage(TSSimpleQueue.java:585)
         at com.wm.app.store.impl.TSSimpleQueue.getWait(TSSimpleQueue.java:464)
         at com.wm.app.store.impl.TSSimpleQueueConsumer.getWait(TSSimpleQueueConsumer.java:37)
         at com.wm.app.audit.AuditFactory$RetryHandler.run(AuditFactory.java:1495)
    "AuditExceptionHandler" daemon prio=5 tid=0x009b1e30 nid=0x21 in Object.wait() [73881000..738819c0]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x97800f90> (a com.wm.util.sync.CountingSemaphore)
         at java.lang.Object.wait(Object.java:429)
         at com.wm.util.sync.CountingSemaphore.semWait(CountingSemaphore.java:71)
         - locked <0x97800f90> (a com.wm.util.sync.CountingSemaphore)
         at com.wm.util.sync.CountingSemaphore.semWait(CountingSemaphore.java:56)
         - locked <0x97800f90> (a com.wm.util.sync.CountingSemaphore)
         at com.wm.app.audit.AuditFactory$ExceptionHandler.run(AuditFactory.java:1410)
    "AuditProducer0" daemon prio=5 tid=0x009bb4e8 nid=0x20 in Object.wait() [73a81000..73a819c0]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x97801000> (a com.wm.util.sync.CountingSemaphore)
         at java.lang.Object.wait(Object.java:429)
         at com.wm.util.sync.CountingSemaphore.semWait(CountingSemaphore.java:71)
         - locked <0x97801000> (a com.wm.util.sync.CountingSemaphore)
         at com.wm.app.store.impl.TSSimpleQueue._waitForMessage(TSSimpleQueue.java:585)
         at com.wm.app.store.impl.TSSimpleQueue.getWait(TSSimpleQueue.java:464)
         at com.wm.app.store.impl.TSSimpleQueueConsumer.getWait(TSSimpleQueueConsumer.java:37)
         at com.wm.app.audit.AuditFactory$AuditProducerHandler.run(AuditFactory.java:1576)
    "TS-EventHandler" daemon prio=5 tid=0x005c1d20 nid=0x1f in Object.wait() [73981000..739819c0]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x978010c8> (a com.wm.util.sync.LatchedSemaphore)
         at java.lang.Object.wait(Object.java:429)
         at com.wm.util.sync.LatchedSemaphore.semWait(LatchedSemaphore.java:54)
         - locked <0x978010c8> (a com.wm.util.sync.LatchedSemaphore)
         at com.wm.util.sync.LatchedSemaphore.semWaitReset(LatchedSemaphore.java:101)
         - locked <0x978010c8> (a com.wm.util.sync.LatchedSemaphore)
         at com.wm.app.store.TransientStoreFactory$NotifyHandler.run(TransientStoreFactory.java:2173)
    "FSData Free Cache Handler" daemon prio=5 tid=0x006eca38 nid=0x1d in Object.wait() [73b81000..73b819c0]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x97801130> (a com.wm.util.sync.CountingSemaphore)
         at java.lang.Object.wait(Object.java:429)
         at com.wm.util.sync.CountingSemaphore.semWait(CountingSemaphore.java:71)
         - locked <0x97801130> (a com.wm.util.sync.CountingSemaphore)
         at com.wm.util.sync.CountingSemaphore.semWait(CountingSemaphore.java:56)
         - locked <0x97801130> (a com.wm.util.sync.CountingSemaphore)
         at com.wm.driver.data.fs.FSData$FreeCacheHandler.run(FSData.java:3976)
    "Thread-12" daemon prio=5 tid=0x009bc0a0 nid=0x1c in Object.wait() [73c81000..73c819c0]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x97801140> (a com.wm.app.jdbc.JDBCConnPoolMgr$ConnectionTimeoutMgr)
         at com.wm.app.jdbc.JDBCConnPoolMgr$ConnectionTimeoutMgr.run(JDBCConnPoolMgr.java:394)
         - locked <0x97801140> (a com.wm.app.jdbc.JDBCConnPoolMgr$ConnectionTimeoutMgr)
    "FSData Free Cache Handler" daemon prio=5 tid=0x006ebcf0 nid=0x1b in Object.wait() [73d81000..73d819c0]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x978011e8> (a com.wm.util.sync.CountingSemaphore)
         at java.lang.Object.wait(Object.java:429)
         at com.wm.util.sync.CountingSemaphore.semWait(CountingSemaphore.java:71)
         - locked <0x978011e8> (a com.wm.util.sync.CountingSemaphore)
         at com.wm.util.sync.CountingSemaphore.semWait(CountingSemaphore.java:56)
         - locked <0x978011e8> (a com.wm.util.sync.CountingSemaphore)
         at com.wm.driver.data.fs.FSData$FreeCacheHandler.run(FSData.java:3976)
    "Thread-10" daemon prio=5 tid=0x00590d90 nid=0x1a in Object.wait() [73e81000..73e819c0]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x978011f8> (a com.wm.app.repov4.server.RepoServer$RepoLockTimeoutMgr)
         at com.wm.app.repov4.server.RepoServer$RepoLockTimeoutMgr.run(RepoServer.java:1533)
         - locked <0x978011f8> (a com.wm.app.repov4.server.RepoServer$RepoLockTimeoutMgr)
    "Thread-9" daemon prio=5 tid=0x000e9f48 nid=0x19 in Object.wait() [74081000..740819c0]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x978012b0> (a com.wm.driver.queue.data.DataQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.wm.driver.queue.data.DataQueue.dequeue(DataQueue.java:310)
         - locked <0x978012b0> (a com.wm.driver.queue.data.DataQueue)
         at com.wm.driver.queue.data.DataQueue.dequeueCommit(DataQueue.java:260)
         - locked <0x978012b0> (a com.wm.driver.queue.data.DataQueue)
         at com.wm.driver.queue.data.DataQueue.dequeueCommit(DataQueue.java:254)
         - locked <0x978012b0> (a com.wm.driver.queue.data.DataQueue)
         at com.wm.app.repov4.server.RepoServerBase$RepoEventManager.run(RepoServerBase.java:224)
    "TxnData-Deadlock-Manager" daemon prio=5 tid=0x00799c18 nid=0x14 in Object.wait() [73f81000..73f819c0]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x97801338> (a java.lang.Object)
         at com.wm.util.data.TxnData$DeadlockManager.run(TxnData.java:4945)
         - locked <0x97801338> (a java.lang.Object)
    "Thread-2" daemon prio=5 tid=0x00104430 nid=0x12 in Object.wait() [74181000..741819c0]
         at java.lang.Object.wait(Native Method)
         at com.wm.util.queue.FSMTDirValuesHash$VHLockTimeoutMgr.run(FSMTDirValuesHash.java:448)
         - locked <0x978013b0> (a com.wm.util.queue.FSMTDirValuesHash$VHLockTimeoutMgr)
    "Log Thread" prio=5 tid=0x002e9f10 nid=0x11 in Object.wait() [74281000..742819c0]
         at java.lang.Object.wait(Native Method)
         at com.wm.util.sync.SimpleQueue.deq(SimpleQueue.java:171)
         - locked <0x97801458> (a com.wm.util.sync.SimpleQueue)
         at com.wm.util.sync.SimpleQueue.deq(SimpleQueue.java:126)
         - locked <0x97801458> (a com.wm.util.sync.SimpleQueue)
         at com.wm.app.b2b.server.ServerLogHandler$LogThread.run(ServerLogHandler.java:274)
    "Cron

    Hi,
    I've just found the following in another thread:
    The workaround for the bugID 6221832 (java being in another path than the default /usr/j2se/bin/ for Patch Manager 2.0 on Solaris 8) is to edit the pprosetup and pprosvc scripts
    from /usr/sbin/pprosvc :
    JAVACMD=/usr/j2se/bin/java
    edit pprosetup and pprosvc scripts file and set JAVACMD locale variable to newly java installed path and launch smpatch get command again
    Thank you. I've editted both scripts and changed the JAVACMD variable to be ${JAVA_HOME}/bin/java and now everything is working.
    Thanks.

  • Have a new mac desktop that I want to use for syncing i-pad currently synced with old pc which I will be sicarding.  How do I switch computers with my I-pad??

    have a new mac desktop that I want to use for syncing i-pad.  Currently synced to an old pc that I will not be using any
    longer How do I switch computers for syncing?

    The absolute best way to do this is to transfer your iTunes library from the old computer to the new one. You can find a numbr of ways to do that here.
    http://www.google.com/search?client=safari&rls=en&q=transfer+iTunes+library+to+a nother+computer&ie=UTF-8&oe=UTF-8
    If you want to spend the money for a computer application that will let you transfer all of the content from the iPad to iTunes - look at
    Touchcopy
    However, I have posted this many times over the past few months. If you follow these instructions you should be fine. This will transfer the purchased content from the iPad into iTunes on the Mac. You will still want to get your photo library and any CD's that you imported into iTunes on the new Mac. That is why transferring the iTunes library to the new Mac is the best way to go.
    When you set up the new Mac - if you can import or migrate all of the PC content onto the Mac - this will all be a non issue, but I'm not sure how to bring all of your PC content onto the Mac. Going from an old Mac to a new Mac was a breeze, but I know nothing about transferring the content from a Windows PC.
    The 3 basic things to remember - authorize the computer, (Launch iTunes on your computer and go to Store>Authorize this Computer) transfer purchased content and backup.
    The following was copied from this thread. This is essentially what you want to accomplish.
    https://discussions.apple.com/message/11527071#11527071
    1) Without connecting your iPad to your Mac, start iTunes. Click on iTunes. Click on Preferences. Click on Devices. Check the box next to "Prevent your iPod etc. from automatically syncing." Click OK.
    2) Now connect your iPad to your Mac and start iTunes.
    3) When iTunes starts, right click on your iPad under Devices in the left column. Select Transfer purchases etc.
    4) After it finishes transferring all your apps to your new laptop, right click on your iPad and select Backup your iPad.
    5) After it finishes backing up your iPad, right click on your iPad and select Restore etc.
    6) After it finishes restoring, left click on your iPad , then click on the Apps tab on top, and check the box next to Sync Apps, then click on Apply below.
    If everything on your iPad looks good after the sync, go back and click on iTunes / Preferences / Devices and UN-check the box next to Prevent your iPod etc. The only other thing you may want to check is if your contacts, bookmarks, etc. are syncing correctly now. If not, go to the Info tab after connecting and make sure you indicate which features you want to sync with what sources.
    Read this thread and the support links as well. There are apps that you can purchase that will allow you to transfer photos from the iPad to your PC. Look at Photo Transfer App in the App store and you can search for others as well.
    https://discussions.apple.com/message/13016026#13016026
    This support site will help you with transferring iTunes music to your new computer - if you have an iTunes library of music on another computer or hard drive.
    http://support.apple.com/kb/HT4527
    The worst case scenario is that you can download all of your apps again if needed - but you will not retain the data or app settings - but it is always an option if everything else fails - but it won't fail!

  • Can I keep a published/shared calendar current when using two synced macs?

    I have two macs, home and office, thinking about a laptop for travel as well, plus iPhone. I sync all the calendars with .mac which works nicely, then publish and share. But I am not publishing the .mac version, I am publishing the version on one of my machines, correct? If I change my calendar on another machine how do I get that change to propagate to the published version? Does the machine doing the publishing have to be on all the time? Do I continually republish from the new machine where I just made the change? What about people who subscribe to it, if it has the same name when I republish will their subscription stay current?
    Annoying that I cannot access and share the version of the calendar stored on apple servers and used to sync my machines.
    Need to resolve a few issues before bailing on Yahoo, but must hurry, the Borg Collective is going to assimilate them soon, and resistance is futile.
    Thanks for any advice.

    Posting 2006 and 2008 threads that are very outdated is not a good idea
    There is no way to "sync" iPhoto libraries
    There is software that Old Toad has tested that will sync the photos which may or may not help you
    You can easily manually move photos between libraries using iPhoto Library Manager with is probably the best solution
    LN

  • HT4972 I want to upgrade my iOS 4 to 5 on my Ipod Touch but I no longer have the original computer I used to sync with so it keeps saying I will loose all of my apps and stuff on my new computer

    I want to upgrade my iOS 4 to 5 on my Ipod Touch but I no longer have the original computer I used to sync with so it keeps saying I will loose all of my apps and stuff on my new computer..... SO how do I tell it that my new computer is now my regular computer so that I can upgrade my iOS on it without it wiping all of my music, films and apps on it??? HELP please I am desperate to know what to do.

    http://support.apple.com/kb/HT1848 - just media purchased from iTunes Store
    Post by Zevoneer: iPod media recovery options - https://discussions.apple.com/message/11624224 - this is an older post and many of the links are also for old posts, so bear this in mind when reading them.
    Commercial software utilities for transferring songs from i-device to Mac:
    Senuti - http://www.fadingred.com/senuti/
    Phoneview - http://www.ecamm.com/mac/phoneview/
    MusicRescue - http://www.kennettnet.co.uk/products/musicrescue/ - Mac & Windows

  • Firefox Sync: I cannot log into my account using the sync key that was given to me and nothing I do seems to fix it. Is there anyway I can "reset" my username? I'd like to reopen an account using my same username as opposed to starting from scratch.

    I cannot log into my account using the sync key that was given to me and nothing I do seems to fix it. Is there anyway I can "reset" my username? I'd like to reopen an account using my same username as opposed to starting from scratch.

    reading through that, it doesn't look like you were given up on Candice. you never replied to StarDeb's last set of questions in that thread. she was probably waiting to hear back from you.
    why didn't you reply?

  • Flex Dashboard and Using Flex in a Portal Environment

    Hello
    I am looking to develop Flex dashboard and use Flex in a Portal environment.
    If you any thoughts or information, kindly let me know or some insight.
    Thanks and regards

    fac586 wrote:
    #WORKSPACE_IMAGES# isn't substituted in CSS files stored in the repository. See this [previous discussion|http://forums.oracle.com/forums/thread.jspa?forumID=137&threadID=221653] (and others if you search for them).
    Thanks for the link, I did search a little while before making the original post. I guess I wasn't searching for the right thing though.
    The method I found listed in here seems to work in IE but not Firefox. It could just be a caching issue though I'm not real familiar with firefox and don't really know how to get it to forget that it's been to a page already.
    I also updated the link listed above to ask about any changes in the last upgrade related to this.
    This was related to caching in firefox and it worked fine after I logged out of my apex.oracle.com account and cleared the personal cache in firefox and then started over.
    Edited by: PktAces on Sep 9, 2008 3:06 PM

  • Has anyone used Firefox Sync and Xmarks at the same time?

    Firefox is my primary desktop browser. On my desktops, I use Xmarks because I use Firefox, IE and Chrome. It enables me to keep my bookmarks synced across browsers as well as use home/work profiles, etc. However, I'd like to use Firefox Sync so I can sync the bookmarks to my smartphone. Has anyone successfully tried this? I thought I'd ask before trying it myself just in case. Thanks!

    Using Xmarks and Sync simultaneously will create a mess.
    You can create a new profile, import the bookmarks from your main profile, and set up Sync for the new profile.
    The flip side is, bookmarks from your main profile would not get synced with your new profile.
    Alternatively, Xmarks is also available for Android.
    https://play.google.com/store/apps/details?id=com.xmarks.android&hl=en

  • Cons of using LDAP Sync in OIM

    Hi Experts,
    We are planning to use LDAP Sync to create users into OID as soon as they get created on OIM. Can you esperts please let me know the cons/limitations of enabling LDAP Sync and a small comparision on using this against provisioning to OID from OIM.
    Thanks,
    Partha

    This link may be useful
    https://forums.oracle.com/thread/2482749?tstart=0

  • Static methods in multi-thread environment.

    Sorry for this silly question, but I have no clue...
    If you're using classes with static methods in a application server environment, would that imply all threads use that same 'one in the jvm' method and would there be a possibility for performance loss?
    Is calling another static method from a static method a good idea in a multi-thread environment, with respect to performance? Somehow I seem to get this java.lang.NoClassDefFoundError. Any ideas? The classes are in the same package. I only get these kind of problems calling static methods from static methods in a multi-thread environmnent. The static methods are pure utility functions and of course do not use class state.
    Thanks for your help.

    Sorry for this question, wasn't thinking straight. I have the answer, won't post question on multiple forums.

  • Vmtoolsd.exe is using a lot of threads

    Hi All,
    We're using VMware tools a few years now on our Windows 2012R2 environment.
    But the last months we get complains from some of our remote desktop users that our servers are slow, memory is full, and users can't sign out/in.
    After investigating this issue, we see that VMtoolsd.exe is using a lot of memory.
    And it takes a lot of time to kill the process.
    We discovered in the Resource monitor that the process is using a lot of threads (sometimes 80.000). After killing the process the threads are slowly counting down to zero . After that the server is responding normal.
    On internet I can't find anyone who has this issue.
    We have a lot of servers. This issue is only on a few of them.
    We're using ESXi 5.0 and VMtools 8.6.11 build-1310128
    Does anyone know what is going on?

    Wow, it looks like you're using the tools that came with ESXi 5.0 Update 3 from October 2013.  There have been several patches for ESXi 5.0 since Update 3.  The most recent patch for ESXi 5.0 has newer tools (8.6.15 build-2495133).
    See here: http://packages.vmware.com/tools/esx/5.0latest/index.html

Maybe you are looking for

  • Error message in Premiere 12 on Windows 7 when reordering video clips

    I am using Premiere 12 on my PC using Windows 7. I have done a substantial amount of editing already but every time I go to re-order my video clips an error message pops up and priemere shuts down. When I trouble shoot the problem it says there is an

  • Apple TV and full episodes of Smithsonian are not playing

    Is anyone else having problems viewing full episodes for the Smithsonian channel?

  • Problem with Oracle Content DB

    Hi, I have an installed oracle 10.2.0.1.0 database, and my environment variables are set to (D:\oracle\product\10.2.0\db_1), now i need to install the oracle content DB, but while installing the same, im prompted with error message indicating 'The OR

  • Line Spacing error.

    We made some cosmetic changes to our reports, with a little change in the stored proc behind them and suddenly we are getting the following exception... Any ideas? or has anyone seen anything similar? 2009-02-06 10:59:19,397 ERROR [JRCCommunicationAd

  • Job to Import Transport of Copies

    Hi, we are implementing CHARM. In case of regular correction, when i say TEST Transport, it creates copy of that transport and release so that copy is in Buffer of quality system. But i want to automate that process. My question is , is it possible t