Basic question related to the Thread.

HI all,
I have simple question.This is the simple program for creating a Thread.
My question is, when we invoke the start() method hos does the JVM knows to invoke run method?
why not other method / s?
I am new to the Thread progamming. Please explain it.
Thanks,
Rahul.
public class HelloRunnable implements Runnable {
public void run() {
System.out.println("Hello from a thread!");
public static void main(String args[]) {
(new Thread(new HelloRunnable())).start();
}

rahulb1 wrote:
My question is, when we invoke the start() method hos does the JVM knows to invoke run method?The library for Thread calls the run() method of Thread, this calls the run() of the Runnable. (See the code and javadocs for Thread)
why not other method / s?Because thats what was chosen as the logical method to call.

Similar Messages

  • Basic Questions related EHPs for SEM

    Hi Guys,
    I've some basic questions related to EHPs: -
    1. If we don't mean to implement any of the new functionalities does it make any sense to implement EHP? In other words do EHPs also have some general improments other than the functionalities which can be specifically activated?
    2. If we just activate a functionality and don't implement/ use it can there be any negative impact?
    3. In case of a pure technical upgrade from SEM 4.0 to SEM 6.0 which EHP would be recommended?
    4. Is there a quick way to find all relevant notes in EHPn which are related to corrections for EHPn-1?
    Thanks in advance,
    -SSC

    HI,
    If you see some of my older posts I have had many issues with certain features of the EHP2 functionality but that doesn't mean I would recommned against it.
    BCS 6 EHPs 3 & 4  (BCS 6.03 / 6.04) - enhancement packs worth implementing?
    BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack
    My recommendation is to implement the EHPs but not necesarrily activate the functions (in SFW5) unless you need them - this means that you will only have to test once after EHP implementation and will have the ability to activate the other features as and when required (although testing is required after activation of course) whereas it might be difficult to persuade your client/basis team to implement EHP4 later if you don't do it now.
    In the features of EHP2 (activate FIN_ACC_GROUP_CLOSE) it states that there is a general performance improvement - although I have yet to experience it! From OSS note 1171344 "The functionality which is available in EHP2 consists of...
    ... Performance improvements of status management, reporting and initial start-up of consolidation workbench and monitor.
    Since activating FIN_ACC_GROUP_CLOSE I have had many OSS notes requiring application but i discovered that when the technical team implemented the EHPs (before i joined this client) they somehow forgot the latest SP (support packs) and didn't upgrade to the current level - so make sure that you get the right SPs too (see the links in Greg's link above) to avoid the many OSS notes.
    As for your question - "is there a list of OSS notes to specific to EHP upgrades? - the answer is most definietly "NO" - I already asked OSS in desperation!
    however, you can see the OSS notes that i have applied listed in the above link ( BCS 6 EHP 2 (BCS 6.02) - activation of enhancement pack )

  • Question related to the Federated Portal Network.

    Hi All,
    I have a question related to the Federated Portal Network.
    I have to configured FPN between two portals :
    1. BI-portal  (Producer Portal) (EP 7.0)
    2. Portal for other systems (Consumer Portal) (EP 7.0)
    Can anybody help regarding this, I need material or URLs   ...
    Thanks & Regards,
    Jay

    Hi Jay,
    Check out following links for fedrated portals
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/703cfbbd-e85e-2a10-00a3-ecd502c08e82&overridelayout=true
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/70191d1e-2bd1-2a10-d9b7-ba19500da527&overridelayout=true
    Regards,
    Vaishali

  • Question related to the  JAX-RPC.

    Hi ,
    I have a question related to the JAX-RPC API.
    Please clear me following points whether I am right or not?
    1. If my two end points are in Java then and only we use the JAX-RPC API. Is it right?
    2. If my two end points are in .Net then we use the some other API in .NET. Is it right?
    Please give me links or associate info. regarding this.
    Thanks,
    Rahul

