Join to address...some issue

Hi guys, I got two table to link but in one table I got this structure
Create table Forum (pippo varchar (10), sass int)
insert into forum values ('PAL_Discount', 1), ('PAL_Discount', 4), ('SoldOut', 6)
Create Table Appog (minny varchar(10), sth varchar(20))
insert into appog values ('PAL_PAL_Discount', 'Approved'), ( 'SoldOut', 'Pending')
As you can see I got PAL_ in one table and PAL_PAL_ in another table. They should be linked but in the same time I need to link even SoldOut with SoldOut so I can't use any Substring in my join...any advice?
Thanks
Ops..SQL 2008..i can't use iif..

I dont think your design is not a good one. Please evaluate the design seriously.
Check the below if that helps you:
Create table Forum (pippo varchar (20), sass int)
insert into forum values ('PAL_Discount', 1), ('PAL_Discount', 4), ('SoldOut', 6)
Create Table Appog (minny varchar(20), sth varchar(20))
insert into appog values ('PAL_PAL_Discount', 'Approved'), ( 'SoldOut', 'Pending')
Select * from Forum A
Inner join Appog B on Charindex(A.pippo,B.minny)>=1
Drop table Forum,Appog

Similar Messages

  • How can I recover an old/disused iCloud account. I was having some issues with my apple id so I restored my iPad, I am now stuck on the activation screen as I no longer use the iCloud account i used to set up the iPad and can't remember the address or pas

    How can I recover an old/disused iCloud account. I was having some issues with my apple id so I restored my iPad, I am now stuck on the activation screen as I no longer use the iCloud account i used to set up the iPad and can't remember the address or pas

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

  • Well Known Address (wka) issue

    Hi,
    I am hitting some issues whilst trying to configure and use multiple wkas in my cluster using Coherence 3.5.3.
    It appears that only the first WKA is being picked up from the configuration file, rather than the full list.
    For example, if I include the following in my tangosol-coherence-override.xml config file:
    <well-known-addresses>
    <socket-address id="1">
    <address>cyclone</address>
    <port system-property="tangosol.coherence.wka.port"></port>
    </socket-address>
    <socket-address id="2">
    <address>tornado</address>
    <port system-property="tangosol.coherence.wka.port"></port>
    </socket-address>
    </well-known-addresses>
    The logs will indicate that only a single wka is available (i.e. cyclone).
    If we try and bring proxy and storage nodes up on tornado they will not start up, as they will attempt to use cyclone.
    Does anyone have any ideas about where we might be going wrong?
    Cheers

    Hi Luk,
    Below is the tangosol-coherence-override.xml file I am using:
    Many Thanks
    <?xml version='1.0'?>
    <!-- Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
         Oracle is a registered trademarks of Oracle Corporation and/or its affiliates.
         This software is the confidential and proprietary information of Oracle Corporation.
         You shall not disclose such confidential and proprietary information and
         shall use it only in accordance with the terms of the license agreement you
         entered into with Oracle. This notice may not be removed or altered. -->
    <!DOCTYPE coherence SYSTEM "coherence.dtd">
    <!-- Note: This XML is set up for a development mode; search for "Note:"
         to find specific notes on changes suggested for production use. -->
    <coherence>
         <cluster-config>
              <member-identity>
                   <!-- Note: All members of the cluster must specify the same cluster name
                        in order to be allowed to join the cluster. -->
                   <cluster-name system-property="tangosol.coherence.cluster"></cluster-name>
                   <site-name system-property="tangosol.coherence.site"></site-name>
                   <rack-name system-property="tangosol.coherence.rack"></rack-name>
                   <machine-name system-property="tangosol.coherence.machine"></machine-name>
                   <process-name system-property="tangosol.coherence.process"></process-name>
                   <member-name system-property="tangosol.coherence.member"></member-name>
                   <role-name system-property="tangosol.coherence.role"></role-name>
                   <priority system-property="tangosol.coherence.priority"></priority>
              </member-identity>
              <unicast-listener>
                   <!-- Note: Specifying one or more "well known" addresses (WKA) will disable
                        all multicast communication. In this case, for a member to join the cluster
                        it will either have to be a WKA or there will have to be at least one WKA
                        member running. -->
                   <well-known-addresses>
                        <socket-address id="1">
                             <address>cyclone</address>
                             <port system-property="tangosol.coherence.wka.port"></port>
                        </socket-address>
    <socket-address id="2">
    <address>tornado</address>
    <port system-property="tangosol.coherence.wka.port"></port>
    </socket-address>
                   </well-known-addresses>
                   <!-- Note: The "localhost" setting may not work on systems that define
                        localhost as the loopback address; in that case, specify the machine name
                        or the specific IP address. -->
                   <address system-property="tangosol.coherence.localhost">localhost</address>
                   <port system-property="tangosol.coherence.localport">8088</port>
                   <port-auto-adjust system-property="tangosol.coherence.localport.adjust">true</port-auto-adjust>
                   <packet-buffer>
                        <maximum-packets>1428</maximum-packets>
                   </packet-buffer>
                   <priority>8</priority>
              </unicast-listener>
              <tcp-ring-listener>
                   <!-- Note: When encountering problems getting Coherence running on a system,
                        we suggest that this value be set to "false" until all other issues are resolved
                        in order to simplify trouble-shooting. -->
                   <enabled system-property="tangosol.coherence.tcpring">true</enabled>
                   <maximum-socket-closed-exceptions>2</maximum-socket-closed-exceptions>
                   <priority>6</priority>
              </tcp-ring-listener>
              <shutdown-listener>
                   <!-- Note: For production use, the suggested value is "none" (or "false")
                        unless testing has verified that the behavior on external shutdown is exactly
                        what is desired. -->
                   <enabled system-property="tangosol.coherence.shutdownhook">force</enabled>
              </shutdown-listener>
              <service-guardian>
                   <service-failure-policy>exit-cluster</service-failure-policy>
                   <!-- Note: For production use, the recommended value is equal to or greater
                        than the packet-delivery timeout. -->
                   <timeout-milliseconds system-property="tangosol.coherence.guard.timeout">65000</timeout-milliseconds>
              </service-guardian>
              <packet-speaker>
                   <priority>8</priority>
              </packet-speaker>
              <packet-publisher>
                   <packet-size>
                        <maximum-length>1468</maximum-length>
                        <preferred-length>1468</preferred-length>
                   </packet-size>
                   <packet-pool>
                        <maximum-packets>2048</maximum-packets>
                   </packet-pool>
                   <packet-delivery>
                        <resend-milliseconds>200</resend-milliseconds>
                        <!-- Note: For production use, the recommended value is the greater of
                             60000 and two times the maximum expected full GC duration. -->
                        <timeout-milliseconds>60000</timeout-milliseconds>
                        <heartbeat-milliseconds>1000</heartbeat-milliseconds>
                        <flow-control>
                             <enabled>true</enabled>
                             <pause-detection>
                                  <maximum-packets>16</maximum-packets>
                             </pause-detection>
                             <outstanding-packets>
                                  <maximum-packets>4096</maximum-packets>
                                  <minimum-packets>64</minimum-packets>
                             </outstanding-packets>
                        </flow-control>
                        <packet-bundling>
                             <maximum-deferral-time>1us</maximum-deferral-time>
                             <aggression-factor>0</aggression-factor>
                        </packet-bundling>
                   </packet-delivery>
                   <notification-queueing>
                        <ack-delay-milliseconds>16</ack-delay-milliseconds>
                        <nack-delay-milliseconds>1</nack-delay-milliseconds>
                   </notification-queueing>
                   <burst-mode>
                        <maximum-packets>0</maximum-packets>
                        <pause-milliseconds>10</pause-milliseconds>
                   </burst-mode>
                   <traffic-jam>
                        <maximum-packets>8192</maximum-packets>
                        <pause-milliseconds>10</pause-milliseconds>
                   </traffic-jam>
                   <packet-buffer>
                        <maximum-packets>32</maximum-packets>
                   </packet-buffer>
                   <priority>6</priority>
                   <!-- Note: Disabling the Publisher is used only by Java Real-Time Clients
                        to restrict their ability to use the cluster protocol (TCMP). When disabled,
                        a client is only be able to access clustered services via Extend proxies. -->
                   <enabled system-property="tangosol.coherence.tcmp.enabled">true</enabled>
              </packet-publisher>
              <incoming-message-handler>
                   <maximum-time-variance>16</maximum-time-variance>
                   <packet-pool>
                        <maximum-packets>2048</maximum-packets>
                   </packet-pool>
                   <use-nack-packets>true</use-nack-packets>
                   <priority>7</priority>
              </incoming-message-handler>
              <outgoing-message-handler>
                   <!-- Note: Uncomment the following section to activate gzip compression
                        for all network messages, which can help substantially with WAN and low-bandwidth
                        networks; for more information, see: http://www.tangosol.com/faq-coherence.jsp#filterconfig -->
                   <use-filters>
                        <!-- <filter-name>gzip</filter-name> -->
                   </use-filters>
              </outgoing-message-handler>
              <authorized-hosts>
                   <host-address></host-address>
                   <host-range>
                        <from-address></from-address>
                        <to-address></to-address>
                   </host-range>
              </authorized-hosts>
              <services>
                   <service id="1">
                        <service-type>ReplicatedCache</service-type>
                        <service-component>ReplicatedCache</service-component>
                        <use-filters>
                             <filter-name />
                        </use-filters>
                        <init-params>
                             <init-param id="1">
                                  <param-name>standard-lease-milliseconds</param-name>
                                  <param-value>0</param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>lease-granularity</param-name>
                                  <param-value>thread</param-value>
                             </init-param>
                             <init-param id="3">
                                  <param-name>mobile-issues</param-name>
                                  <param-value>false</param-value>
                             </init-param>
                             <init-param id="4">
                                  <param-name>request-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.replicated.request.timeout"></param-value>
                             </init-param>
                             <init-param id="5">
                                  <param-name>serializer</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="6">
                                  <param-name>guardian-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.replicated.guard.timeout"></param-value>
                             </init-param>
                        </init-params>
                   </service>
                   <service id="2">
                        <service-type>OptimisticCache</service-type>
                        <service-component>ReplicatedCache.Optimistic</service-component>
                        <use-filters>
                             <filter-name />
                        </use-filters>
                        <init-params>
                             <init-param id="1">
                                  <param-name>request-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.optimistic.request.timeout"></param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>serializer</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="3">
                                  <param-name>guardian-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.optimistic.guard.timeout"></param-value>
                             </init-param>
                        </init-params>
                   </service>
                   <service id="3">
                        <service-type>DistributedCache</service-type>
                        <service-component>DistributedCache</service-component>
                        <use-filters>
                             <filter-name />
                        </use-filters>
                        <init-params>
                             <init-param id="1">
                                  <param-name>standard-lease-milliseconds</param-name>
                                  <param-value>0</param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>lease-granularity</param-name>
                                  <param-value>thread</param-value>
                             </init-param>
                             <init-param id="3">
                                  <param-name>partition-count</param-name>
                                  <param-value>257</param-value>
                             </init-param>
                             <init-param id="4">
                                  <param-name>local-storage</param-name>
                                  <param-value system-property="tangosol.coherence.distributed.localstorage">true</param-value>
                             </init-param>
                             <init-param id="5">
                                  <param-name>transfer-threshold</param-name>
                                  <param-value system-property="tangosol.coherence.distributed.transfer">512</param-value>
                             </init-param>
                             <init-param id="6">
                                  <param-name>backup-count</param-name>
                                  <param-value system-property="tangosol.coherence.distributed.backupcount">1</param-value>
                             </init-param>
                             <init-param id="7">
                                  <param-name>backup-storage/type</param-name>
                                  <param-value system-property="tangosol.coherence.distributed.backup">on-heap</param-value>
                             </init-param>
                             <init-param id="8">
                                  <param-name>thread-count</param-name>
                                  <param-value system-property="tangosol.coherence.distributed.threads">5</param-value>
                             </init-param>
                             <init-param id="9">
                                  <param-name>key-associator/class-name</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="10">
                                  <param-name>key-partitioning/class-name</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="11">
                                  <param-name>partition-listener/class-name</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="12">
                                  <param-name>task-hung-threshold</param-name>
                                  <param-value system-property="tangosol.coherence.distributed.task.hung"></param-value>
                             </init-param>
                             <init-param id="13">
                                  <param-name>task-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.distributed.task.timeout"></param-value>
                             </init-param>
                             <init-param id="14">
                                  <param-name>request-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.distributed.request.timeout"></param-value>
                             </init-param>
                             <init-param id="15">
                                  <param-name>serializer</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="16">
                                  <param-name>backup-count-after-writebehind</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="17">
                                  <param-name>guardian-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.distributed.guard.timeout"></param-value>
                             </init-param>
                        </init-params>
                   </service>
                   <service id="4">
                        <service-type>Invocation</service-type>
                        <service-component>InvocationService</service-component>
                        <use-filters>
                             <filter-name />
                        </use-filters>
                        <init-params>
                             <init-param id="1">
                                  <param-name>thread-count</param-name>
                                  <param-value system-property="tangosol.coherence.invocation.threads">5</param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>task-hung-threshold</param-name>
                                  <param-value system-property="tangosol.coherence.invocation.task.hung"></param-value>
                             </init-param>
                             <init-param id="3">
                                  <param-name>task-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.invocation.task.timeout"></param-value>
                             </init-param>
                             <init-param id="4">
                                  <param-name>request-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.invocation.request.timeout"></param-value>
                             </init-param>
                             <init-param id="5">
                                  <param-name>serializer</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="6">
                                  <param-name>guardian-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.invocation.guard.timeout"></param-value>
                             </init-param>
                        </init-params>
                   </service>
                   <service id="5">
                        <service-type>LocalCache</service-type>
                        <service-component>LocalCache</service-component>
                        <init-params>
                             <init-param id="1">
                                  <param-name>lock-enforce</param-name>
                                  <param-value>false</param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>lock-wait</param-name>
                                  <param-value>0</param-value>
                             </init-param>
                        </init-params>
                   </service>
                   <service id="6">
                        <service-type>SimpleCache</service-type>
                        <service-component>SimpleCache</service-component>
                   </service>
                   <service id="7">
                        <service-type>Proxy</service-type>
                        <service-component>ProxyService</service-component>
                        <use-filters>
                             <filter-name />
                        </use-filters>
                        <init-params>
                             <init-param id="1">
                                  <param-name>acceptor-config</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>proxy-config</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="3">
                                  <param-name>thread-count</param-name>
                                  <param-value system-property="tangosol.coherence.proxy.threads">10</param-value>
                             </init-param>
                             <init-param id="4">
                                  <param-name>task-hung-threshold</param-name>
                                  <param-value system-property="tangosol.coherence.proxy.task.hung"></param-value>
                             </init-param>
                             <init-param id="5">
                                  <param-name>task-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.proxy.task.timeout"></param-value>
                             </init-param>
                             <init-param id="6">
                                  <param-name>request-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.proxy.request.timeout"></param-value>
                             </init-param>
                             <init-param id="7">
                                  <param-name>serializer</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="8">
                                  <param-name>guardian-timeout</param-name>
                                  <param-value system-property="tangosol.coherence.proxy.guard.timeout"></param-value>
                             </init-param>
                        </init-params>
                   </service>
                   <service id="8">
                        <service-type>RemoteCache</service-type>
                        <service-component>RemoteCache</service-component>
                        <init-params>
                             <init-param id="1">
                                  <param-name>initiator-config</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>serializer</param-name>
                                  <param-value></param-value>
                             </init-param>
                        </init-params>
                   </service>
                   <service id="9">
                        <service-type>RemoteInvocation</service-type>
                        <service-component>RemoteInvocation</service-component>
                        <init-params>
                             <init-param id="1">
                                  <param-name>initiator-config</param-name>
                                  <param-value></param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>serializer</param-name>
                                  <param-value></param-value>
                             </init-param>
                        </init-params>
                   </service>
              </services>
              <filters>
                   <filter id="1">
                        <filter-name>gzip</filter-name>
                        <filter-class>com.tangosol.net.CompressionFilter</filter-class>
                        <init-params>
                             <init-param id="1">
                                  <param-name>strategy</param-name>
                                  <param-value>gzip</param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>level</param-name>
                                  <param-value>default</param-value>
                             </init-param>
                        </init-params>
                   </filter>
                   <filter id="2">
                        <filter-name>symmetric-encryption</filter-name>
                        <filter-class>com.tangosol.net.security.PasswordBasedEncryptionFilter</filter-class>
                        <init-params>
                             <init-param id="1">
                                  <param-name>password</param-name>
                                  <param-value system-property="tangosol.coherence.security.password"></param-value>
                             </init-param>
                        </init-params>
                   </filter>
                   <filter id="3">
                        <filter-name>pkcs-encryption</filter-name>
                        <filter-class>com.tangosol.net.security.ClusterEncryptionFilter</filter-class>
                        <init-params>
                             <init-param id="1">
                                  <param-name>store</param-name>
                                  <param-value system-property="tangosol.coherence.security.keystore">./keystore.jks</param-value>
                             </init-param>
                             <init-param id="2">
                                  <param-name>keyAlias</param-name>
                                  <param-value>local</param-value>
                             </init-param>
                             <init-param id="3">
                                  <param-name>keyPassword</param-name>
                                  <param-value system-property="tangosol.coherence.security.password"></param-value>
                             </init-param>
                        </init-params>
                   </filter>
              </filters>
         </cluster-config>
         <logging-config>
              <destination system-property="tangosol.coherence.log">stdout</destination>
              <logger-name system-property="tangosol.coherence.log.logger"></logger-name>
              <severity-level system-property="tangosol.coherence.log.level">9</severity-level>
              <message-format>{date}/{uptime} {product} {version} &lt;{level}&gt;
                   (thread={thread}, member={member}): {text}</message-format>
              <character-limit system-property="tangosol.coherence.log.limit">1048576</character-limit>
         </logging-config>
         <configurable-cache-factory-config>
              <class-name>com.tangosol.net.DefaultConfigurableCacheFactory</class-name>
              <init-params>
                   <init-param>
                        <param-type>java.lang.String</param-type>
                        <param-value system-property="tangosol.coherence.cacheconfig">coherence-cache-config.xml</param-value>
                   </init-param>
              </init-params>
         </configurable-cache-factory-config>
         <cache-factory-builder-config>
              <class-name system-property="tangosol.coherence.cachefactorybuilder">com.tangosol.net.DefaultCacheFactoryBuilder</class-name>
         </cache-factory-builder-config>
         <management-config>
              <!-- Note: Setting this value to 'local-only', 'remote-only or 'all' will
                   require the javax.management.* classes be available on the classpath. -->
              <managed-nodes system-property="tangosol.coherence.management">all</managed-nodes>
              <!-- Note: Setting this value to 'true' will require the Enterprise Edition
                   license. -->
              <allow-remote-management system-property="tangosol.coherence.management.remote">true</allow-remote-management>
              <refresh-policy system-property="tangosol.coherence.management.refresh.policy">refresh-ahead</refresh-policy>
              <refresh-expiry system-property="tangosol.coherence.management.refresh.expiry">1s</refresh-expiry>
              <refresh-timeout system-property="tangosol.coherence.management.refresh.timeout">250ms</refresh-timeout>
              <read-only system-property="tangosol.coherence.management.readonly">false</read-only>
              <default-domain-name>AGP Cache</default-domain-name>
              <service-name>Management</service-name>
              <server-factory>
                   <class-name system-property="tangosol.coherence.management.serverfactory"></class-name>
              </server-factory>
              <mbeans xml-override="{tangosol.coherence.mbeans /custom-mbeans.xml}">
                   <mbean id="1">
                        <mbean-query>java.lang:*</mbean-query>
                        <mbean-name>type=Platform</mbean-name>
                        <enabled system-property="tangosol.coherence.management.jvm.all">true</enabled>
                   </mbean>
              </mbeans>
              <reporter>
                   <configuration system-property="tangosol.coherence.management.report.configuration">reports/report-group.xml</configuration>
                   <autostart system-property="tangosol.coherence.management.report.autostart">false</autostart>
                   <distributed system-property="tangosol.coherence.management.report.distributed">false</distributed>
              </reporter>
         </management-config>
         <security-config>
              <enabled system-property="tangosol.coherence.security">false</enabled>
              <login-module-name>Coherence</login-module-name>
              <access-controller>
                   <class-name>com.tangosol.net.security.DefaultController</class-name>
                   <init-params>
                        <init-param id="1">
                             <param-type>java.io.File</param-type>
                             <param-value system-property="tangosol.coherence.security.keystore"></param-value>
                        </init-param>
                        <init-param id="2">
                             <param-type>java.io.File</param-type>
                             <param-value system-property="tangosol.coherence.security.permissions"></param-value>
                        </init-param>
                   </init-params>
              </access-controller>
              <callback-handler>
                   <class-name />
              </callback-handler>
         </security-config>
         <license-config>
              <edition-name system-property="tangosol.coherence.edition">GE</edition-name>
              <license-mode system-property="tangosol.coherence.mode">dev</license-mode>
         </license-config>
    </coherence>

  • BlackBerry Experts help save my business...address book issues

    I have BB 8800 due to somes issues I had to taken a backup on 14th when I try to restore from the file, it pulls everything except address book. I am a marketing guy so my business runs on the 550+ contacts that I have...in the restore.
    The backup shows the address book file size as 36bytes (not sure why thats so low) but the restore shows blank for # of entries
    - Till now I have tried checking the filters in the address book ( personal and business)
    - when I go to the contacts size on my BB it shows 0 entries
    Please help me....

    Hi and Welcome to the Forums!
    This community is extremely active...but the "view count" is not reliable...if someone does a search and their search criteria gets a "hit" in your post, that will increment your view count...but it does not mean that anyone actually looked at your post.
    Further, this is a community -- of volunteers...it has nothing whatsoever to do with your formal support channel.
    Last -- for whatever reason, it sounds like your backup file is not valid for your contacts. You should try your next most recent backup...hopefully that's not too far back in the past. Regular backups aren't an option in best practices.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • New user - Some issues I want to resolve

    I purchased my mac 2nd hand about 6 weeks ago (24" Mid 2007, 2.4GHz Core 2 Duo, 4GB RAM) and got it home and set it up and everything has been working flawlessly. Also purchased a magic mouse & trackpad which have also been working fine.
    I received an email last night from a friend with some PDF docuements for work, and since then I have been having some issues. Dont know if this has any relevance whatsoever or just completely coincidence.
    Issues I have encountered so far are :
    1) I noticed was my trackpad was real laggy, to the point of unusable.
    2) I can hear a buzz/hum which I never used to hear, hard to tell if it's the optical drive or hard drive, but something sounds like it is constantly spinning - im a bit anal about things like this and it really bugs me, especially as it wasnt doing this before
    3) My WiFi connection is proving to be problematic coming from sleep / cold boot. If I click on the WiFi icon in the taskbar it will not display any available networks and just says "looking for networks". If I then click on "Join network" > "Show Networks" this then shows me available networks. If I then choose my network, it takes a long time (about 30-60 seconds) to display the WPA2 password box. I then enter my password and I see the icon in the taskbar goto a full 5 bars, but the screen where I enter my password still says "Connecting..." and eventually results in a "Connection failed!" even though the connection is actually there and I can browse the internet.
    4) Generally feeling "laggy", eg opening System Preferences can take 30+ seconds
    What I have tried to do to fix these problems
    1) Unpaired and repaired which seems to of rectified the issue
    2) Finding it hard to differentiate if the hum is from optical or hard disc. If I hold my hand on the back of my Mac I can feel vibration close to the centre, by the stand support.
    Have tried running Disk Checker to see if it identifies any S.M.A.R.T errors but all came back ok. It did find some faults with Disk Permission's which I fixed.
    3) This is the one that is really annoying me and have tried several recommendations found on the internet, including ;
    Turning wifi on/off
    Turning router on/off
    Changing settings in energy saver
    Removing saved wifi networks / re-adding
    Removing passwords from keychain
    Updating to OS X 10.8.5
    4) As I am a new user, I do not fully understand what I am doing yet, but I have opened up the Activity Monitor and noticed that there is a high CPU load quite consistently (also back of mac appears quite hot to the touch). I have noticed that parentalcontrolsd seems to be consuming a lot of CPU time, even though I dont have parental controls on. It is usally 80%+ CPU. Also ocspd appears to be quite a cpu hog too (constant 20-50%)
    This all happened on Friday 13th! lol
    Any help with any of the above would be appreciated.

    In Activity Monitor, select the processes with the high CPU use and quit them using the Quit button at the top left.
    Also try a restart.

  • Mail and Address Book Issues in 10.4.5

    Hello:
    I recently updated to 10.4.5 and have some issues with mail and address book.
    1. MAIL: All the mail on my machine has been "reformatted" for lack of a better term. Each line in a paragraph is about 1.5" above the next. This is the same for all messages. This just appeared after I updated to 10.4.5. Suggestions? Has anyone else experienced this? If so, what was the solution?
    2. ADDRESS BOOK: All of my addresses just have the name. Apparently, everything else has disappeared (Phone, e-mail, notes, etc.) Ex: John Smith... That is all I have for all 346 records. Naturally, I have the data backed up on .mac, but before I re-sync (assuming that works) I want to resolve the issue to prevent it from happening again. I have tried renaming files in the user>library>application support>address book from AddressBook.data.previous to just AddressBook.data to no avail. Any suggestions?
    Thanks in advance!
    Richard
    G5 1.8 Single   Mac OS X (10.4.5)  
    G5 1.8 Single   Mac OS X (10.4.5)  

    You may want to review recent threads about similar problems in this forum before re-syncing your data with .Mac. Yes, it might work, but not the way you expect...
    Lost all of my contacts in Address Book
    address book completely empty!
    iMac G5 17" (iSight)   Mac OS X (10.4.4)  

  • Some issues of BPM 11g R1

    Hi,
    I'm testing Oracle BPM Suite 11g R1. Below are some issues to be considered :
    1. Organization Unit issue - In BPM Workspace, after creating an Organization Unit, we've assigned members and a manager. As all the organizational members (and only them) should be able to see the process, in our case the manager and some of the Organization users still not be able to see the process?
    So, how can we associate a process to the organizational unit that we have created before?
    Otherwise, is there any difference between Organization Unit that is created in JDeveloper and deployed with the process and the one created in the BPM Workspace after the deployment of the process? What is the best way to create an Organization unit?
    2. Process Owner issue - Process Owners are responsible for the overall supervision of the running business process. In our case, the participant with the process owner role doesn't see it's process. Is there any others parameters to add in BPM Workspace when defining the process owner?
    3. BPM Composer errors:
    - After converting a BPM project P1 to a template and published it to the BPM MDS, I created a new project, P2, based on the template in BPM Composer. I'm able to edit the process within the project P2 based on the edit policies defined by the template in BPM Composer. However, no change (update) on the P2 is not taken into account when republishing to MDS. Moreover, the deployment of P2 from BPM Composer to BPM runtime doesn't work?
    - The deployment attempts of processes from BPM Composer to the running environment failed every time, and we get the following error message:
    “Deployment Failed: Error occurred during deployment of component: RequestHello to service engine: implementation.workflow, for composite: HelloBPM: ORABPEL-30124”
    The server log is :
    Caused By: ORABPEL-30124
    Error while deploying task metadata.
    the template namespace http://xmlns.oracle.com/HelloWorld/HelloBPM/RequestHello is already in use as a task namespace.
    Check if a template project with namespace http://xmlns.oracle.com/HelloWorld/HelloBPM/RequestHello was deployed earlier. Please avoid deploying template projects. Please use a different namespace for the current task definition to fix the problem.The task flow associated with the template project will not work with this project anymore if the namespace is changed.
    Atoracle.bpel.services.workflow.metadata.impl.TaskMetadataServiceUtil.validateMetadata(TaskMetadataServiceUtil.java:454)
    at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:806)
    at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:332)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deployComponents(CompositeDeploymentConnection.java:237)
    at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deploy(CompositeDeploymentConnection.java:94)
    4. EXTERNAL LDAP - For testing purpose, I have installed an external LDAP (OpenLdap Server witch is installed in a different machine from the one where BPM server is running). BPM would then use this LDAP for its authorization and management.
    However, when I try to reassign to users defined in my external LDAP it doesn't work. Also, the ad hoc route doesn't add the new assigned at all?
    So, is there any detailed documentation about the integration of an external LDAP (Other than OID) with OBPM Directory?
    5. Process Deployment exception - The following deployment error often occurs, within BPM Workspace, when we try to start an instance of the oldest version of the deployed processes. In our case we have 3 differents process versions.
    +“Cannot create instance in process 'default/HelloBPM!1.1*soa_c21b4e28-c34e-4e8f-88f5-58c45f35b45c/HelloProcess'".+
    The server log is:
    Process not found.
    the BPMN process "HelloProcess" with revision "1.1" is not loaded.
    The process was not initialized properly, or the process was disabled.
    Set the logging level to debug mode, check the log for the underlying exception trace related to this process loading problem.at com.collaxa.cube.engine.deployment.DeploymentManager.getProcess(DeploymentManager.java:135)
    at com.collaxa.cube.engine.deployment.DeploymentHelper.lookupProcess(DeploymentHelper.java:146)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.getInboundOperationType(DeliveryHandler.java:748)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.post(DeliveryHandler.java:85)
    at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.post(CubeDeliveryBean.java:683)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingRefle...
    Regards,
    Hanine

    Hi,
    Responses to your questions
    (1) You need to associate Organization Unit with your BPM Project. To do this, go to BPM Studio/Organizational Chart/ From Repository option. Connect to your Application Server and select the Organization Unit. This will associate OU to the BPM Project. Please note that when an OU is defined, the member will be able to see only the process tasks - only if he is associated to the OU and the swimlane role.
    (2) Process owner does not automatically become the owner of the tasks associated with the process. This is a limitation and will be addressed in a future release.
    (3) Deployment error due to duplicate task forms is a known issue. Currently the product generates unique namespaces for User Interfaces for the different Project variants dervied from the same "Project Template". However, it does not check to see if a Project with User Interfaces with conflicting namespaces is already deployed. To get around your issue, first undeploy the Sales Quote Project ---- then you do deploy the Project variants.
    (4) Oracle BPM Suite uses Oracle Platform Security Services (OPSS) for LDAP integration. We have forwarded your request to the OPSS group and awaiting a response.
    (5) Undeploy and then do a fresh deploy. This bug will be fixed soon.
    - regards,
    Meera

  • Some issues while testing EJB3 API

    I'm running some EJB3 peristence test outside standalone and I'm running
    into some issues that I did not see running the same code against the
    Hibernate EntityManager implementation.
    I'm currently using the Kodo 4.0EA3 download. Any help is appreciated.
    I have the following table:
    Table "public.beers"
    Column | Type | Modifiers
    id | integer | not null
    brand | character varying(50) |
    price | numeric(15,2) |
    Indexes:
    "beers_pkey" PRIMARY KEY, btree (id)
    With the following class:
    package com.springdeveloper.model;
    import javax.persistence.*;
    import java.io.Serializable;
    @Entity
    @Table(name="BEERS")
    public class Beer implements Serializable {
    private Long id;
    private String brand;
    private Double price;
    public Beer() {
    public Beer(Long id) {
    this.id = id;
    @Id(generate=GeneratorType.AUTO)
    @Column(name="ID", nullable=false)
    public Long getId() {
    return id;
    public void setId(Long id) {
    this.id = id;
    public String getBrand() {
    return brand;
    public void setBrand(String brand) {
    this.brand = brand;
    public Double getPrice() {
    return price;
    public void setPrice(Double price) {
    this.price = price;
    public String toString() {
    return "[" + id + "] " + brand + " " + price;
    Issues:
    =======
    1) If I don't have a column named type I get an error -
    Exception in thread "main" <2|false|4.0.0EA3> kodo.util.StoreException:
    ERROR: column t0.type does not exist {prepstmnt 14211340 SELECT t0.ID,
    t0.TYPE, t0.brand, t0.price FROM BEERS t0 WHERE (t0.ID = ?) [reused=0]}
    [code=0, state=42703]
    Any way around this since there is no inheritance structure involved?
    2) If I don't specify a fully qualified name for the first query I get
    this error:
    33 INFO [main] kodo.Runtime - Starting Kodo 4.0.0EA3
    74 DEBUG [main] kodo.Runtime - License capabilities: "Kodo Standard
    Edition,Kodo Community Edition,Kodo Evaluation Edition,Datacache Plug-
    in,Custom Result Object Providers,Custom Mappings,Enterprise
    Databases,Query Extensions,Performance Pack,Statement Batching,Kodo
    Enterprise Edition,Managed Environment,Developer Tools,Custom
    DBDictionaries" Expiration: "11/22/05 7:00 PM" Maintenance expiration:
    "11/22/05 7:00 PM"
    496 INFO [main] kodo.jdbc.JDBC - Using dictionary class
    "kodo.jdbc.sql.PostgresDictionary".
    1007 INFO [main] kodo.MetaData - Found 3 classes with metadata in 0
    milliseconds.
    Exception in thread "main" <4|false|4.0.0EA3>
    kodo.persistence.ArgumentException: Could not resolve entity named "Beer".
         at kodo.query.ejbql.EJBQLParser.populate(EJBQLParser.java:61)
         at kodo.query.ExpressionStoreQuery.populateFromCompilation
    (ExpressionStoreQuery.java:129)
         at kodo.query.QueryImpl.compileForCompilation(QueryImpl.java:682)
         at kodo.query.QueryImpl.compileForExecutor(QueryImpl.java:713)
         at kodo.query.QueryImpl.getOperation(QueryImpl.java:1624)
         at kodo.query.DelegatingQuery.getOperation(DelegatingQuery.java:136)
         at kodo.persistence.QueryImpl.execute(QueryImpl.java:231)
         at kodo.persistence.QueryImpl.getSingleResult(QueryImpl.java:258)
         at KodoTest.main(KodoTest.java:16)
    If I specify a fully qualified name for the EJBQL the first time I query
    then I can just use 'Beer' in subsequent queries. It doesn't help to
    specify '@Entity(name="Beer")' in the persistent class either.
    Here is my query:
    EntityManager em = emf.createEntityManager();
    em.getTransaction().begin();
    Beer b = (Beer)em.createQuery(
    "select object(o) from Beer o where o.id = :id")
    .setParameter("id", new Long(2))
    .getSingleResult();
    System.out.println("Beer: " + b);
    em.getTransaction().commit();
    This works but is kind of ugly:
    Beer b = (Beer)em.createQuery(
    "select object(o) from com.springdeveloper.model.Beer o where
    o.id = :id")
    .setParameter("id", new Long(2))
    .getSingleResult();
    And here is my peristence.xml:
    <?xml version="1.0"?>
    <entity-manager>
    <name>BeerDistributor</name>
    <provider>kodo.persistence.PersistenceProviderImpl</provider>
         <properties>
              <!--
              To evaluate or purchase a license key, visit http://
    www.solarmetric.com
              -->
              <property name="kodo.LicenseKey" value="????-????-????-????-????"/>
    <property name="kodo.PersistentClasses"
    value="com.springdeveloper.model.Beer,
    com.springdeveloper.model.Customer,
    com.springdeveloper.model.Order"/>
    <!--
    Connection configuration.
    -->
              <property name="kodo.ConnectionURL" value="jdbc:postgresql://
    localhost/test"/>
              <property name="kodo.ConnectionDriverName"
    value="org.postgresql.Driver"/>
              <property name="kodo.ConnectionUserName" value="trisberg"/>
              <property name="kodo.ConnectionPassword" value="????"/>
              <!--
              To disable logging, set value to 'none'.
              To use Log4J, configure Log4J appropriately, and set value to
    'log4j'.
              To view trace of all SQL being executed, add 'SQL=TRACE' to value
    below.
              -->
              <property name="kodo.Log" value="DefaultLevel=INFO, Runtime=DEBUG,
    Tool=INFO"/>
         </properties>
    </entity-manager>
    Thanks,
    Thomas Risberg

    1) If I don't have a column named type I get an error -This, unfortunately, is something that we need to clarify in the spec
    itself. Currently, the discriminator value and column for a class have
    default values in the spec. So technically, every base class has a
    discriminator column according to spec defaults.
    Obviously this isn't practical. In fact Kodo already turns off
    automatic discriminator columns for vertical and table-per-class
    inheritance unless you explicitly give a discrimintor value or column.
    So one way to not use a discriminator column in Kodo right now is to set
    your inheritance type to JOINED or TABLE_PER_CLASS. Another way is to
    use Kodo's kodo.persistence.jdbc.DiscriminatorStrategy annotation, which
    allows you to name a non-standard or custom discriminator strategy.
    Setting this annotation's value to "final" (an alias for Kodo's
    kodo.jdbc.meta.strats.NoneDiscriminatorStrategy) will indicate that the
    class doesn't need a discriminator because it won't be extended.
    We will try to get this ironed out in future versions of the spec.
    If I specify a fully qualified name for the EJBQL the first time I query
    then I can just use 'Beer' in subsequent queries. It doesn't help to
    specify '@Entity(name="Beer")' in the persistent class either.This sounds like a bug in our early access implementation. I have a
    feeling it only occurs with property access entities -- if you change
    your entity to use field access (which also means using Kodo
    enhancement), I think you'd see the problem go away. I think it might
    also go away if you performed some other persistence operation on a Beer
    entity (such as a by-id lookup) before attempting the query. We'll make
    sure to have this fixed for our next release. Thanks for the report.

  • SAP upgrade to address 999 issue ?

    Hello All..looking for some insight and help!
    I was told (can't verify) that the new release/upgrade to SAP would be addressing the issue (that I KNOW everyone has run into) of the 999 line limitation on Journal Entries.
    Does anyone know if this is TRUE? when is the potential roll out? I can not find anything to verify this - and currently the work around is gruesome to split large files.
    ANY INSIGHT would be appreciated...

    HI,
    Still in higher versions also There is a limit of (999) line items which can be posted per FI document.  This is because the line item number (BSEG-BUZEI) field length is defined as (3) numeric positions, i. e., (999) line items.
    The most commonly used workarounds are as follows:
    1)  Implement FI summarization (per note 36353).     But as you wrote, you cannot accept this kind of solution.
    2)  Cancel the original billing document and split it into smaller documents using different payment terms but actually with the same terms.
    This will avoid the (999) line item limit for FI postings. notes 11162 and 111813 with reference to invoice splitting.
    Please assign points if it useful.
    Regards
    Ravinagh Boni

  • TS1398 Got the dreaded no wifi on my wife's iPhone 4S. Wifi greyed out and no luck with the reset network instructions. Why isn't Apple addressing this issue? We are a family of Apple product users, 2 ipads, an ipad mini, 4 iPhones but one isn't working!

    Got the dreaded no wifi on my wife's iPhone 4S. Wifi greyed out and no luck with the reset network instructions. Why isn't Apple addressing this issue? We are a family of Apple product users, 2 ipads, an ipad mini, 4 iPhones but one isn't working! Issue began whenwe upgraded the operating system.....
    Come on Apple.....get this issue sorted out!

    Just out of warranty. This is a software issue. everything was ok until the software update. Apple just need to sort it out.

  • [Xorg] some issues with i915 and gdm

    Hi all
    I'm having some issues starting the X server. I don't know how it happened, my netbook was on standby. After I turned it on, there were loud beep sounds coming out of my computer and the screen was completely black so I shut it down. After I turned it back on I got following issue:
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,135094 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,137406 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,135166 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,135076 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,474816 seconds
    gdm-binary[4585]: WARNING: GdmDisplay: display lastet 0,141715 seconds
    gdm-binary[4585]: WARNING: GdmLocalDisplayFactory: maximum number of X display failures reached: check X server log for errors
    Ok so I tried to start X only:
    Build Date: 17 February 2010 07:52:42PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 19 21:36:21 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (EE) intel(0): No kernel modesetting driver detected.
    (EE) Screen(s) found, but none have a usable configuration.
    Fatal server error:
    no screens found
    Please consult the The X.org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    then, I upgraded my system (there was a kernel update) and now I get this when I start X:
    Build Date: 17 February 2010 07:52:42PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 19 21:45:33 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    FATAL: Error inserting i915 (/lib/modules/2.6.32-ARCH/kernel/drivers/gpu/drm/i915/i915.ko): Unknown symbol in module, or unknown parameter (see dmesg)
    (EE) intel(0): No kernel modesetting driver detected.
    (EE) Screen(s) found, but none have a usable configuration.
    Fatal server error:
    no screens found
    Please consult the The X.org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    I don't know what to do I tried to search the net but I couldn't find much helpful information..
    --blackdeagle

    I don't think there is a problem with the x.org configuration so I hope you backed it up. This line indicates the problem:
    (EE) intel(0): No kernel modesetting driver detected.
    Make sure you haven't disabled KMS (like using i915.modeset=0 in /boot/grub/menu.lst).

  • Som issues with Nvidia GTX960 - dmesg error output posted

    I have some issues with icons not showing up, eg. in pamac. Just red crosses or what it's called.
    Here is my dmesg error output.
    $ dmesg --level=err,warn
    [ 0.000000] ACPI: RSDP 0x00000000DD7F6000 000024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 0x00000000DD7F6080 00007C (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000DD8041A8 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 0x00000000DD7F6198 00E009 (v02 ALASKA A M I 00000031 INTL 20091112)
    [ 0.000000] ACPI: FACS 0x00000000DDD45080 000040
    [ 0.000000] ACPI: APIC 0x00000000DD8042B8 000092 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000DD804350 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: LPIT 0x00000000DD804398 00005C (v01 ALASKA A M I 00000000 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000DD8043F8 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 0x00000000DD804938 000AD8 (v01 PmRef CpuPm 00003000 INTL 20091112)
    [ 0.000000] ACPI: MCFG 0x00000000DD805410 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x00000000DD805450 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000DD805488 00036D (v01 SataRe SataTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 0x00000000DD8057F8 0034E1 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
    [ 0.000000] ACPI: BGRT 0x00000000DD808D38 000038 (v00 ALASKA A M I 01072009 AMI 00010013)
    [ 0.006274] ACPI: All ACPI Tables successfully acquired
    [ 0.014978] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    [ 0.014978] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.016204] Ignoring BGRT: invalid status 0 (expected 1)
    [ 0.102300] #2 #3 #4 #5 #6 #7
    [ 0.263542] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.265355] ACPI: Dynamic OEM Table Load:
    [ 0.265358] ACPI: SSDT 0xFFFF8807FA42A800 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.265733] ACPI: Dynamic OEM Table Load:
    [ 0.265736] ACPI: SSDT 0xFFFF8807FA419800 0005AA (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.266134] ACPI: Dynamic OEM Table Load:
    [ 0.266135] ACPI: SSDT 0xFFFF8807FA46DA00 000119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 0.267060] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
    [ 0.267063] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
    [ 0.285136] ACPI: Enabled 5 GPEs in block 00 to 3F
    [ 0.793801] ata1.00: supports DRM functions and may not be fully accessible
    [ 0.794140] ata1.00: supports DRM functions and may not be fully accessible
    [ 0.794388] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20150204/psargs-359)
    [ 0.794391] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff8807fe0d19b0), AE_NOT_FOUND (20150204/psparse-536)
    [ 0.795480] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20150204/psargs-359)
    [ 0.795482] ACPI Error: Method parse/execution failed [\_SB_.PCI0.SAT0.SPT5._GTF] (Node ffff8807fe0d19b0), AE_NOT_FOUND (20150204/psparse-536)
    [ 1.018384] usb 3-3: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.018386] usb 3-3: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.040606] systemd-journald[181]: Failed to set file attributes: Inappropriate ioctl for device
    [ 1.114596] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 1.115441] ACPI Warning: SystemIO range 0x000000000000F000-0x000000000000F01F conflicts with OpRegion 0x000000000000F000-0x000000000000F00F (\_SB_.PCI0.SBUS.SMBI) (20150204/utaddress-254)
    [ 1.230333] nvidia: module license 'NVIDIA' taints kernel.
    [ 1.230335] Disabling lock debugging due to kernel taint
    [ 1.235547] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 352.21 Tue Jun 9 21:53:31 PDT 2015
    [ 2.072087] NVRM: Your system is not currently configured to drive a VGA console
    [ 2.072090] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    [ 2.072091] NVRM: requires the use of a text-mode VGA console. Use of other console
    [ 2.072091] NVRM: drivers including, but not limited to, vesafb, may result in
    [ 2.072092] NVRM: corruption and stability problems, and is not supported.
    My hardware is a desktop with i7 4790K (4 cores with HT enabled) ASUS Z87-K motherboard, 32 GB Corsair 1600 MHz RAM. Samsung 850 PRO 1 TB SSD.
    My inxi -F
    System: Host: archie Kernel: 4.0.5-1-ARCH x86_64 (64 bit) Desktop: Xfce 4.12.2 Distro: Arch Linux
    Machine: System: ASUS product: All Series
    Mobo: ASUSTeK model: Z87-K v: Rev X.0x serial: 130612439103584
    Bios: American Megatrends v: 1402 date: 11/05/2014
    CPU: Quad core Intel Core i7-4790K (-HT-MCP-) cache: 8192 KB
    clock speeds: max: 4400 MHz 1: 4000 MHz 2: 4002 MHz 3: 4000 MHz 4: 4000 MHz 5: 4256 MHz
    6: 4001 MHz 7: 4002 MHz 8: 4002 MHz
    Graphics: Card: NVIDIA GM206 [GeForce GTX 960]
    Display Server: X.org 1.17.2 driver: nvidia tty size: 108x41 Advanced Data: N/A for root
    Audio: Card-1 Intel 8 Series/C220 Series High Definition Audio Controller driver: snd_hda_intel
    Card-2 NVIDIA Device 0fba driver: snd_hda_intel
    Sound: Advanced Linux Sound Architecture v: k4.0.5-1-ARCH
    Network: Card: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller driver: r8169
    IF: enp3s0 state: up speed: 1000 Mbps duplex: full mac: <masked>
    Drives: HDD Total Size: 1024.2GB (4.4% used) ID-1: /dev/sda model: Samsung_SSD_850 size: 1024.2GB
    Partition: ID-1: / size: 48G used: 13G (27%) fs: ext4 dev: /dev/sda3
    ID-2: /home size: 769G used: 154M (1%) fs: ext4 dev: /dev/sda4
    ID-3: /boot size: 511M used: 25M (5%) fs: vfat dev: /dev/sda1
    ID-4: swap-1 size: 33.55GB used: 0.00GB (0%) fs: swap dev: /dev/sda2
    Sensors: System Temperatures: cpu: 29.8C mobo: 27.8C
    Fan Speeds (in rpm): cpu: N/A
    Info: Processes: 172 Uptime: 10 min Memory: 1133.0/32119.5MB Client: Shell (sudo) inxi: 2.2.25
    Have I missed something to post?
    Last edited by dockland (2015-06-17 20:30:48)

    I read that this line in my case
    [ 1.115441] ACPI Warning: SystemIO range 0x000000000000F000-0x000000000000F01F conflicts with OpRegion 0x000000000000F000-0x000000000000F00F (\_SB_.PCI0.SBUS.SMBI) (20150204/utaddress-254)
    is a bug and unfixable.
    What does that mean and why is it "unfixable"? Is that some hardware that is not compatible with Arch at all?

  • Some issues regarding JEE adapter module development in NWDS 7.1

    Hi guys,
    I'm trying to develop my first AM in NWDS 7.1 and I'm facing some issues which I'd be happy if you would help me out with.
    1, I'm going step by step according this document http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c0b39e65-981e-2b10-1c9c-fc3f8e6747fa&overridelayout=true  but I have an information Warning "Classpath entry PI_AF_LIBS/... (all PI AF 7.1 classes) will not be exported or published. Runtime ClassNotFOundExcpetion may result". Why am I getting this if I have checked the checkboxes with these libraries in Project->Preferences->Java Build Path->Order and Export(tab)? If this checked I'd say it will be exported with the project.
    2, I need to create an SDA file to deploy the module, because the server is not available directly. So first if I'm not wrong I need to have an EAR file which I can use to create the SDA. But how can I get this EAR file? This document describes only direct way of deployment.
    Thanks in advance,
    Olian

    1. The jars need to be referenced in the project build path to enable the compilation of the code
        The warning can be overlooked as the jars are present in PI.
    2. The EAR Project that gets created (as per the description in the referred document) can be exported to the get the necessary
        ear file.

  • I am experiencing some major problems with my MacBook Pro. I have had some issues with it turning on/off at random times, but today, when starting, I get the grey start-up screen and a recovery bar. After filling in approx 1/4 of the way, the machine dies

    I am experiencing some major problems with my MacBook Pro. I have had some issues with it turning on/off at random times, but today, when starting, I get the grey start-up screen and a recovery bar. After filling in approx 1/4 of the way, the machine dies. After starting it in recovery mode, it will not allow me to download OS X Mavericks- it says the disk is locked. Any ideas? I do not have a back-up and do not want to erase everything before I have explored my options. Help?

    try forcing internet recover, hold 3 keys - command, option, r - you should see a spinning globe
    most people will tell you to do both pram and smc resets (google) and if you still have issues, either clean install (easy) or troubleshoot (hard)

  • Some issues in oracle Report need to resolved in BI Publisher

    Hi ,
    reallay i'm new in Bi Publisher technology (11g)
    and i have report bulit using ( oracle Reports Desginer)
    now i want to change to BI publisher
    but some issues faces me
    like
    1- Formula Columns
    2- PlaceHolder
    3- Format trigger
    4- Blob data type store images --> how to show the image
    5- Lexical Parameters ( ex : &p_where)
    i don't like to use converter i want to make new report in BI Publisher
    how can i solve these issues in Bi Publisher 11g .

    >
    i don't like to use converter i want to make new report in BI Publisher
    >
    you can try to convert oracle reports to bip and you'll see answer to some questions
    >
    how can i solve these issues in Bi Publisher 11g .
    >
    lets start from http://www.oracle.com/technetwork/middleware/bi-publisher/documentation/index.html
    Some questions to BI-Publisher
    Some questions to BI-Publisher

  • HT1222 I have an iPhone and new iPad. Epost mail will not open on my devices. Epost says Safari is not compatible with epost. Please address this issue. It is most annoying.

    I have an iPhone and new iPad. Epost mail will not open on my devices. Epost says Safari is not compatible with epost. Please address this issue. It is most annoying.

    Hello:
    You need to contact "epost."  The issue is not an Apple issue....the epost software needs, I assume, to be updated.
    Barry

Maybe you are looking for

  • How do I save a pdf form that can be updated by multiple users

    I work for a company that is trying to digitize all of their paper forms. As I am creating these forms, I need to know how one person can open and fill in information, then email the form to another person who can continue to fill out the same form.

  • How to create multiple page pdf file

    Hello, Sometimes I need to create multiple (more precisely double) page pdf file from another pdf file to reduce the printing cost of the document. For this I crop the single page document and then print it in a double page pdf file (in landscape). B

  • Including jar files in the classpath while compiling

    While I compile, I want my class to be able to find the two jar files that are in the same directory as the class that I'm trying to compile. c:\brandNew\src\myClass.java c:\brandNew\src\lsw-services.jar c:\brandNew\src\jdom.jar

  • Regarding "New Tab Page" - dragging a bookmark from the libary does not display when "+" is selected

    It's maddening that I can't fix something so simple. When I click on the "+" a new page opens with unpopulated entries for websites. I've tried the steps in "New Page Tab" and managed to drag and drop a bookmark from my "library". The prompts look OK

  • Headphones for Nokia 5800

    I am looking to buy some new headphones for my 5800.  Currently I have a set of Sony MDR-EX51's they have been great but I've had them for a while and they are starting to degrade.  What are you guys using with your Nokia's?