Query cannot be pushed down - error

Hi,
I am using WSAD5 and Oracle10g and trying to generate RMIC
for a CMP entity bean. Using EJB QL I created a method:
findProductsByAge(int age) defined with:
select object(o) from Product o where o.productAge = ?1
The corresponding column AGE in the database is NUMBER(3).
On the Product bean the field productAge is Integer.
When I try to generate deploy code I get the error:
Query cannot be pushed down
I also defined a query findProductsByType(String type) with:
select object(o) from Product o where o.productType = ?1
and this one is working fine.
Can anyone help?
Thanks,
Igor

Dear All,
I have written a EJB QL for a CMP as
On trying to generate RMIC code for the same, I am
getting the following error message -
Error generating findByBasePrice(double) query
for bean ContainerManaged(Abstract schema
name=ProductTableSchema). Error=query cannot be
pushed down
The name of CMP bean is ContainerManaged. And,
the name of method is findByBasePrice(double).
The query is -
SELECT DISTINCT OBJECT(p) FROM ProductTableSchema
p WHERE p.basePrice = ?1
The XML tag for the aforementioned query is -
<query>
<description></description>
<query-method>
<method-name>findByBasePrice</method-name>
<method-params>
<method-param>double</method-param>
</method-params>
</query-method>
<ejb-ql>SELECT DISTINCT OBJECT(p) FROM
ProductTableSchema p WHERE p.basePrice = ?1</ejb-ql>
</query>Where am I going wrong?
Thanks in advance.
Regards,
Ashish A.Ashish, have you solved the problem? I am having the same problem but I use int instead of double as a parameter to the method. In the
database the corresponding column is of NUMBER(3) data type.

