Recno approximation?

I had hoped to use recno in order to use JE as a reliable write-log for a large in-memory data structure. No recno, however. Should I just use a sequence to generate keys and use the btree, or should I look elsewhere altogether to solve this problem?

JE truly only has the Btree access method and there are no tricks for making a Btree act like the recno access method that we know of. If you come up with something creative for your use case, please post your solution so everyone can benefit.
Thanks,
--mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • I want to remove all of my photos out of iPhoto there are approximately 35000 some imported from an old hard drive and a SD Card from my Nikon D500 how do I do this

    I want to remove all of my photos out of iPhoto there are approximately 35000 some imported from an old hard drive and a SD Card from my Nikon D500 how do I do this?
    I have iPhoto version 9.1.5 (615)
    Mac OS X version 10.6.8
    I want to do this because when I imported from my old hard drive there was an error message stating that 12 photos were not imported as the programm did not recognise the format even though they were jpegs like the other photos in that particular album. The dates of the photo folders are wrong I have multiple copies of photos and every time I start iPhoto I get the following message 12 photos have been found in the iPhoto library that were not imported would you like to import them No or Yes
    if you press Yes the same message comes back again and if you press Yes again the program flicks to last import for 2 seconds and then opens events.
    if you press No the message The photos have been placed in the folder/user/judith/pictures/iphoto Library recovered photos then if you press OK the original message 12 photos have been found.............
    if you press No at this point the message The photos have been placed in the folder/user /judith/pictures/iphoto Library recovered photos_11 the end number goes up by 1 every time you go through this process
    Any help would be greatly appreciated

    Did you import an iPhoto Library from the old Hard Drive? Do you still have that old Library?
    The way to clear out a Library is to Export the photos - Apps like iPhoto2Disk or PhotoShare will help you export to a Folder tree matching your Events.
    For the annoying start-up message:
    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Look there for a Folder called 'Import' or 'Importing'.
    Drag it to the Desktop. *Make no other changes*.
    Start iPhoto. Does that help?
    If it does then look inside that folder on your desktop. Does it contain anything you want? If not you can trash the folder.

  • Problems with square root approximations with loops program

    i'm having some trouble with this program, this loop stuff is confusing me and i know i'm not doing this correctly at all. the expected values in the tester are not matching up with the output. i have tried many variations of the loop in this code even modifying the i parameter in the loop which i guess is considered bad form. nothing seems to work...
    here is what i have for my solution class:
    /** A class that takes the inputted number by the tester and squares it, and
    *  loops guesses when the nextGuess() method is called. The epsilon value is
    *  also inputted by the user, and when the most recent guess returns a value
    *  <= epsilon, then the hasMoreGuesses() method should return false.
    public class RootApproximator
       /** Takes the inputted values from the tester to construct a RootApproximator.
        * @param val the value of the number to be squared and guessed.
        * @param eps the gap in which the approximation is considered acceptable.
         public RootApproximator(double val, double eps)
              value = val;
              square = Math.sqrt(val);
              epsilon = eps;
       /** Uses the algorithm where 1 is the first initial guess of the
        *  square root of the inputted value. The algorithm is defined by
        *  "If X is a guess for a square root of a number, then the average
        *  of X and value/X is a closer approximation.
        *  @return increasingly closer guesses as the method is continually used.
       public double nextGuess()
             final int TRIES = 10000;
             double guess = 1;
              for (double i = 1; i < TRIES; i++)
                   double temp = value / guess;
                   guess = (guess + temp) / 2.0;
              return guess;
       /** Determines if there are more guesses left if the difference
        *  of the square and current guess are not equal to or less than
        *  epsilon.
        *  @return the value of the condition.
       public boolean hasMoreGuesses()
              return (square - guess <= epsilon);
       private double square;
       private double value;
       private double epsilon;
       private double guess;
    here is the tester:
    public class RootApproximatorTester
       public static void main(String[] args)
          double a = 100;
          double epsilon = 1;
          RootApproximator approx = new RootApproximator(a, epsilon);
          System.out.println(approx.nextGuess());
          System.out.println("Expected: 1");
          System.out.println(approx.nextGuess());
          System.out.println("Expected: 50.5");
          while (approx.hasMoreGuesses())
             approx.nextGuess();
          System.out.println(Math.abs(approx.nextGuess() - 10) < epsilon);
          System.out.println("Expected: true");
    and here is the output:
    10.0
    Expected: 1 // not sure why this should be 1, perhaps because it is the first guess.
    10.0
    Expected: 50.5 // (100 + 1) / 2, average of the inputted value and the first guess.
    true
    Expected: true
    i'm new to java this is my first java course and this stuff is frustrating. i'm really clueless as to what to do next, if anyone could please give me some helpful advice i would really appreciate it. thank you all.

    i'm new to java this is my first java course and this
    stuff is frustrating. i'm really clueless as to what
    to do nextMaybe it's because you don't have a strategy for what the program is supposed to do? To me it looks like a numerical scheme for finding the squareroot of a number.
    Say the number you want to squarerroot is called value and that you have an approximation called guess. How do you determine whether guess is good enought?
    Well in hasMoreGuesses you check whether,
    (abs(value-guess*guess) < epsilon)
    The above decides if guess is within epsilon of being the squareroot of value.
    When you calculate the next guess in nextGuess why do you loop so many times? Aren't you supposed to make just one new guess like,
    guess = (guess + value/guess)/2.0
    The above generates a new guess based on the fact that guess and value/guess must be on each side of value so that the average of them must be closer too value.
    Now you can put the two together to a complete algoritm like,
    while (hasMoreGuesses()) {
       nextGuess();
    }In each iteration of the loop a new "guess" of the squareroot is generated and this continues until the guess is a sufficiently close approximation of the squareroot.

  • Weblogic 10.3.2. application launch delayed by approximately 60 seconds

    Hi,
    The application was developed using Flex 2, java, hibernate and spring framework(ver. 2.0.3). It works fine in the oracle Application server oc4j based container.
    When deployed this application in weblogic 10.3.2, after entering the username and password, the first page is delayed by approximately 60/70 seconds. The full log file shows this time is consumed by HttpSessionContextIntegrationFilter. As you can see below in the log, the processing for this class stats at 10:46:23 and then it moves on to the next processing at 10:47:26. Please let me know, how I could resolve/troubleshoot this issue.
    [Mar 24 10:46:23] DEBUG (FilterChainProxy.java) - /efc-flex/efc.swf reached end of additional filter chain; proceeding with original chain
    [Mar 24 10:46:23] DEBUG (ExceptionTranslationFilter.java) - Chain processed normally
    [Mar 24 10:46:23] DEBUG (HttpSessionContextIntegrationFilter.java) - SecurityContextHolder now cleared, as request processing completed
    [Mar 24 10:47:26] DEBUG (FilterChainProxy.java) - Converted URL to lowercase, from: '/efc-flex/j_spring_security_logout'; to: '/efc-flex/j_spring_security_logout'
    [Mar 24 10:47:26] DEBUG (FilterChainProxy.java) - Candidate is: '/efc-flex/j_spring_security_logout'; pattern is /**; matched=true
    Thanks
    Murugan.

    Here is the dump for the issue above. Could anyone take a look at this and let me know, what the issue is..
    This page displays the current stacks for each thread.
    "[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'" waiting for lock weblogic.work.ExecuteThread@42066 WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:485)
         weblogic.work.ExecuteThread.waitForRequest(ExecuteThread.java:157)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    "DynamicListenThread[Default]" RUNNABLE native
         java.net.PlainSocketImpl.socketAccept(Native Method)
         java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
         java.net.ServerSocket.implAccept(ServerSocket.java:453)
         java.net.ServerSocket.accept(ServerSocket.java:421)
         weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:38)
         weblogic.server.channels.DynamicListenThread$SocketAccepter.accept(DynamicListenThread.java:528)
         weblogic.server.channels.DynamicListenThread$SocketAccepter.access$200(DynamicListenThread.java:420)
         weblogic.server.channels.DynamicListenThread.run(DynamicListenThread.java:171)
         java.lang.Thread.run(Thread.java:619)
    "DynamicListenThread[Default[1]]" RUNNABLE native
         java.net.PlainSocketImpl.socketAccept(Native Method)
         java.net.PlainSocketImpl.accept(PlainSocketImpl.java:390)
         java.net.ServerSocket.implAccept(ServerSocket.java:453)
         java.net.ServerSocket.accept(ServerSocket.java:421)
         weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:38)
         weblogic.server.channels.DynamicListenThread$SocketAccepter.accept(DynamicListenThread.java:528)
         weblogic.server.channels.DynamicListenThread$SocketAccepter.access$200(DynamicListenThread.java:420)
         weblogic.server.channels.DynamicListenThread.run(DynamicListenThread.java:171)
         java.lang.Thread.run(Thread.java:619)
    "weblogic.GCMonitor" waiting for lock java.lang.ref.ReferenceQueue$Lock@eb33a1 TIMED_WAITING
         java.lang.Object.wait(Native Method)
         java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:118)
         weblogic.platform.GCMonitorThread.waitForNotification(GCMonitorThread.java:88)
         weblogic.platform.GCMonitorThread.run(GCMonitorThread.java:64)
    "Timer-4" waiting for lock java.util.TaskQueue@18abda9 WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:485)
         java.util.TimerThread.mainLoop(Timer.java:483)
         java.util.TimerThread.run(Timer.java:462)
    "Timer-3" waiting for lock java.util.TaskQueue@1a9a61d WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:485)
         java.util.TimerThread.mainLoop(Timer.java:483)
         java.util.TimerThread.run(Timer.java:462)
    "RedeployManager" waiting for lock java.lang.Object@d8cd3c TIMED_WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:443)
         edu.emory.mathcs.backport.java.util.concurrent.TimeUnit.timedWait(TimeUnit.java:294)
         edu.emory.mathcs.backport.java.util.concurrent.DelayQueue.take(DelayQueue.java:156)
         edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:470)
         edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:667)
         java.lang.Thread.run(Thread.java:619)
    "RTMP-Server" RUNNABLE native
         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll0(Native Method)
         sun.nio.ch.WindowsSelectorImpl$SubSelector.poll(WindowsSelectorImpl.java:274)
         sun.nio.ch.WindowsSelectorImpl$SubSelector.access$400(WindowsSelectorImpl.java:256)
         sun.nio.ch.WindowsSelectorImpl.doSelect(WindowsSelectorImpl.java:137)
         sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:69)
         sun.nio.ch.SelectorImpl.select(SelectorImpl.java:80)
         sun.nio.ch.SelectorImpl.select(SelectorImpl.java:84)
         flex.messaging.endpoints.rtmp.BaseNIORTMPServer.run(BaseNIORTMPServer.java:189)
         java.lang.Thread.run(Thread.java:619)
    "Timer-2" waiting for lock java.util.TaskQueue@18a310a TIMED_WAITING
         java.lang.Object.wait(Native Method)
         java.util.TimerThread.mainLoop(Timer.java:509)
         java.util.TimerThread.run(Timer.java:462)
    "Thread-12" waiting for lock java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@1999292 WAITING
         sun.misc.Unsafe.park(Native Method)
         java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1925)
         java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:358)
         weblogic.utils.concurrent.JDK15ConcurrentBlockingQueue.take(JDK15ConcurrentBlockingQueue.java:89)
         weblogic.store.internal.PersistentStoreImpl.getOutstandingWork(PersistentStoreImpl.java:567)
         weblogic.store.internal.PersistentStoreImpl.run(PersistentStoreImpl.java:615)
         weblogic.store.internal.PersistentStoreImpl$2.run(PersistentStoreImpl.java:383)
    "[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'" waiting for lock weblogic.work.ExecuteThread@b6bbaa WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:485)
         weblogic.work.ExecuteThread.waitForRequest(ExecuteThread.java:157)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    "Thread-11" waiting for lock java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@165c180 WAITING
         sun.misc.Unsafe.park(Native Method)
         java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1925)
         java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:358)
         weblogic.utils.concurrent.JDK15ConcurrentBlockingQueue.take(JDK15ConcurrentBlockingQueue.java:89)
         weblogic.store.internal.PersistentStoreImpl.getOutstandingWork(PersistentStoreImpl.java:567)
         weblogic.store.internal.PersistentStoreImpl.run(PersistentStoreImpl.java:615)
         weblogic.store.internal.PersistentStoreImpl$2.run(PersistentStoreImpl.java:383)
    "DoSManager" TIMED_WAITING
         java.lang.Thread.sleep(Native Method)
         com.octetstring.vde.DoSManager.run(DoSManager.java:433)
    "VDE Transaction Processor Thread" waiting for lock [email protected] WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:485)
         com.octetstring.vde.backend.standard.TransactionProcessor.waitChange(TransactionProcessor.java:367)
         com.octetstring.vde.backend.standard.TransactionProcessor.run(TransactionProcessor.java:212)
    "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" RUNNABLE native
         weblogic.socket.NTSocketMuxer.getIoCompletionResult(Native Method)
         weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:81)
         weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" RUNNABLE native
         weblogic.socket.NTSocketMuxer.getIoCompletionResult(Native Method)
         weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:81)
         weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" RUNNABLE native
         weblogic.socket.NTSocketMuxer.getIoCompletionResult(Native Method)
         weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:81)
         weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    "Thread-7" waiting for lock java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@eb9951 WAITING
         sun.misc.Unsafe.park(Native Method)
         java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
         java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1925)
         java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:358)
         weblogic.utils.concurrent.JDK15ConcurrentBlockingQueue.take(JDK15ConcurrentBlockingQueue.java:89)
         weblogic.store.internal.PersistentStoreImpl.getOutstandingWork(PersistentStoreImpl.java:567)
         weblogic.store.internal.PersistentStoreImpl.run(PersistentStoreImpl.java:615)
         weblogic.store.internal.PersistentStoreImpl$2.run(PersistentStoreImpl.java:383)
    "[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" RUNNABLE
         sun.management.ThreadImpl.getThreadInfo0(Native Method)
         sun.management.ThreadImpl.getThreadInfo(ThreadImpl.java:145)
         weblogic.platform.VM15.threadDumpAsString(VM15.java:22)
         weblogic.platform.VM.threadDumpAsString(VM.java:137)
         weblogic.t3.srvr.JVMRuntime.getThreadStackDump(JVMRuntime.java:111)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:597)
         weblogic.management.jmx.modelmbean.WLSModelMBean.getAttribute(WLSModelMBean.java:525)
         com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:666)
         com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:638)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326)
         java.security.AccessController.doPrivileged(Native Method)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324)
         weblogic.management.mbeanservers.internal.JMXContextInterceptor.getAttribute(JMXContextInterceptor.java:163)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326)
         java.security.AccessController.doPrivileged(Native Method)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324)
         weblogic.management.mbeanservers.internal.SecurityInterceptor.getAttribute(SecurityInterceptor.java:298)
         weblogic.management.jmx.mbeanserver.WLSMBeanServer.getAttribute(WLSMBeanServer.java:273)
         weblogic.management.mbeanservers.domainruntime.internal.ManagedMBeanServerConnection.getAttribute(ManagedMBeanServerConnection.java:304)
         weblogic.management.mbeanservers.domainruntime.internal.FederatedMBeanServerInterceptor.getAttribute(FederatedMBeanServerInterceptor.java:308)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326)
         java.security.AccessController.doPrivileged(Native Method)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324)
         weblogic.management.mbeanservers.internal.JMXContextInterceptor.getAttribute(JMXContextInterceptor.java:163)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326)
         java.security.AccessController.doPrivileged(Native Method)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$12.run(WLSMBeanServerInterceptorBase.java:326)
         java.security.AccessController.doPrivileged(Native Method)
         weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getAttribute(WLSMBeanServerInterceptorBase.java:324)
         weblogic.management.mbeanservers.internal.SecurityInterceptor.getAttribute(SecurityInterceptor.java:298)
         weblogic.management.jmx.mbeanserver.WLSMBeanServer.getAttribute(WLSMBeanServer.java:273)
         weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$5$1.run(JMXConnectorSubjectForwarder.java:326)
         java.security.AccessController.doPrivileged(Native Method)
         weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$5.run(JMXConnectorSubjectForwarder.java:324)
         weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.getAttribute(JMXConnectorSubjectForwarder.java:319)
         javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1403)
         javax.management.remote.rmi.RMIConnectionImpl.access$200(RMIConnectionImpl.java:72)
         javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1264)
         java.security.AccessController.doPrivileged(Native Method)
         javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1366)
         javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:600)
         javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
         weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:222)
         javax.management.remote.rmi.RMIConnectionImpl_1032_WLStub.getAttribute(Unknown Source)
         javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.getAttribute(RMIConnector.java:878)
         javax.management.MBeanServerInvocationHandler.invoke(MBeanServerInvocationHandler.java:263)
         weblogic.management.jmx.MBeanServerInvocationHandler.doInvoke(MBeanServerInvocationHandler.java:504)
         weblogic.management.jmx.MBeanServerInvocationHandler.invoke(MBeanServerInvocationHandler.java:380)
         $Proxy132.getThreadStackDump(Unknown Source)
         com.bea.console.actions.core.server.ThreadStackDumpAction.getCollection(ThreadStackDumpAction.java:61)
         com.bea.console.actions.BaseTableAction.display(BaseTableAction.java:46)
         com.bea.console.actions.BaseDisplayAction.execute(BaseDisplayAction.java:92)
         org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
         org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97)
         org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044)
         org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:91)
         org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116)
         com.bea.console.internal.ConsolePageFlowRequestProcessor.processActionPerform(ConsolePageFlowRequestProcessor.java:261)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
         org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556)
         org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853)
         org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631)
         org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158)
         com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:256)
         org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
         com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:133)
         org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199)
         com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:686)
         com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.renderInternal(ScopedContentCommonSupport.java:266)
         com.bea.portlet.adapter.scopedcontent.StrutsStubImpl.render(StrutsStubImpl.java:107)
         com.bea.netuix.servlets.controls.content.NetuiContent.preRender(NetuiContent.java:292)
         com.bea.netuix.nf.ControlLifecycle$6.visit(ControlLifecycle.java:428)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:727)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walkRecursivePreRender(ControlTreeWalker.java:739)
         com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:146)
         com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395)
         com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)
         com.bea.netuix.nf.Lifecycle.runOutbound(Lifecycle.java:208)
         com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:162)
         com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388)
         com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258)
         com.bea.netuix.servlets.manager.UIServlet.doGet(UIServlet.java:211)
         com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:196)
         com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:251)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         com.bea.console.utils.MBeanUtilsInitSingleFileServlet.service(MBeanUtilsInitSingleFileServlet.java:47)
         weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:130)
         weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    "weblogic.timers.TimerThread" waiting for lock weblogic.timers.internal.TimerThread@ac35d5 TIMED_WAITING
         java.lang.Object.wait(Native Method)
         weblogic.timers.internal.TimerThread$Thread.run(TimerThread.java:267)
    "weblogic.time.TimeEventGenerator" waiting for lock weblogic.time.common.internal.TimeTable@2562c TIMED_WAITING
         java.lang.Object.wait(Native Method)
         weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:286)
         weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:117)
         java.lang.Thread.run(Thread.java:619)
    "[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" waiting for lock weblogic.work.ExecuteThread@f90edb WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:485)
         weblogic.work.ExecuteThread.waitForRequest(ExecuteThread.java:157)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    "Timer-1" waiting for lock java.util.TaskQueue@16765c9 TIMED_WAITING
         java.lang.Object.wait(Native Method)
         java.util.TimerThread.mainLoop(Timer.java:509)
         java.util.TimerThread.run(Timer.java:462)
    "Timer-0" waiting for lock java.util.TaskQueue@14b70dd WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:485)
         java.util.TimerThread.mainLoop(Timer.java:483)
         java.util.TimerThread.run(Timer.java:462)
    "Attach Listener" RUNNABLE
    null
    "Signal Dispatcher" RUNNABLE
    null
    "Finalizer" waiting for lock java.lang.ref.ReferenceQueue$Lock@1defb61 WAITING
         java.lang.Object.wait(Native Method)
         java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:118)
         java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:134)
         java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" waiting for lock java.lang.ref.Reference$Lock@49c224 WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:485)
         java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    "main" waiting for lock weblogic.t3.srvr.T3Srvr@68c9a1 WAITING
         java.lang.Object.wait(Native Method)
         java.lang.Object.wait(Object.java:485)
         weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:849)
         weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:465)
         weblogic.Server.main(Server.java:67)
    Thanks
    Murugan

  • Okay so my phone crashes approximately every 30 seconds. I have tried resetting it by DPU as well as on the phone itself.  Once in awhile i get an error message about unknown error 1.  If i look at the diagnosis or if runs on itunes i get the following i

    Okay so my phone crashes approximately every 30 seconds. I have tried resetting it by DPU as well as on the phone itself.  Once in awhile i get an error message about unknown error 1.  If i look at the diagnosis or if runs on itunes i get the following.  When I called the support at AT&T they think the phone is shot and it is a hardware thing but i have a hard time believing that when it happened when I sync'd it to my computer.  It did get progressively worse though, at first it crashed not that often and then got worse.  So restores are failing, recovery, everything.  Anyone run into this? 
    11-11-16 18:20:36.319 [2232:16dc]: amai: tss_submit_job: HttpQueryInfo returned 200
    2011-11-16 18:20:38.350 [2232:1c50]: <DFU Device 0F128BE0>: production fused device
    2011-11-16 18:20:38.350 [2232:1c50]: unable to open device_map.txt: No such file or directory
    2011-11-16 18:20:38.350 [2232:1c50]: WinDFU::OpenDeviceByPath: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#1bfe4c4c
    2011-11-16 18:20:39.132 [2232:1c50]: WinDFU::UploadData: EOF, cbRead: 553
    2011-11-16 18:20:39.147 [2232:1c50]: WinDFU::UploadData: ZLP
    2011-11-16 18:20:39.163 [2232:1c50]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 6
    2011-11-16 18:20:39.163 [2232:1c50]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_SYNC
    2011-11-16 18:20:39.163 [2232:1c50]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 7
    2011-11-16 18:20:39.163 [2232:1c50]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST, PollTimeout: 3000
    2011-11-16 18:20:42.163 [2232:1c50]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 8
    2011-11-16 18:20:42.163 [2232:1c50]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_WAIT_RESET
    2011-11-16 18:20:42.163 [2232:1c50]: WinDFU::ResetDevice: resetting...
    2011-11-16 18:21:02.210 [2232:1c50]: WinDFU::FinalizeDfuUpdate: success
    2011-11-16 18:21:03.491 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 18:21:03.507 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 18:21:03.757 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 18:21:04.554 [2232:1b88]: amai: tss_submit_job: HttpQueryInfo returned 200
    2011-11-16 18:21:10.882 [2232:1b88]: <DFU Device 0F198478>: production fused device
    2011-11-16 18:21:10.882 [2232:1b88]: unable to open device_map.txt: No such file or directory
    2011-11-16 18:21:10.882 [2232:1b88]: WinDFU::OpenDeviceByPath: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#cfe11997
    2011-11-16 18:21:12.788 [2232:1b88]: WinDFU::UploadData: EOF, cbRead: 1321
    2011-11-16 18:21:12.804 [2232:1b88]: WinDFU::UploadData: ZLP
    2011-11-16 18:21:12.819 [2232:1b88]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 6
    2011-11-16 18:21:12.819 [2232:1b88]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_SYNC
    2011-11-16 18:21:12.819 [2232:1b88]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 7
    2011-11-16 18:21:12.819 [2232:1b88]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST, PollTimeout: 3000
    2011-11-16 18:21:15.819 [2232:1b88]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 8
    2011-11-16 18:21:15.819 [2232:1b88]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_WAIT_RESET
    2011-11-16 18:21:15.819 [2232:1b88]: WinDFU::ResetDevice: resetting...
    2011-11-16 18:21:20.866 [2232:1b88]: WinDFU::FinalizeDfuUpdate: success
    2011-11-16 18:21:21.835 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 18:21:21.835 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 18:21:21.897 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 18:21:22.054 [2232:1838]: AMDeviceIoControl: GetOverlappedResult failed
    2011-11-16 18:21:22.054 [2232:1838]: AMDeviceIoControl: pipe stall
    2011-11-16 18:21:22.054 [2232:1838]: USBControlTransfer: error 31, usbd status c0000004
    2011-11-16 18:21:22.054 [2232:1838]: command device request for 'getenv radio-error' failed: 2008
    2011-11-16 18:21:22.054 [2232:1838]: unable to open device_map.txt: No such file or directory
    2011-11-16 18:21:22.054 [2232:1838]: <Recovery Mode Device 0F2A7768>: production fused device
    2011-11-16 18:21:24.007 [2232:1838]: AMDeviceIoControl: GetOverlappedResult failed
    2011-11-16 18:21:24.007 [2232:1838]: AMDeviceIoControl: pipe stall
    2011-11-16 18:21:24.007 [2232:1838]: USBControlTransfer: error 31, usbd status c0000004
    2011-11-16 18:21:24.007 [2232:1838]: command device request for 'getenv ramdisk-delay' failed: 2008
    2011-11-16 18:21:38.319 [2232:1344]: fixed TcpWindowSize (64512) can cause restore failure if too large
    2011-11-16 18:21:38.335 [2232:1344]: unable to open device_map.txt: No such file or directory
    2011-11-16 19:21:54.475 [2232:1344]: amai: AMAuthInstallBasebandHandleUpdaterStatus: outputDict is NULL
    2011-11-16 19:21:54.538 [2232:1344]: <Restore Device 0ED73918>: Restore failed (result = 1)
    2011-11-16 19:21:54.647 [2232:8ec]: iTunes: Restore error 1
    2011-11-16 19:22:09.100 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:22:09.100 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 19:22:09.163 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:37:25.319 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:37:25.335 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 19:37:25.382 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:52:41.679 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:52:41.679 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 19:52:42.163 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    I also get a system crash reporter key of c392e98c929aa0b351037af00d75d08aeadc843c    bug type 110
    incident identifier  8ff84a87

    Errors 3000-3999 (3004, 3013, 3014, 3018, 3164, 3194, and so on): Error codes in the 3000 range generally mean that iTunes cannot contact the update server (gs.apple.com) on ports 80 or 443.
    Update to the latest version of iTunes.
    Verify the computer's date and time are accurate.
    Check that your security or firewall software is not interfering with ports 80 or 443, or with the server gs.apple.com.
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    An entry in your hosts file may be redirecting requests to gs.apple.com (see "Unable to contact the iOS software update server gs.apple.com" above).
    Internet proxy settings can cause this issue. If you are using a proxy, try without using one.
    Test restoring while connected to a known-good network.

  • My iphone I fell to the ground yesterday, from a height of approximately 1 meter. after this I trailed off, now only turns on when I plug the usb but the apple appears and just turn off and turn back, there is nothing more that I recommend doing?

    my iphone I fell to the ground yesterday, from a height of approximately 1 meter. after this I trailed off, now only turns on when I plug the usb but the apple appears and just turn off and turn back, there is nothing more that I recommend doing?

    With that behavior you need to take the iPhone to an Apple store genius bar for an out-of-warranty replacement.  In the US that is $269 for the iPhone 5.

  • After navigating (sometimes downloading pictures, sometimes not) for approximately 10 minutes, I can no longer see contents of drop down menues, then Firefox freezes up and I have to use Ctrl/Alt/Delete to end my internet experience.

    After navigating (sometimes downloading pictures, sometimes not) for approximately 10 minutes, I can no longer see contents of drop down menus, then Firefox freezes up and I have to use Ctrl/Alt/Delete to end my internet experience.
    == This happened ==
    Every time Firefox opened
    == After upgrading to 3.6

    Step by step, how did you arrive at seeing this agreement?

  • When I enable imatch on my iPhone 4s it takes approximately 30 minutes before other data fills 13.2gb of usable data. This problem does not occur when I manually sync music to my phone. Is this a common bug, and if so; is there a fix?

    When I enable imatch on my iPhone 4s it takes approximately 30 minutes before other data fills 13.2gb of usable data on the phone. This problem does not occur when I manually sync music to my phone only when I access imatch. Is this a common bug, and if so; is there a fix?

    yes it is. you can sign out of itunes account then sign back in. use http://support.apple.com/kb/ht1311 to sign out.

  • I have a 2007 Mac OS X 10.5.8. How do I go about bringing everything on it up-to-date? Maybe refurbishing it? How much might that cost approximately?

    I have a 2007 Mac OS X 10.5.8. How do I go about bringing everything on it up-to-date? Maybe refurbishing it? How much might that cost approximately?

    Okay so there are a few things you can do to bring your MacBook up to speed. You may find, however, that purchasing a new computer will be more cost effective for you.
    Adding RAM - this is one place you can get very good value for your money. Max out your MacBook's RAM.
    Purchase and install a larger hard drive. If you've been running out of drive space or just want more, hard drives are inexpensive and easy to install.
    Update your operating system - You can get Snow Leopard for $29 from Apple. When it comes out next month you can then get Lion for $29.99 from the Mac App Store. Unfortunately as of yet there is no way known to upgrade directly from Leopard to Lion.
    Add an external hard drive to your system for backup. This is always a good idea to have, as data that is in only one place is vulnerable to loss if your hard drive fails.
    Update all of your applications. Many can be bought online now through the Mac App Store, which has made it easy and inexpensive for applications that are available there.
    Things you cannot upgrade -
    Your MacBook's processor. This is the brain of the computer and a faster one will give you a speed boost in some applications. It is part of the logic board so you can't put a new one in.
    Video card - also part of the logic board.
    Interfaces such as FireWire, USB, video out, audio in and out.
    If you need any of these, look for a newer computer.
    Hope this helps you out.
    Best of luck.

  • I connected a digital camera memory chip with approximately 100 photos on it. The photos showed up in iPhoto. I believe I deleted the photos from the memory chip before importing them. Is there any way I can get the photos back?

    I connected a digital camera memory chip with approximately 100 photos on it to import into iPhoto. The photos showed up in iPhoto. I believe I deleted the photos from the memory chip before importing them to iPhoto. Is there any way I can get the photos back?

    Terence, thanks that site is a gem...have to explore it more fully at home as it drove security here crazy
    Looks like just the ticket for saving mistakes.

  • Get record by recno

    I want to get record by record number using cursor. I use btree, which is configured to support recno (pdb->set_flags(DB_RECNUM);
    I found how to get recno by record and it work:
    unsigned int Recno()
      db_recno_t recno;
      Dbt numValue;
      memset(&numValue, 0, sizeof(numValue));
      numValue.set_data(&recno);
      numValue.set_ulen(sizeof(recno));
      numValue.set_flags(DB_DBT_USERMEM);
      //int ret = bdbCursor->c_get(bdbCursor, Key, &data, DB_GET_RECNO)) != 0
      bdbCursor->get(&Key, &numValue, DB_GET_RECNO);
      return (unsigned int)recno;
    I trying to do same to get record by recno, but BD just crached and no show error message.
    bool MoveToRecno(db_recno_t recno)
      memset(&Key, 0, sizeof(Key));
      Key.set_data(&recno);
      Key.set_size(sizeof(recno));
      Key.set_flags(DB_DBT_USERMEM);
      int ret = bdbCursor->get(&Key, &Value, DB_SET_RECNO);  //program crached here
      return ret == 0;

    Found bug: answer will be written to usermem:
      unsigned char * buff = new unsigned char[100];
      memset(&Key, 0, sizeof(Key));
      memcpy(buff, &recno, sizeof(recno));
      Key.set_data(&buff);
      Key.set_ulen(100);
      Key.set_size(sizeof(db_recno_t));
      Key.set_flags(DB_DBT_USERMEM);
      int ret = bdbCursor->get(&Key, &Value, DB_SET_RECNO);

  • I have acquired a macintosh 950 computer made in approximately 1995, which powers up just fine, except that I cannot get the system to recnogise a keyboard and mouse.  Any suggestions would be helpfull!!

    I have acquired a macintosh 950 computer made in approximately 1995, which powers up just fine, except that I cannot get the system to recnogise a keyboard and mouse.  Any suggestions would be helpfull!!

    ray,
    We just moved a couple of those CPUs the other day.  Can you indicate your location with the name of a city near you?  A user group might be nearby.
    Jim

  • I have approximately 3 inches of black display on each side

    how do i use the full width of my monitor?
    it WAS ok - but now . . . .
    i have approximately 3 inches of black display on each side
    it's prob'ly something simple, but i can't THINK!

    Go into your system preferences and click on display the make sure the button for Best for built-in display is selected. 

  • How much electricity does an Airport Express use (approximately)?

    How much electricity does an Airport Express 802.11n use (approximately)?
    Is turning it off at night to save money a good idea or a bad idea?

    That's exactly the data I needed to know.  Thank you very much!
    I was concerned because the Express is always quite warm, which sometimes can mean big energy bills.......
    tronchaviones wrote:
    I've just measured it using a digital wattmeter, and it draws 4 watts when idle. This means about 3 kWh/month, or 0.60 €/month (at my current 0.20 € / kWh), so it is not the culprit of my huge energy bill...
    Surely it is not worth the hassle of unplugging it everyday, with the accelerated ageing it causes to the device.

  • TS1702 I have approximately 400 lives in reserve as gifts from friends in Candy Crush, but every time I try to access them, the screen turns blank. It will only let me use the 5 lives you are given every 30 minutes. Updates are up to date.  Any suggestion

    I have approximately 400 lives in reserve as gifts from friends in Candy Crush, but every time I try to access them, the screen turns blank. It will only let me use the 5 lives you are given every 30 minutes. Updates are up to date.  Any suggestions?

    Contact the app develed.

Maybe you are looking for

  • Is it possible to make video play smoothly from a flash drive?

    I know it's generally taboo to do just that. This is a special circumstance. I want to know if there's a way to either format the drive, or export the video (or a combination of the two) in such a way that video stored on the drive can play smoothly

  • Javax.jms.JMSException: Not supported in XA-backed session outside globaltx

    I am trying to setup OracleOJMS provider and tries to access queue and post to queue from a normal jsp for testing. I am getting the following code: javax.jms.JMSException: Not supported in XA-backed session outside global transaction      at oracle.

  • Embed font in editable text field

    Hi, I am trying to embed a font into an editable text box. There is no other type on the page so there are no fonts to choose to embed from the FONT folder. How do I embed the font? I hope that is clear... Thanks a bunch! Linda

  • Ho to use ME_DIRECT_INPUT_SOURCE_LIST

    Hi , I am using the Fm "ME_DIRECT_INPUT_SOURCE_LIST" to update a Source List for the TCODE : ME01. I have passed the parameters : I_MATNR I_WERKS and T_EORD. And even sy-subrc is ZERO after Fm execution, the Source list is not getting Updated. I used

  • Website cache

    You Guys got to seriously do something about " clearing cache ". I run a website and i was uploading images and replacing images and every time i refresh the page .. the image i deleted was still there. so i click history > clear recent history and c