    With JAX-RPC API, you are writing or consuming web services. If you are building web services, then that web service should be interoperable to .NET as well as Java. You do not have to use JAX-RPC, because, JAX-WS can serve the same purpose but is much easier to program. More about web services may be found at [http://soalib.com|http://soalib.com]

  • Questions related to the localstorage=false client restarted and join back

    Hi, We are using the coherence 3.4.2 version. I notified a strange problem in our application, related to the coherence. I am posting here seeking for help. We are using JDK 1.6.0_16 on Linux 64 OS.
    To simplify the problems, let me just say that we have 3 JVM running as now. One is we called the data server, starting with following JVM settings:
    java -Xms1G -Xmx1G -server -Dlog4j.configuration=log4j.xml
    -Dtangosol.coherence.cacheconfig=/xxx/coherence_config.xml
    -Dtangosol.coherence.ttl=0
    -Dtangosol.coherence.log=log4j
    -Dtangosol.coherence.clusterport=5511
    -Dtangosol.coherence.distributed.localstorage=true The other 2 JVMs will use the same JVM settings as above, except -Dtangosol.coherence.distributed.localstorage=false.
    When I started the all servers in this order: data server -> one client jvm -> the other client jvm, I can see they all join into one cluster, and our application works fine.
    Now, if I shutdown client1 and client2, and restarted them, the problems comes:
    1) From the coherence log, I can see the client1 and client2 joined back in the cluster.
    2) But when client1 is trying to get cache using the following api:
    NamedCache cache = CacheFactory.getCache("cacheName");
    Object o = (Object)cache.get(id);The cache object is there, but without any elements in it. So Object o will always to Null. But I know in this case, there is one element in the case, which I just put in before restarted client 1 and 2.
    So in this case, I can get a cache object back, but without any element into it. This is not the case before the JVM restarted.
    3) In the above case, the cache is defined as a replicated cache as following:
              <cache-mapping>
                   <cache-name>cacheName</cache-name>
                   <scheme-name>ReplicatedScheme</scheme-name>
              </cache-mapping>
              <replicated-scheme>
                   <scheme-name>ReplicatedScheme</scheme-name>
                   <backing-map-scheme>
                        <local-scheme>
                             <scheme-ref>unlimited-backing-map</scheme-ref>
                        </local-scheme>
                   </backing-map-scheme>
              </replicated-scheme>
              <!-- Backing map scheme definition used by all the caches that do not require any eviction policies -->
              <local-scheme>
                   <scheme-name>unlimited-backing-map</scheme-name>
              </local-scheme>4) I tried to use the SimpleCacheExplorer example coming with the coherence to see if I can reproduce this case. But I can not. I use the same coherence.xml as our application. I used the same cache name in the SimpleCacheExplorer as in our application. I started 3 JVMs, one with localstorage=true, the other 2 with localstorage=false. Everytime, I restarted the other 2 JVMs, it can join back the cluster and get the value for the original key. So I am not sure which part in our application breaks this.
    5) I list the coherence log below from our application. I added 2-3 lines comments just to list what happened then.
    Any idea or hints about why this is happenning? Thanks for your help.

    Here is the log:
    ############ start the data server
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 INFO   2009-11-19 14:55:07.132/65.613 Oracle Coherence 3.4.2/411 <Info> (thread=http-8080-1, member=n/a): Loaded operational configuration from resource "jar:file:/datacloud/trunk/install/apache-tomcat-6.0.18/webapps/datacloud/WEB-INF/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 INFO   2009-11-19 14:55:07.187/65.668 Oracle Coherence 3.4.2/411 <Info> (thread=http-8080-1, member=n/a): Loaded operational overrides from resource "jar:file:/datacloud/trunk/install/apache-tomcat-6.0.18/webapps/datacloud/WEB-INF/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 DEBUG  2009-11-19 14:55:07.187/65.668 Oracle Coherence 3.4.2/411 <D5> (thread=http-8080-1, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 DEBUG  2009-11-19 14:55:07.190/65.671 Oracle Coherence 3.4.2/411 <D5> (thread=http-8080-1, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 DEBUG 
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-11-19 14:55:08,356 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:08.351/863.022 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member(Id=2, Timestamp=2009-11-19 14:55:08.15, Address=10.241.59.246:8089, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30265, Role=ApacheCatalinaStartupBootstrap) joined Cluster with senior member 1
    2009-11-19 14:55:08,360 Coherence  Logger@9230760 3.4.2/411 INFO   2009-11-19 14:55:08.360/66.841 Oracle Coherence GE 3.4.2/411 <Info> (thread=Cluster, member=n/a): This Member(Id=2, Timestamp=2009-11-19 14:55:08.15, Address=10.241.59.246:8089, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30265, Role=ApacheCatalinaStartupBootstrap, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1) joined cluster "cluster:0xC3E1" with senior Member(Id=1, Timestamp=2009-11-19 14:40:47.04, Address=10.241.59.246:8088, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:29459, Role=NokiaDcServerDataServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1)
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service ExpiryService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSearchService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistributedCache with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLRUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLFUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallHYBRIDService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLRUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLFUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumHYBRIDService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLRUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLFUService with senior member 1
    2009-11-19 14:55:08,387 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeHYBRIDService with senior member 1
    2009-11-19 14:55:08,682 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:08.681/863.352 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member 2 joined Service DistributedCache with senior member 1
    2009-11-19 14:55:08,686 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.686/67.167 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache joined the cluster with senior service member 1
    2009-11-19 14:55:08,690 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:08.686/863.357 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=1): Service DistributedCache: sending ServiceConfigSync containing 258 entries to Member 2
    2009-11-19 14:55:08,693 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.693/67.174 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache: received ServiceConfigSync containing 258 entries
    2009-11-19 14:55:09,593 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:09.593/864.264 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): TcpRing: connecting to member 2 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=8089,localport=37475]}
    2009-11-19 14:55:09,597 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:09.596/68.077 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpRingListener, member=2): TcpRing: connecting to member 1 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=37475,localport=8089]}
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 INFO   2009-11-19 14:55:12.508/172.386 Oracle Coherence 3.4.2/411 <Info> (thread=pool-2-thread-1, member=n/a): Loaded operational configuration from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 INFO   2009-11-19 14:55:12.514/172.392 Oracle Coherence 3.4.2/411 <Info> (thread=pool-2-thread-1, member=n/a): Loaded operational overrides from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 DEBUG  2009-11-19 14:55:12.514/172.392 Oracle Coherence 3.4.2/411 <D5> (thread=pool-2-thread-1, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 DEBUG  2009-11-19 14:55:12.517/172.395 Oracle Coherence 3.4.2/411 <D5> (thread=pool-2-thread-1, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 DEBUG 
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-11-19 15:04:23,811 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.811/62.250 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLRUService with senior member 1
    2009-11-19 15:04:23,811 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.811/62.250 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLFUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.811/62.250 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallHYBRIDService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLRUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLFUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumHYBRIDService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLRUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLFUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeHYBRIDService with senior member 1
    2009-11-19 15:04:23,946 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:23.946/1418.617 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member 2 joined Service DistributedCache with senior member 1
    2009-11-19 15:04:23,953 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.952/62.391 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache joined the cluster with senior service member 1
    2009-11-19 15:04:23,955 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:23.953/1418.624 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=1): Service DistributedCache: sending ServiceConfigSync containing 259 entries to Member 2
    2009-11-19 15:04:23,959 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.959/62.398 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache: received ServiceConfigSync containing 259 entries
    2009-11-19 15:04:24,513 Coherence  Logger@879081272 3.4.2/411 INFO   2009-11-19 15:04:24.351/181.083 Oracle Coherence 3.4.2/411 <Info> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Loaded operational configuration from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 INFO   2009-11-19 15:04:24.355/181.087 Oracle Coherence 3.4.2/411 <Info> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Loaded operational overrides from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 DEBUG  2009-11-19 15:04:24.355/181.087 Oracle Coherence 3.4.2/411 <D5> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 DEBUG  2009-11-19 15:04:24.358/181.090 Oracle Coherence 3.4.2/411 <D5> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 DEBUG 
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-11-19 15:04:24,546 Coherence  Logger@879081272 3.4.2/411 INFO   2009-11-19 15:04:24.546/181.278 Oracle Coherence GE 3.4.2/411 <Info> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Loaded cache configuration from file "/datacloud/trunk/install/conf/coherence_config.xml"
    2009-11-19 15:04:24,760 Coherence  Logger@879081272 3.4.2/411 WARN   2009-11-19 15:04:24.760/181.492 Oracle Coherence GE 3.4.2/411 <Warning> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): UnicastUdpSocket failed to set receive buffer size to 1428 packets (2096304 bytes); actual size is 89 packets (131071 bytes). Consult your OS documentation regarding increasing the maximum socket buffer size. Proceeding with the actual value may cause sub-optimal performance.
    2009-11-19 15:04:24,786 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:24.785/1419.456 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): TcpRing: connecting to member 2 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=8089,localport=48995]}
    2009-11-19 15:04:24,787 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:24.787/63.226 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpRingListener, member=2): TcpRing: connecting to member 1 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=48995,localport=8089]}
    2009-11-19 15:04:24,882 Coherence  Logger@879081272 3.4.2/411 DEBUG  2009-11-19 15:04:24.882/181.614 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-11-19 15:04:25,118 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:25.112/1419.783 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member(Id=3, Timestamp=2009-11-19 15:04:24.917, Address=10.241.59.246:8090, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30657, Role=NokiaDcServerBuildBuildServer) joined Cluster with senior member 1
    2009-11-19 15:04:25,118 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:25.115/63.554 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=2): Member(Id=3, Timestamp=2009-11-19 15:04:24.917, Address=10.241.59.246:8090, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30657, Role=NokiaDcServerBuildBuildServer) joined Cluster with senior member 1
    2009-11-19 15:04:25,120 Coherence  Logger@9242415 3.4.2/411 INFO   2009-11-19 15:04:25.120/181.852 Oracle Coherence GE 3.4.2/411 <Info> (thread=Cluster, member=n/a): This Member(Id=3, Timestamp=2009-11-19 15:04:24.917, Address=10.241.59.246:8090, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30657, Role=NokiaDcServerBuildBuildServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1) joined cluster "cluster:0xC3E1" with senior Member(Id=1, Timestamp=2009-11-19 14:40:47.04, Address=10.241.59.246:8088, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:29459, Role=NokiaDcServerDataServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1)
    2009-11-19 15:04:25,127 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.127/181.859 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member(Id=2, Timestamp=2009-11-19 15:04:23.541, Address=10.241.59.246:8089, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30753, Role=ApacheCatalinaStartupBootstrap) joined Cluster with senior member 1
    2009-11-19 15:04:25,131 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.131/181.863 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service ExpiryService with senior member 1
    2009-11-19 15:04:25,131 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.131/181.863 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSearchService with senior member 1
    2009-11-19 15:04:25,132 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistributedCache with senior member 1
    2009-11-19 15:04:25,132 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLRUService with senior member 1
    2009-11-19 15:04:25,132 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLFUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallHYBRIDService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLRUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLFUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumHYBRIDService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLRUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLFUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeHYBRIDService with senior member 1
    2009-11-19 15:04:25,134 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.134/181.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 2 joined Service DistributedCache with senior member 1
    2009-11-19 15:04:25,219 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:25.219/1419.890 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member 3 joined Service ReplicatedCache with senior member 3
    2009-11-19 15:04:25,220 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:25.220/63.659 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=2): Member 3 joined Service ReplicatedCache with senior member 3
    2009-11-19 15:04:25,223 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.223/181.955 Oracle Coherence GE 3.4.2/411 <D5> (thread=ReplicatedCache, member=3): Service ReplicatedCache joined the cluster with senior service member 3
    2009-11-19 15:04:26,310 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:26.309/183.041 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=3): TcpRing: connecting to member 1 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=8088,localport=58713]}
    2009-11-19 15:04:26,312 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:26.312/1420.983 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpRingListener, member=1): TcpRing: connecting to member 3 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=58713,localport=8088]}

  • 5 tough questions relating to the monitoring software

    Hi guys,
    I'm writing this on behalf of one of our partners. They are having major problems setting up the monitoring software (v 1.0.0_200809). I have asked them to verify that they are using the latest firmware upgrades on the cameras and that they are running the latest version of the monitoring software. They have confirmed that this is the case.
    I have some doubts about this but perhaps you can help with the issues listed below.
    The following issues have surfaced:
    1. Issues with Graphic Card driver for Intel GMA945
    - if this driver is installed in a laptop the monitoring software (1.0.0_200809) will not inititate/start.
    The error message is: <or corrupted resource files.  Please reinstall to solve this problem.>
    Reinstalling the software will unofortunately not solve the problem. The only way to fix this problem is by removing the driver.
    Question: Is this the only way to get the monitoring software to work and is this a known issue?
    2. The new version of the monitoring software is unable to find the cameras using "search" functionality. The only way to configure tha camera is to do it manually.
    Question: Is this a known issue and how should I truobleshoot this?
    3. The cameras will not store the video feed on the Cisco NAS servers if the monitoring software is shut down. I remember from previous discussions that this should be possible but my partner is unable to get this fixed.
    Question: Are there any instructions for how to set up the cameras so that the video feed is still being stored on the NAS despite closing the monitoring software?
    4. In order to setup an ftp -feed to the NAS server, each camera needs to be configured manually. According to the partner this can not be done centrally using the monitoring software.
    Question: Is this really the case?
    5. According to the partner, it is not possible to use the monitoring software to view stored material that has been transferred using ftp.
    Question: Is this really the case?
    Many thanks in advance!
    Rasmus Almqvist, Cisco Systems Finland

    Hello and sorry for my delay in responding (Was on Vacation).
    1) I have seen the problem you refer to and the way I got around it was to change the screen resolution, believe it or not.  I remember lowering it to 1280x800 and even have it working at 1400x1050.   That is a weird problem, and I did report that to the BU who I believe told NUUO, but for now this is the only workaround.  Uninstalling and reinstalling will not help, as you realize now.
    2) The new Utility WILL FIND all SB Cameras it supports on the LAN.  So if your PC is connected to the LAN and can route (ping) the cameras, it can find them.  Note: xVC2300 require FW upgrade to V1.01 to make them work.   WVC200 will not be recognized at all.
    WAN Monitoring of course will require manual config and port forwarding to an alternate TCP port (PVC300) or an adjusted TCP port (xVC2300).
    3) Correct.  If your it off, it wont record.   This is really menat to be on a dedicated PC that should always be running, so is per design, and I do realize the old utility worked as well when off, but this new one is much improved in other areas and is still free :-)
    The Camera itself can send montion detection or scheduled recordings to an FTP Server (NSS2xxx, NSS3xxx) regardless of the presence of the SWVMS16, so yes, the camera can do this too (Simultaneous; dual stream; dual codec).
    4)  Setting up the FTP client on the Camera and the FTP Server on the NSS is done with a WIZARD or manual config on the elements and is totally separate from SWVMS16, which is an additional capability.
    5)  The SWVMS16 will only save information (video) it records, so is separate fromt he FTP sourced files from the camera. To access the FTP files, just add the NSS to your network neighborhood on the NSS and browse the files (CIFS or NFS) as you would if they were on your own PC.
    Steve D
    Systems Engineer
    Cisco Small Business Sales

  • I have a question related to the discussions forum,

    and here it is:
    In which thread should I post a technical question about the "Apple Care" warranty--it doesn't seem to have its own heading like the other products and services offered by Apple.
    All I really want to ask is, "Why is it that I'm being asked for thirty dollars for a repair that you acknowledge is covered by the additional warranty that I've purchased? I was under the impression that one purchases a warranty so that he or she will NOT have to pay for repairs covered by said warranty."
    Anyhow, please let me know where I may direct my question.

    Hello,
    I recommend using the phone instead of these forums. The forums are user-to-user and are much too vast for Apple employees to ferret out the user who have special warranty needs or issues.
    Your AppleCare plan should have come with a toll-free contact number. Talk to someone there and, if that does not give satisfaction, ask for a customer relations supervisor.

  • New to apple - basic questions about personalizing the dock

    Hi -
    Just got my MBP this week, and haven't used an apple before.
    I am curious how I can add and remove icons to/from the dock in a "permanent" fashion so that the format stays constant after I restart the computer. Basically, I'm never (or rarely) going to use some of the standard programs on the dock, and would much rather have my high-use programs (word, for instance) readily accessable on the dock.
    Thanks!

    Welcome to Apple!
    To add or remove items from the dock is very simple. You can simply drag items that are currently onto your dock either to your desktop or to the trash to get rid of them. (This won't get rid of the program or application itself, so don't worry!) Then, to add items, you can click and drag them from your applications folder (or whatever other folder they are in) to the spot on your dock you want them. You can also rearrange items on your dock by clicking and dragging.
    I hope this helps, and have fun personalizing!

  • Re:Question related to the Packet timeout error

    2010-03-08 09:11:05.273 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 15369 ms, 93 packets have timed-out, PauseRate=0.0040, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=12, Threshold=512
    2010-03-08 09:19:22.772 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 16448 ms, 111 packets have timed-out, PauseRate=0.0042, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=10, Threshold=512
    2010-03-08 09:30:52.651 Tangosol Coherence CE 3.2.2/371 <D5> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 28 ms, 20 packets have timed-out, PauseRate=0.0042, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=1, Threshold=512
    2010-03-08 09:37:50.583 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 10590 ms, 60 packets have timed-out, PauseRate=0.0043, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=5, Threshold=512
    2010-03-08 09:50:00.635 Tangosol Coherence CE 3.2.2/371 <D5> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 132 ms, 20 packets have timed-out, PauseRate=0.0043, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=1, Threshold=512
    2010-03-08 09:50:19.086 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 8954 ms, 73 packets have timed-out, PauseRate=0.0044, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=10, Threshold=512
    1. Will the packet retry if they get this timeout error?
    2. why is the logs timestamp and the packet timestamp is having very large gap nearly 1 day in some cases
    3.How long does the packet wait before it timesout ,i see the unresponsive time varies from 80ms to 10000 ms
    4.When do we get this warnings? is there any remedy?

    Wow Coherence 3.2, I haven't seen that in years, it is a pre-Oracle version. I'd suggest considering an upgrade to 3.5, which should be doable without even recompiling your code, just restart the cluster with new jars.
    But that isn't what you asked. This message was reworded in Coherence 3.3 and later to refer to these events not as packet timeouts, but as rescheduled packets do indicate that they are automatically retried.
    Regarding the timestamp that is the timestamp of the cluster member to which the packet was sent. A members timestamp is the time at which it joined the cluster.
    The default packet retry interval is 200ms, I.e. If we don't get an ACK to a packet in that time we will retransmit it. After 1m of this we will give up and remove either the sender or receiver from the cluster. The time intervals in the log messages are with respect to when the first ACK was expected, so a reported delay of 80ms means it took 280ms to delived a packet.
    These messages highlight periods of failed communication, and usually are the result of garbage collections. Some of yours are quite bad (multiple second), indicating that you've likely overcommited your java heap. The effect of the outages should be poor overall cluster performance and if bad enogh should also cause heavily GCing nodes to be kicked out of the cluster.
    Mark
    Oracle (Tangosol) Coherence

  • Basic question related to EKKO and EKPO

    Hi experts,
    I have invoice document header and line item data in an internal table(From RBKP and RSEG). From RSEG I have PO number(EBELN) and PO line item(EBELP).
    I want to find out the corresponding WBS element, costcenter and GL account of the PO number and the PO line item.
    Can anybody tell me which tables to select to fetch WBSelement(PS_PSP_PNR), glaccount(SAKNR) and costcenter(KOSTL).
    In which table I will find the link between EBELN,EBELP with KOSTL,SAKNR and WBS element?
    Regards,
    Sangeeta.

    SOLVED THE QUESTION MYSELF.
    THANKS EVERYBODY!!!

  • Basic Question related to future purchase of iMac

    Sorry for the stupid question but I just want to know if GarageBand is included as part of the software bundle included with purchasing a new iMac (Intel Duo Core). I was looking at a demo unit in the store and the iMac appeared to have it installed but the Apple.com store doesn't list it (unless I missed it).
    Edit: Stupid me, should have posted this under the iMac forum. Perhaps one of the moderators can my this post there.

    you should make sure you get a free upgrade later.
    To date there have been no free upgrades. If you buy a Mac After the new version of iLife has been released and it doesn't come with the latest version, you have been able to get it for $20.
    That's the way things have worked, there's no telling what will happen in the future, of course.

  • Question related to the mini display port adapters

    So I just bought my new macbook pro and soon I'll need to buy an adapter so I'm able to connect it to a projector or monitor using the more commonly used ports.
    I'll need VGA and DVI, but I don't think I'll spend 50£+ on two adapters, instead I thought I'd just buy the MDP -> DVI adapter and then use a DVI to VGA converter I have laying around... Would that do the trick?
    By the way this is the particular adapter i'm talking about:
    http://www.amazon.co.uk/gp/product/B002ERZGKQ/ref=ox_sc_sfl_title_1?ie=UTF8&m=A1 T39SA8AUFT6J
    And this is what my converter looks like:
    http://www.amazon.co.uk/Cabling4Less-DVI-VGA-HD15-Adaptor/dp/B000FII810/ref=sr_1 _1?ie=UTF8&qid=1310517204&sr=8-1
    Thanks in advance!

    I guess I'll buy the MDP to VGA (Which I'll need more at school for presentations) and later on the DVI one, to use at home. I'd use VGA at home as well but I prefeer the looks of the digital signal, it just has better quality.
    Thanks for sharing your experience, now I know what to go for

  • I have another question related to the connection and operation of FP-RLY-422

    1. I use one 25 VDC power to supply power for all the five fieldpoint modules(i.e. V and C terminals of FP-2000, FP-AI-110, FP-AO-200 and FP-RLY-422 are connected) However, as cascading power from neighboring bases or network modules defeats isolation between cascaded modules. I want to know whether the switching of one channel of a module have influence on the reading or switching of other channels in other modules. May I need to provide seperate power supply for FP-2000, FP-AI-100, FP-AO-200, and FP-RLY-422. If FP-RLY-422 was suppled by power of 120 VAC. Is it OK. I read the manual of FP-RLY-422 which specifies 3 A at 35 VDC or 250 VAC. If I used it to control three heaters of 500 w each and
    another 750 W. The current of each channel will be over 3 A. Can it be wired in this way?
    2. I use FP-RLY-422 to control four heaters. Now I connected it in this way. I connect it firstly to one of four solid state relays for each channel of the fieldpoint relay. The solid state relay is just a open/close relay the input is 3-32VDC and the output is 110-220VAC/25 A or 240 VAC/50 A. In this case, I build the VI for the operation of heater just in two statuses i.e. on and off. In this case the temperature can't be controlled very accurately. I want to know whether I can build a VI based on PID control based on the present wiring of my cable (i.e. fieldpoint relay control on/off solid relay to control operation of heater indiretly). In this case may I wire the fieldpoint relay FP-RLY-422 directly to the heater of 750 W? I understand the fieldpoint relay FP-RLY-422 in this way. It is a mechanical relay and I can heard the sound when it switched between normally open and normally closed.
    I think it have only two statuses i.e. on and off. In this case would you please explain how it contrl the output for the heater more accurately. Does it control by regulating the time being on/off?

    Bo,
    1a) All FieldPoint I/O modules are supplied operating power from the power supply in the network module. Certain modules may require additional power for sourcing power via outputs or inputs. Of the modules you list above, the following module requires external power; FP-AO-200. The following modules do not require external power wired to the V & C terminals; FP-AI-100, FP-AI-110, FP-TC-120, and FP-RLY-422. The V & C terminals are provided on modules that do not require them to simplify wiring (e.g. not requiring external terminal blocks if you have loop powered current transmitters).
    1b) The FP-RLY-422 is rated for up to 3 amps at 35 VDC or 250 VAC. Currents above 3 Amps may damage the relays, the traces on the terminal base and FP-RLY-422 PWBs, and wi
    ll cause overheating of the connectoer between the terminal base and the I/O module.
    2a) You can use the FP-RLY-422 with a PID control algorithm to control the heater. However, as relays have limited life expectancies and are simply on/off the control will not be a fine as some other options. What may be better is to use a FP-PWM-520 pulse width module to control the solid state relays. You still control the solid state relay via on/off, but in this case, the on/off time can be occuring relatively quickly, and you change the amount of on time vs the amount of off time, to control the power going in to the heater.
    Regards,
    Aaron

  • [BASIC question] what is the component I should use to fix an AC voltage and its current (in the same component)

    I need urgently to know how use a component which allows me to fix an AC voltage and its current.
    I can't use a resistance and an AC current in parallele for my application..
    Thanks a lot you will be very helpful !

    In general the way to fix both voltage and current requires a source and an impedance, but you say you do not want that solution.
    Please tell us exactly what your application is and why a current source in parallel with a resistance is unacceptable.
    Lynn

  • Question related to the use of multiple EVDRE's in one sheet

    I am trying to create an input schedule/report (input schedule that has history attached to it for users to reference) which would allow users to input their sales forecasts directly into BPC. However, our challenge is that we have roughly 5,000+ items and 3,000+ customers.  After many attempts, this input schedule will not run/re-fresh when using a single evdre report.  So, I tried to create 2 evdre's.  The first would pull only the customers that had data for the given time period for this particular sales person.  Then, the second evdre report references these customers using the evrng formula within the memberset.  This seems to work great, however, whenever I change the sales person in the current view, then I need to query the report twice (the first time it seems only the first evdre is populated with the current view change, while the second evdre report is queried but not updated for the info from the first.  Then when I query the report the second time the second evdre finally gets updated with the info from the first query.)  This is a slow process, as each time the query runs takes about 2 minutes.  If I break the first evdre report into a separate sheet, then the first query runs fine (in about 10 seconds).  Then, I can query the second report and wait the two minutes for that report.  However, this process is cumbersome (having users access and query two reports rather than one to get the info they need). 
    Can anyone offer any suggestions on how I can get this report/input schedule to work better?

    Hi Todd,
    I fully understand your dilema, we have a lot of development work in this area.  I would have to say though in our experience, the report/input schedule while nice to have has caused more issues than it really solved.  If I had my way, actuals and other memo fields would be removed from the input templates altogether.
    Things to consider are:  the getonly range (for your reported area) is fragile.  No matter how hard you try, a user will find a way to break your input template and over write actuals or other fields they shouldn't.  A fully formatted report is much better than a combined report/template..  Our users are pretty much sold on the all singing, all dancing report we created for them to tie out their inputed numbers.  The input template has become a vehicle to get the numbers in, and as such has been set up to allow for cross referencing their offline models leveraging vlookup, or index etc.
    I haven't helped you iin your quest, but I hope my findings over the past couple of years can help you decide if you cannot find the performance you are looking for.
    Cheers,
    Mark
    Edited by: Mark Tyson on Nov 24, 2009 1:55 PM

Maybe you are looking for

  • Do I need to keep the Capsule plugged in to my cable modem in order to use it for backup?

    The location of my cable modem is really inconvenient. I'd like to move the Capsule to a different room. Do I need to keep it connected to the cable modem in order to be able to use it as my Time Machine backup device?

  • How can I find out the date of manufacture for any particular iPod?

    I suppose the Subject Title says it all really! Someone told me that there was a website that list codes but I cannot find it anywhere. Any advice would be greatly appreciated.

  • Connect X200 to TV from VGA port

    I need to connect my Lenovo thinkpad X200 (not the tablet) to a TV. My TV is not an LCD but has an svideo input, 3 color standard RCA and Scart. Could someone advise if this model can be connected to a TV and what cable is required? Thank you

  • One of my vaults stopped updating

    Hi all, Any ideas what might be wrong? I have Aperture 3.0.3, library about 200GB. I've set up three vaults: one internal raid set and two USB disks. I had to do a restore a week ago and did that from the internal vault. No problems whatsoever. After

  • Backup/restore procedures

    We've got a user that accidently deleted sub pages. What kind of backup/restore procedures could be followed to allow us to selectively restore not only page groups, but sub-pages, etc. We'd like to get granular on this. What is recommended procedure