Similar Messages

  • Where clause one query not being pushed down

    I am having a problem where I cannot get a certain "optional" parameter to be pushed down to a query. The parameter gets applied in memory after the result set is returned but not pushed down to the DB. The function is as follows:
    declare function getFoo($key as xs:string, $optinalInput as xs:string*) as element(b:bar)*
    for $foo in f:getFoo()
    where $key = $foo/key
    where not(exists($optinalInput)) or $foo/optional = $optinalInput<- does not get pushed down to the query
    return $foo
    If I make optinalInput an xs:string instead of xs:string * and the optional parameter will get pushed to the query. The problem is for this optional parameter I could get anywhere from 0-50 in the sequence. Seems like when the parameter is a sequence it doesn't get applied to the query. Is there any way around this?

    Mike,
    I understand the difference between * and ? and I was one of the people working on the "string-length not getting pushed" problem so I am very familiar with it. I tried you solution that you mentioned below and it still did not push the where clause to the query. I know I could achieve this with an ad-hoc query but I wanted to do a pure xquery implementation of this component because of the benefits it could have when interacting with other components in our ODSI project...such as SQL joining and potentially pushing additional where clause down from components that call this component. The only way I did get this to kind of work is to do this:
    return
    for $o in $optinalInput
    for $foo in f:getFoo()
    where $key = $foo/key
    where $o = $foo/optional
    return
    $foo
    for $count in 1
    where not(exists($optinalInput))
    for $foo in f:getFoo()
    where $key = $foo/key
    return
    $foo
    By putting the optional parameter into a FOR statement above the table call it guarantees that at least one will exists and that's why the optional parameter gets pushed properly to the DB with a parameterized query. The problem with this is that even though a parameterized query gets pushed it will call the SQL statement multiple times!...not good.
    Another solution that was suggested to me would be to create the number of sequences for each item in the sequence and treat each item as it's own. For example if you know that the schema limits the sequence from 0..50 then you could make 50 items and 50 where clauses....probably not an optimal solution either but it would achieve properly pushing the where clause tot he DB.
    For now I am satisfied with this optional parameter not being pushed to the DB because the performance was still good but it would be nice if there was a maintainable pure xquery solution to this problem.
    Thanks for the help it's always appreciated!
    Mike

  • In ODSI 10gR3 fn:string-length() not pushing down to db (SR: 7714015.993)

    Under ALDSP 2.5, the following XQuery...
    where string-length($medacf) = 0 or $medacf = $acf/column_name
    ...used to generate this SQL:
    where ((? = 0) OR (? = t1."COLUMN_NAME"))
    However, under ODSI 10gR3, the where clause is missing. Here's the query plan:
    <?xml version="1.0"?>
    <FLWOR>
    <return>
    <elementConstructor name="UserGroup" tip="{ld:PhysicalLayer/UserProfile/UserGroup}UserGroup">
    <elementConstructor field="(0)" name="UserID" from="$f7815">
    </elementConstructor>
    <elementConstructor field="(1)" name="GroupID" from="$f7815">
    </elementConstructor>
    </elementConstructor>
    </return>
    <where sqlstop="Unable to generate SQL for XQuery expression: Cannot generate SQL for the function {http://www.bea.com/xquery/xquery-operators}integer-equal with parameters (Parameter,INTEGER), (Constant,INTEGER). There is no equivalent SQL for this function in general or with these particular parameter kinds/types. ">
    <operator ns="op" name="boolean-or" tip="{http://www.w3.org/2004/07/xpath-operators}boolean-or">
    <EQ sqlstop="Cannot generate SQL for the function {http://www.bea.com/xquery/xquery-operators}integer-equal with parameters (Parameter,INTEGER), (Constant,INTEGER). There is no equivalent SQL for this function in general or with these particular parameter kinds/types. " tip="{http://www.bea.com/xquery/xquery-operators}integer-equal">
    <operator ns="fn" name="string-length" tip="{http://www.w3.org/2004/07/xpath-functions}string-length">
    <variable name="__fparam0" kind="EXTERNAL">
    </variable>
    </operator>
    <constant>
    <![CDATA[[integer 0]]]>
    </constant>
    </EQ>
    <EQ tip="{http://www.bea.com/xquery/xquery-operators}string-equal">
    <variable name="__fparam0" kind="EXTERNAL">
    </variable>
    <variable name="(2)" from="$f7815" kind="extracted">
    </variable>
    </EQ>
    </operator>
    </where>
    <for name="$f7815">
    <source ns="fn-bea" name="UsrProfDataSource" sqlwarning="Generated SQL query does not have a WHERE clause. This may cause the query to take longer to finish and use excessive memory resources." kind="relational" tip="UsrProfDataSource">
    <![CDATA[SELECT UPPER(t1."USER_ID") AS c1, t1."GRP_ID" AS c2, t1."USER_ID" AS c3
    FROM "USRPROF"."USER_GRP" t1]]>
    </source>
    </for>
    </FLWOR>

    We have found that in ODSI 10gR3, the code pattern below is not pushed down if $logicalExpression is an expression that compares two atomic values and one of the values is a constant (used to work in ALDSP 2.5):
    where $logicalExpression or $table/column = $input
    Sample code that is not pushed down as expected:
    where fn:string-length($accountNumber) _<= 0_ or $account/ACCT_NUM = $accountNumber
    where fn:empty($accountNumber) or $accountNumber _= ''_ or $account/ACCT_NUM = $accountNumber
    where fn:empty($clientId) or $clientId _= 0_ or $account/CLIENT_ID = $clientId
    where fn:empty($effectiveDate) or $effectiveDate _= xs:date('0001-01-01')_ or $account/ACCT_EFF_DT = $effectiveDate
    We have also found that a workaround is to tweak the code and replace $logicalExpression with something that can be pushed down and functionally equivalent (using fn:not, fn-bea:fence, fn:exactly-one, etc.).
    Code that works:
    where fn:not(fn:string-length($accountNumber) > 0) or $account/ACCT_NUM = $accountNumber
    where fn-bea:fence(fn:string-length($accountNumber) <= 0) or $account/ACCT_NUM = $accountNumber
    where fn:exactly-one(fn:string-length($accountNumber) <= 0) or $account/ACCT_NUM = $accountNumber
    After examining the query plans, it appears to me (please correct me if any of these is not true):
    - Comparators for atomic types ({http://www.bea.com/xquery/xquery-operators} integer-less-than-or-equal, string-equal, date-equal, etc.) are not pushed down if they are used to compare anything with a constant
    - An "or" operation ({http://www.w3.org/2004/07/xpath-operators} boolean-or) is not pushed down if any of its operands cannot be pushed down
    - fn:not, fn-bea:fence, and fn:exactly-one can be pushed down even if their operand cannot be pushed down
    So the question is, why comparators are not pushed down when constants are involved? Is this a bug?
    Thanks!
    -r.

  • Error:  Due to a lock, query cannot be executed at the moment

    Hi,
    I am getting the following error when executing my query:
    Error:  Due to a lock, query cannot be executed at the moment
    Abort System error in program SAPLRSDRC and form /BIC/ZABC_01
    The query has been running fine for the past few months.
    Can anyone explain why this error occured and what can I do to avoid this?
    Thanks in Advance!!
    Regards,
    Swapna

    Hi Swapna,
    make sure that the BW system (e.g. another user, process, ...) does not have currently access to the data e.g. like maintain data. In this case the BW sets a lock so that the current user gets exclusively access to the table.
    Check the table if there are any locks on it. Call transaction SU53 and check your table for any locks.
    Check this thread, perhaps you will find some more information there:
    https://forums.sdn.sap.com/click.jspa?searchID=3180428&messageID=1088573
    Hope this helps.
    Regards,
    Marco

  • MS Query...cannot write sorted rows error

    I have an MS Query report crated and it was working well until i tried to remove a Criteria Filter within the query. I get an error "Cannot Write Sorted Row". If I acknowledge the error, the change to the criteria is not saved and it reverts to
    the original setting. I had several columns sorted, of which i deleted the SQL code for sort thinking that may help. I also tried to delete the Criteria Filter via the wizard and directly in SQL but that did not help.
    Any suggestions of what may be the issue?

    This is a Power Query forum and so it's unlikely you'll find MS Query experts here. That being said, did you try using Power Query for your scenario?

  • I try to send emails after I have recieved. They are hotmail accounts. message says"cannot send mail and error occurred delivering this message.  I have tried deleting and restarting. I have tried shutting phone down completely and restarting.  no help...

    I am trying to send emails via a hotmail account on my i phone 5 and get the following message despite recieving e mails.  "cannot send mail an error occurred delivering this message"...   i have tried to restart phone to no avail. I have tried to delete and re input account to no avail.  I need help

    Hello lclaunch22
    You may need to validate the account with Hotmail. When logged in to the Hotmail account on a computer, there are instructions on how to do this.
    iOS: Setting up Hotmail, Outlook, Live, or MSN email accounts
    http://support.apple.com/kb/ht1694
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Predicate push down in 10.2.0.3 but not in 11.1.0.7

    In the SQL and PL/SQL forum, there was an interesting question on why a predicate isn't pushed down in an 11.1.0.7 database while 10.2.0.3 did push the predicate, here: Same query works OK on 10.2.0.3 and not OK on 11.1.0.7-please help
    The last post contains 10053 trace output. Maybe any of the performance experts in this forum has an explanation?
    Regards,
    Rob.

    SQL> ALTER TABLE LOGIN ADD (
      2  CONSTRAINT FK_LOGIN_MPI
      3  FOREIGN KEY (MPID)
      4  REFERENCES PERSON_ID (MPID));
    REFERENCES PERSON_ID (MPID))
    ERROR at line 4:
    ORA-02270: no matching unique or primary key for this column-list
    SQL> Select
      2  rn,
      3  mpid,
      4  first,
      5  middle,
      6  last,
      7  account_status,
      8  username,
      9  last_login,
    10  date_added,
    11  degree,
    12  ssn
    13  from
    14  (
    15  Select
    16  rownum as rn,
    17  mpid,
    18  first,
    19  middle,
    20  last,
    21  account_status,
    22  username,
    23  last_login,
    24  date_added,
    25  degree,
    26  ssn
    27  from
    28  (
    29  SELECT distinct
    30  p.mpid as mpid,
    31  UPPER(name_first) as first,
    32  UPPER(name_middle_initial) as middle,
    33  UPPER(name_last) as last,
    34  l.account_status,
    35  username,
    36  TO_CHAR(last_login, 'DD-Mon-YYYY') as last_login,
    37  TO_CHAR(date_added, 'DD-Mon-YYYY') as date_Added,
    38  degree,
    39  ssn
    40  FROM
    41  PERSON_ID p,
    42  login l
    43  WHERE
    44  p.mpid=l.mpid AND UPPER(p.name_last) LIKE '%SMITH%'
    45  ORDER BY
    46  name_last ASC
    47  )
    48  )
    49  where
    50  rn >= 1 and rn <= 20;
    name_last ASC
    ERROR at line 46:
    ORA-01791: not a SELECTed expression
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.1.0.5.0 - 64bi
    PL/SQL Release 10.1.0.5.0 - Production
    CORE    10.1.0.5.0      Production
    TNS for Solaris: Version 10.1.0.5.0 - Production
    NLSRTL Version 10.1.0.5.0 - Productionbon, je n'ai pas de 10.1.0.4 windows, mais je doute que ça fasse vraiment la différence
    donne moi l'output dans sqlplus

  • TS1424 cannot connect to itunes error messageinformation from sync services Reconnect or try again later

    cannot  conect to itunes error message "itunes was unable to load data class information from sync services Reconnect or try later"
    i hate itunes!!!!!!!!!!!!!!!

    Hello tonyb2910,
    The following article should be just the thing to put Sync Services down and get your iPhone working smoothly with iTunes again.
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/TS2690
    Cheers,
    Allen

  • Frequent Mouse-Down Errors

    I'm experiencing frequent (every 11 minutes or so) mouse-down errors. As this occurs in any variety of apps, including the Finder, the application in-use seems to not be a factor.
    I will be using an application and suddenly the track-pad no longer works. This is will last for between one and three minutes. Sometimes, the front-most window will veer suddenly to the left so that it is halfway off the screen. I will be unable to move it until the mouse-down error ends. Most of the time, I can continue to move the mouse around during these events, but I can't click on or move anything. Sometimes, gestures (like 4 finger push up to reveal Mission Control) will be disabled during these events, but not always. During these events, I am also unable to drag and drop any files from one space to another.
    This is extremely frustrating and very disruptive to my work and I would really appreciate any help in resolving this.
    The problem began a week or so ago after I installed more than a dozen applications; I have experimented with quitting one menulet at a time with no results. It seems to me, since the error is occurring on a fairly regular basis that one background process or another is causing it so the offending app would need to be fully uninstalled, not just quit anyway.
    I'm wondering, at this point, if I should just restore from a two week old backup, but I would really like to avoid that hassle if it's possible to simple identify the offending process.
    These are some of the console logs of mouse-downs:
    This is the most recent EtreCheck report:
    EtreCheck version: 1.9.15 (52)
    Report generated 23, August, 2014 11:45:28 AM EDT
    Hardware Information: ?
        Mac mini Server (Late 2012) (Verified)
        Mac mini - model: Macmini6,2
        1 2.6 GHz Intel Core i7 CPU: 4 cores
        16 GB RAM
    Video Information: ?
        Intel HD Graphics 4000 - VRAM: 768 MB
            E2350 1920 x 1080 @ 60 Hz
    System Software: ?
        OS X 10.8.5 (12F45) - Uptime: 1 day 13:45:29
    Disk Information: ?
        APPLE SSD SM256E disk0 : (251 GB)
        S.M.A.R.T. Status: Verified
            disk0s1 (disk0s1) <not mounted>: 209.7 MB
            ⨀ (disk0s2) / [Startup]: 250.14 GB (72.26 GB free)
            Recovery HD (disk0s3) <not mounted>: 650 MB
        APPLE SSD SM256E disk1 : (251 GB)
        S.M.A.R.T. Status: Verified
            disk1s1 (disk1s1) <not mounted>: 209.7 MB
            ☾ (disk1s2) /Volumes/☾: 250.66 GB (250.34 GB free)
    USB Information: ?
        VIA Labs, Inc.  USB3.0 Hub        
            VIA Labs, Inc.  USB3.0 Hub        
                Western Digital My Book 1144 4 TB
                    S.M.A.R.T. Status: Verified
                    disk7s1 (disk7s1) <not mounted>: 209.7 MB
                    ⠍⠑⠙⠊⠁∞ (disk7s2) /Volumes/⠍⠑⠙⠊⠁∞: 4 TB (695.3 GB free)
                Western Digital My Book 1144 4 TB
                    S.M.A.R.T. Status: Verified
                    disk6s1 (disk6s1) <not mounted>: 209.7 MB
                    ⠍⠑⠙⠊⠁ (disk6s2) /Volumes/⠍⠑⠙⠊⠁: 4 TB (1.17 TB free)
                Western Digital My Book 1144 2 TB
                    S.M.A.R.T. Status: Verified
                    disk5s1 (disk5s1) <not mounted>: 209.7 MB
                    ♾ ∞ (disk5s2) /Volumes/♾ ∞: 2 TB (823.76 GB free)
                Western Digital My Book 1144 2 TB
                    S.M.A.R.T. Status: Verified
                    disk4s1 (disk4s1) <not mounted>: 209.7 MB
                    ♾ (disk4s2) /Volumes/♾: 2 TB (826.78 GB free)
            VIA Labs, Inc.  USB3.0 Hub        
        Wacom Co.,Ltd. Intuos5 touch L
        Audioengine                      Audioengine 2+  
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple, Inc. IR Receiver
    Firewire Information: ?
        LaCie Group SA LaCie DVD MULTI Drive 400mbit - 400mbit max
        WD My Book 111D 800mbit - 800mbit max
            S.M.A.R.T. Status: Verified
            disk3s1 (disk3s1) <not mounted>: 209.7 MB
            ⨀ ☾ ∞ (disk3s2) /Volumes/⨀ ☾ ∞: 999.83 GB (310.49 GB free)
        WD My Book 111D 800mbit - 800mbit max
            S.M.A.R.T. Status: Verified
            disk2s1 (disk2s1) <not mounted>: 32 KB
            Djuna (disk2s3) /Volumes/Djuna: 2 TB (467.22 GB free)
    Thunderbolt Information: ?
        Apple Inc. thunderbolt_bus
    Configuration files: ?
        /etc/hosts - Count: 21
    Gatekeeper: ?
        Anywhere
    Kernel Extensions: ?
        [loaded]    com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.7) Support
        [loaded]    com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) Support
        [loaded]    com.bresink.driver.BRESINKx86Monitoring (9.0) Support
        [loaded]    com.cleancutcode.displaypaddriver (14 - SDK 10.7) Support
        [loaded]    com.cleancutcode.displaypadframebuffer (14 - SDK 10.7) Support
        [loaded]    com.dvdfab.kext.fabio (1) Support
        [loaded]    com.eltima.ElmediaPlayer.kext (1.58 - SDK 10.4) Support
        [loaded]    com.makemkv.kext.daspi (1) Support
        [not loaded]    com.roxio.TDIXController (2.0) Support
        [not loaded]    com.silabs.driver.CP210xVCPDriver (3.0.0d1) Support
        [not loaded]    com.silabs.driver.CP210xVCPDriver64 (3.0.0d1) Support
        [not loaded]    com.wacom.kext.wacomtablet (6.3.6 - SDK 10.8) Support
        [not loaded]    com.wdc.driver.1394HP (1.0.9) Support
        [loaded]    com.wdc.driver.1394_64HP (1.0.1 - SDK 10.6) Support
        [not loaded]    com.wdc.driver.USBHP (1.0.11) Support
        [loaded]    com.wdc.driver.USB_64HP (1.0.0 - SDK 10.6) Support
        [loaded]    org.virtualbox.kext.VBoxDrv (4.3.12) Support
        [loaded]    org.virtualbox.kext.VBoxNetAdp (4.3.12) Support
        [loaded]    org.virtualbox.kext.VBoxNetFlt (4.3.12) Support
        [loaded]    org.virtualbox.kext.VBoxUSB (4.3.12) Support
    Startup Items: ?
        ProTec6b: Path: /Library/StartupItems/ProTec6b
        rEFItBlesser: Path: /Library/StartupItems/rEFItBlesser
    Launch Daemons: ?
        [loaded]    com.adobe.fpsaud.plist Support
        [loaded]    com.adobe.SwitchBoard.plist Support
        [loaded]    com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist Support
        [loaded]    com.barebones.authd.plist Support
        [loaded]    com.bombich.ccc.plist Support
        [running]    com.bombich.ccc.scheduledtask.17F56F48-3C2C-4D3B-B47E-205306ACCFDB.plist Support
        [not loaded]    com.bombich.ccc.scheduledtask.2D2A146C-2C9A-49C3-AB42-CC8739EB950B.plist Support
        [not loaded]    com.bombich.ccc.scheduledtask.5E0B2858-77D7-4B7F-9CFF-200039E53FA9.plist Support
        [running]    com.bombich.ccc.scheduledtask.5FDB8E27-273B-485D-AC72-217F3FD8119B.plist Support
        [running]    com.bombich.ccc.scheduledtask.65FB7ACA-8A91-47EC-AC2F-348EE1CE3AC4.plist Support
        [running]    com.bombich.ccc.scheduledtask.D8145D25-190A-44BF-BB03-CF94E6D9ADD7.plist Support
        [loaded]    com.cyberghostsrl.CyberghostPrivilegedHelper.plist Support
        [running]    com.eltima.ElmediaPlayer.daemon.plist Support
        [running]    com.freemacsoft.appcleanerd.plist Support
        [loaded]    com.github.GitHub.GHInstallCLI.plist Support
        [loaded]    com.google.keystone.daemon.plist Support
        [running]    com.informer.mac.daemon.plist Support
        [loaded]    com.JWVD.cbcache.plist Support
        [loaded]    com.microsoft.office.licensing.helper.plist Support
        [loaded]    com.oracle.java.Helper-Tool.plist Support
        [loaded]    com.oracle.java.JavaUpdateHelper.plist Support
        [not loaded]    com.robohippo.HippoConnectDaemon.plist Support
        [loaded]    com.rogueamoeba.instanton-agent.plist Support
        [loaded]    com.teamviewer.Helper.plist Support
        [not loaded]    com.teamviewer.teamviewer_service.plist Support
        [loaded]    com.timesoftware.timemachineeditor.helper.plist Support
        [running]    com.wdc.WDDMservice.plist Support
        [running]    com.wdc.WDSmartWareServer.plist Support
        [loaded]    net.interacto.flavours.helper.plist Support
        [running]    org.glimmerblocker.proxy.plist Support
        [loaded]    org.macosforge.xquartz.privileged_startx.plist Support
        [not loaded]    org.virtualbox.startup.plist Support
        [loaded]    org.wireshark.ChmodBPF.plist Support
    Launch Agents: ?
        [not loaded]    com.adobe.AAM.Updater-1.0.plist Support
        [loaded]    com.divx.dms.agent.plist Support
        [loaded]    com.divx.update.agent.plist Support
        [running]    com.epson.eventmanager.agent.plist Support
        [loaded]    com.google.keystone.agent.plist Support
        [loaded]    com.oracle.java.Java-Updater.plist Support
        [running]    com.robohippo.HippoConnectAgent.plist Support
        [not loaded]    com.teamviewer.teamviewer.plist Support
        [not loaded]    com.teamviewer.teamviewer_desktop.plist Support
        [running]    com.wacom.wacomtablet.plist Support
        [failed]    net.culater.SIMBL.Agent.plist Support
        [loaded]    org.glimmerblocker.updater.plist Support
        [loaded]    org.macosforge.xquartz.startx.plist Support
    User Launch Agents: ?
        [loaded]    com.adobe.ARM.[...].plist Support
        [failed]    com.adobe.ARM.[...].plist Support
        [loaded]    com.BlueStacks.AppPlayer.LogRotator.plist Support
        [loaded]    com.BlueStacks.AppPlayer.Service.plist Support
        [loaded]    com.BlueStacks.AppPlayer.UninstallAgent.plist Support
        [loaded]    com.BlueStacks.AppPlayer.UpdaterAgent.plist Support
        [running]    com.bombich.ccc-user-agent.plist Support
        [running]    com.nchsoftware.expressinvoice.agent.plist Support
        [running]    com.nchsoftware.inventoria.agent.plist Support
        [loaded]    com.nchsoftware.switch.schedule.LikeSurvey.plist Support
        [running]    com.plexapp.helper.plist Support
        [running]    com.spotify.webhelper.plist Support
        [loaded]    com.valvesoftware.steamclean.plist Support
        [not loaded]    org.virtualbox.vboxwebsrv.plist Support
        [loaded]    uk.co.markallan.clamxav.clamscan.plist Support
        [loaded]    uk.co.markallan.clamxav.freshclam.plist Support
    User Login Items: ?
        CheatSheet
        handyPrintDaemon
        iTunesHelper
        iTunes
        Degrees
        Calendar
        Wunderlist
        Mint QuickView
        Mail Call
        Plex Media Server
        Dropbox
        DeskConnect
        CloudClip Manager
        Converto
        Brightness Slider
        ByteController
        Moom
        App for Facebook
        Cobook
        Numi 2
        SnappyApp
        TotalFinder
        XtraFinder
    Internet Plug-ins: ?
        DirectorShockwave: Version: 12.0.5r146 - SDK 10.6 Support
        o1dbrowserplugin: Version: 5.4.2.18903 Support
        JavaAppletPlugin: Version: Java 7 Update 60 Check version
        WacomNetscape: Version: 2.1.0-1 - SDK 10.8 Support
        OVSHelper: Version: 1.1 Support
        AmazonMP3DownloaderPlugin101750: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
        WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 Support
        AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
        FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
        DivX Web Player: Version: 3.2.1.977 - SDK 10.6 Support
        AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
        Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
        QuickTime Plugin: Version: 7.7.1
        googletalkbrowserplugin: Version: 5.4.2.18903 Support
        SharePointBrowserPlugin: Version: 14.3.6 - SDK 10.6 Support
        AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
        MeetingJoinPlugin: Version: (null) - SDK 10.6 Support
    Safari Extensions: ?
        myPlex Queue-2
        AdBlock
        DuckDuckGo
        Save to Pocket
        LinkThing
        Deanimator
        Harakirimail
        dotepub
        ClickToFlash
        JavaScript Blocker-2 (Disabled)
        FeedButton
        1Password
    Audio Plug-ins: ?
        AirPlay: Version: 1.7 - SDK 10.8
        iSightAudio: Version: 7.7.1 - SDK 10.8
        InstantOn: Version: 8.0.0 - SDK 10.8 Support
    iTunes Plug-ins: ?
        Quartz Composer Visualizer: Version: 1.4 - SDK 10.8
    User Internet Plug-ins ?
        BlueStacks Install Detector: Version: 0.3.6 - SDK 10.7 Support
        RealPlayer Plugin: Version: Unknown
    3rd Party Preference Panes: ?
        Flash Player  Support
        GlimmerBlocker  Support
        handyPrint  Support
        Java  Support
        MenuMeters  Support
        Perian  Support
        Shades Preferences  Support
        SwitchResX  Support
        WacomTablet  Support
    Time Machine: ?
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            ⨀: Disk size: 232.96 GB Disk used: 165.67 GB
            ☾: Disk size: 233.44 GB Disk used: 298 MB
        Destinations:
            Ectoplasm [Local] (Last used)
            Total size: 931.16 GB
            Total number of backups: 77
            Oldest backup: 2013-12-21 04:36:50 +0000
            Last backup: 2014-08-23 15:01:44 +0000
            Size of backup disk: Adequate
                Backup size 931.16 GB > (Disk used 165.96 GB X 3)
        Time Machine details may not be accurate.
        All volumes being backed up may not be listed.
    Top Processes by CPU: ?
            11%    firefox
             2%    WindowServer
             1%    Dropbox
             1%    Console
             1%    plugin-container
    Top Processes by Memory: ?
        1.76 GB    firefox
        1.70 GB    com.apple.automator.xpc.workflowServiceRunner
        393 MB    mds
        262 MB    iTunes
        213 MB    installd
    Virtual Memory Information: ?
        3.03 GB    Free RAM
        6.08 GB    Active RAM
        4.47 GB    Inactive RAM
        2.41 GB    Wired RAM
        1.56 GB    Page-ins
        0 B    Page-outs
    Again, I would really appreciate any suggestions or questions you can throw at me.
    Thank you

    Try un-installing SIMBL. It is a system hack.
    SIMBL Uninstall
    SIMBL Uninstall (2)     See solution posted by Linc Davis .
    Try un-installing the applications you installed. Un-install using the developer’s instructions to make sure you remove all parts of the application. Some people recommend not installing an application unless you know how to remove it. When you find the problem application, you can try re-installing the others.

  • Mailqueue cannot be pushed

    Hi,
    I have a problem with the APEX mail queue. It cannot be pushed. The mails just stand there.
    Things that I have tried:
    1) Tried to push the mails via the internal Workspace Administration
    2) Tried to push it via the command line as the schema assigned to the workspace:
    begin
      wwv_flow_api.set_security_group_id(apex_util.find_security_group_id('TPG'));
      apex_mail.push_queue;
      commit;
    end;
    /3) No errors in the log
    SELECT   *
      FROM   apex_mail_queue
    WHERE   mail_send_error IS NOT NULL;We did have a problem with the database job (DBMS_JOB) pushing the mail queue in the FLOWS_ schema. The job was running for 20 days and not finishing. Perhaps an os process was hanging. The DBAs fixed the problem, don't know what they did. But the job now looks fine.
    We have APEX 3.1.2 installed on a 10.2.0.1 RAC (two nodes on Solaris).
    Any ideas / suggestions? I ran out of options to check.
    Also, the basic smtp gateway functionality works, too. I have been able so send a basic email using UTL_SMTP from the same schema. Thus privileges and smtp connectivity as such work (even from the database).
    Thanks,
    ~Dietmar.

    Hi,
    When we had a similar issue we resolved it by following advice such as: [http://it.toolbox.com/blogs/database-solutions/killing-the-oracle-dbms_job-6498] Even though we could fix a job, we needed to restart the job queue processes as well to get them going again. There were also issues with emails in the queue that didn't have valid email addresses (mostly NULLs) - these were manually deleted by my DBA. After this, the jobs started running ok.
    Andy

  • URGENT!! Drill Down Error with Character Set non-ascii on Discoverer Viewer

    Hi,
    We have an error in a Drill down. It comes up when the Discoverer Viewer tries to process data that contains special character (non-ascii) in a query's filter. The same report that does not perform well with special characters, does perform well if the data don’t contains special characters, so it seems to be an issue processing non-ascii chars in this Discoverer Viewer instance.
    Ex. FIELD_NAME = 'öÜæäé (This filter is contained in a query that this getting an error msg="We're sorry, the server encountered an unexpected condition" ).
    It might be possible that there are some problems with the Discoverer charset ?
    We will appreciate any suggestion about this respect.
    Regrads,
    Seba.

    Sure,
    This is the hole sql command that get an error in a drill down action process
    SELECT NVL (sf_dw_people_skills.major_name, 'No Major'),
    sf_dw_people_skills.minor_name, sf_dw_people_skills.skill_name,
    sf_dw_people_skills.skill_level,
    sf_dw_people_all_rel_v.supervisor_name,
    sf_dw_people_all_rel_v.person_name, sf_dw_people_all_rel_v.LOCATION,
    sf_dw_people_all_rel_v.supervisor_dir_name, COUNT (1)
    FROM olnreport2.sf_dw_people_all_rel sf_dw_people_all_rel,
    olnreport2.sf_dw_people_skills sf_dw_people_skills,
    olnreport2.sf_dw_people_all_rel_v sf_dw_people_all_rel_v,
    olnreport2.sf_dw_competences_rel sf_dw_competences_rel
    WHERE ( (sf_dw_people_all_rel.person_id = sf_dw_people_skills.person_id
    AND (sf_dw_people_all_rel_v.person_id =
    sf_dw_people_skills.person_id
    AND (sf_dw_competences_rel.skill_id = sf_dw_people_skills.skill_id
    AND (sf_dw_people_all_rel_v.supervisor_id =
    sf_dw_people_all_rel.supervisor_id
    AND (sf_dw_people_all_rel_v.supervisor_name = 'Kunz, Jürgen Mr') /*When I replace the charset 'ü' by u, it´s work ok*/
    AND (sf_dw_people_skills.minor_name = 'HRMS')
    AND (sf_dw_people_skills.skill_name = 'HR Intelligence')
    AND ( sf_dw_competences_rel.competence_type = :"competence_type"
    AND sf_dw_competences_rel.competence_id IN ((:"competence_id"))
    AND (sf_dw_people_all_rel.supervisor_id IN ((:"Manager")))
    AND ((( :"resource_manager" <> -1
    AND olnreport2.do_val_person_job_prod
    ('RESOURCE_MANAGER_VIEW',
    sf_dw_people_skills.person_id,
    sf_dw_people_skills.job_code,
    sf_dw_people_skills.product_code,
    :"resource_manager"
    ) = 'Y'
    OR :"resource_manager" = -1
    GROUP BY NVL (sf_dw_people_skills.major_name, 'No Major'),
    sf_dw_people_skills.minor_name,
    sf_dw_people_skills.skill_name,
    sf_dw_people_skills.skill_level,
    sf_dw_people_all_rel_v.supervisor_name,
    sf_dw_people_all_rel_v.person_name,
    sf_dw_people_all_rel_v.LOCATION,
    sf_dw_people_all_rel_v.supervisor_dir_name;
    Regards,
    Seba.

  • Query cannot be parsed within the Builder ORA-00900: invalid SQL statement

    Why am I getting the error message "Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-00900: invalid SQL statement"
    If I run the query in sqlplus it comes back with "no rows selected" which is what I want.
    The function is valid and the user has privileges to run it.
    Is there something I can do about it?
    If I only have any field instead of the function the error goes away.
    Can someone explain what is happening? I'm using 2.0.
    select
    F_TOTAL_AMOUNT_PAID('fees',a.acct_fee_id,0) "Fee Paid"
    from fee_component a, fee b, license c
    where a.acctfee_id = b.acctfee_id
    and b.license_id = c.license_id
    and b.fee_status = 'U'
    and c.client_id = :P301_CLIENT_ID
    Thanks I really appreciate any help I can get.

    Does your parsing schema have direct granted privileges to execute the function or privileges via a role? If it is through a role, you need to directly grant execute on the function to your parsing schema.
    Mike

  • TS3297 Cannot connect to iTunes error

    I am trying to download an app onto my ipad but can't due to a "cannot connect to iTunes error." I have tried tried shutting down, resetting, changing the time back and then correcting and adjusting the DNS address.  I also do not have any uploads pending and my software is up-to-date.  Any suggestions would be appreciated.  Thank you!

    Apple appears to be having trouble with the iTunes Store servers right now. Wait for them to fix it.
    (81082)

  • Query Cannot be Parsed Within Builder

    Hi,
    I'm trying to parse different Oracle database connections so users can do a search by database. I am setting this up in the HTML DB and have set up the appropriate Item which is P"(_HUB and within this I have set up the List Of Values.
    However, I get the following error:
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. The query can not be parsed, the cursor is not yet open or a function returning a SQL query returned without a value.
    declare
    v_sql varchar2(4000);
    pshub varchar(15) := 'P29_HUB';
    begin
    v_sql := 'SELECT CLIENTACC.CLIENTID, CLIENTACC.ACCOUNT, CLIENTACC.ACCOUNTDESC, CLIENTACC.BACKOFFACCOUNT from CLIENTACC@'||pshub||'';
    end;
    Can someone please advise.
    Cheers.

    As I see in the query(v_sql) , you missed the quotes ;
    Try this now :
    declare
    v_sql varchar2(4000);
    pshub varchar(15) := 'P29_HUB';
    begin
    v_sql := 'SELECT CLIENTACC.CLIENTID, CLIENTACC.ACCOUNT, CLIENTACC.ACCOUNTDESC, CLIENTACC.BACKOFFACCOUNT from CLIENTACC@''||pshub||'' ';
    end;

  • Formula Aggregation not pushed down to HANA DB

    Hi SAP Experts,
    We are creating a query in Query Designer. The query contains a formula with exception aggregate on material. See attachment 1 for details.
    When I execute and explain the query in RSRT, it runs for more than 1 min and the explain also says it has not been pushed down to HANA DB
    In RSRT query properties, we've tried each 'Operation in BWA/HANA' parameters, but the result is same.
    We are on BW7.4 SP7. HANA DB version is 1.00.70.00.386119
    According to SAP document, formula exception aggregate should be pushed down to HANA DB.
    Can any SAP expert advise if there's any specific setting you need to make to enable this? Thanks.
    Regards,
    Aaron

    Also would want to know if there are issues with the latest rev. SP7 w.r.t alerts and hdbstatisticsserver service under Landscape?
    I have observed the hdbstatisticsserver (and daemon.ini) doesnt come up on its own after db instance is restarted.
    FYI: I have HANA Instance on Linux VM (sandbox). 

Maybe you are looking for