SQL Dev does not recognize NTILE

I admire how SQL Dev autocompletes GROUP BY statements. However, in a statement like
select eaddress, count(*) purchases, NTILE(10) OVER (ORDER BY count(*) asc) AS decile ... etc.
it keeps adding the NTILE clause to the GROUP BY statement. NTILE should be treated like an Aggregate function ala count(*), sum(x), etc.
Can you guys make sure all the Oracle "SQL for Analysis" functions (ala http://download.oracle.com/docs/cd/B19306_01/server.102/b14223/analysis.htm) are properly treated in the GROUP BY autocomplete (ie, ignored just like any other aggregate function)?
I am using Oracle SQL Developer 2.1.0.63 Build MAIN-63.73
IDE Version: 11.1.1.2.36.55.30
Product ID: oracle.sqldeveloper
Product Version: 11.1.1.63.73
Thanks, Michael

And that's the reason I wonder if there's a full bug list publicly available.
2.1 Autogenerate GROUP BY and anlaytic functions
....posted the same thing three months later and never got a response. At the time the forum search didn't return that for me when looked for "Group By"

Similar Messages

  • My sql driver does not recognize columns of type TEXT in MYSQL DB

    i am working wiith MySQL 5.1 and one of the tables column is of type "text" and at runtime i run chnage data source from ODBC to JDBC jndi. when i do that the report report is not able to display the value of the column of type "text".
    after investgation the issue i found that the Crystal do not know to map columns of type "text".
    i also tried the same thing from crystal report designer tool to change the report connection defintions from ODBC to JDBc and it faild to map that specefic column of type "text"
    what should i do?
    is this a mysql driver version issue???

    SQL> SELECT d.tablespace_name,round(((a.bytes - NVL(f.bytes,0))*100/a.maxbytes),2) used_pct
    2 FROM sys.dba_tablespaces d,(select tablespace_name, sum(bytes) bytes, sum(greatest(maxbytes,bytes)) maxbytes from sys.dba_data_files group by tablespace_name) a,(select tablespace_name, sum(bytes) bytes from sys.dba_free_space group by tablespace_name) f
    3 WHERE d.tablespace_name = a.tablespace_name(+) AND d.tablespace_name = f.tablespace_name(+)
    4 AND NOT (d.extent_management = 'LOCAL' AND d.contents = 'TEMPORARY');
    TABLESPACE_NAME USED_PCT
    MGMT_TABLESPACE .82
    SYSAUX 1.52
    UNDOTBS1 .32
    RMAN .02
    CORRUPT_TS 10.63
    USERS 0
    SYSTEM 2.26
    MGMT_ECM_DEPOT_TS .04
    MGMT_AD4J_TS 0

  • SQL Developer does not recognize my network drive

    I have to cut and paste the full path including the document name in order to pull up a file from my network drive.  Same issue if I try to save a new document to my network drive.
    This is all I see when trying to open a document:
    However, you can see I have lots of drives mapped:

    Found the issue.  Right Clicked on the shortcut I was using to run SQL Developer, chose Properties, clicked on the Compatibility tab, and unchecked 'Run this program as an administrator' under Privilege Level. 

  • IBM T30 XP USB error with Zen Micro. Does not recognize dev

    I've tried everything I can think of on this board and others. Zen Micro, IBM T30 laptop, 2 usb ports on back, Windows XP. Downloaded latest everything I can find. USB does not recognize device. Error report shows "USB Root Hub (2 ports) ---> Unknown Device"
    Any help appreciated. Thanks!

    Tried one last thing, just for grins...
    Put the IBM into it's docking station, which has another USB on the dock (low speed, though), and voila! It worked! Go figure what's different but since it was working, I took that opportunity to blow in the new firmware, and also upgraded to ZenMicroP4S_PCFW_LB_2__02 to get away from drivers all together (and to use Napster2go, my ultimate goal through all of this!) Syncing with MP0 worked great. Even an explorer view with folders and such, so all is well.
    Since everything seems to be working, I'll stick with it for now!
    Can I now delete Zen Micro Media Explorer from my system? (it doesn't seem to recognize the device anyway)
    Thanks!

  • Oracle vm 3.1.x : does not recognize local storage

    Hi There
    My VM manager does not recognize the local storage however I have a second HDD on my VM server:
    [root@myserver ~]# fdisk -l
    Disk /dev/sda: 320.0 GB, 320072933376 bytes
    255 heads, 63 sectors/track, 38913 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 13 104391 83 Linux
    /dev/sda2 14 405 3148740 83 Linux
    /dev/sda3 406 536 1052257+ 82 Linux swap / Solaris
    Disk /dev/sdb: 160.0 GB, 160041885696 bytes
    255 heads, 63 sectors/track, 19457 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    Also the Multipath is running:
    [root@myserver ~]# service multipathd status
    multipathd (pid 2735) is running...
    [root@myserver ~]#
    The version of OVM is 3.1.1.305
    I have used the default partition layout.
    I was able to create a server pool without the cluster option but there is no storage bind to it since I could not utilize the local storage and my NFS (which is on a IOMEGA DATA CENTRE external HDD) for some reasons gets timed out while I am adding the server pool with NFS ( NFS was added to the storage no problem but once I try to add a pool on this NFS it gets timesd out)
    I am new to OVM and also Linux so please go easy on me :) , Your help is much appriciated.

    Very likely "multipath -ll" doesn't show up any path to sdb from the device mapper (neither it is in /dev/mapper)
    - Make sure you've rescanned disks from OVM Manager (Select the ovm server disks page) ;
    - try to perform "multipath -d" to see if it takes the path from sdb into account. If it is, run "multipath" no option
    - try to reboot the OVM server since it's not too late ;-)
    Other than that I'm afraid you'll have to figure out why device mapper doesn't map your disk; the ovm server should have "script" install on it. Do the following :
    cd /root
    script figureoutwhyitsucks.log
    multipathd -k
    show config
    <ctrl>+D
    exit
    That file would be helpful to figure out.

  • LINQ to Entities does not recognize the method 'System.String ToString()'

    Hi, i am working on MVC using LINQ query where i am heading a problem with LINQ Query. When I use following code 
    public ActionResult GetProduct()
    Category p = new Category();
    var all = db.Products.ToList();
    // var catname = from i in db.Categories select i.CategoryID.ToString();
    p.CategName = (from i in db.Categories select new SelectListItem {Value =i.CategoryID.ToString(), Text = i.CategoryName }).ToList();
    var qq = (from i in db.Products join j in db.Categories on i.CategoryID equals j.CategoryID select new Product { ProductName = i.ProductName, UnitPrice = i.UnitPrice, UnitsOnOrder = i.UnitsOnOrder }).ToList();
    p.Products = qq;
    return View("GetProduct", p);
    It throws an error
    LINQ to Entities does not recognize the method 'System.String ToString(Int32)' method, and this method cannot be translated into a store expression.
    kindly help to fix this problem.
    Mayank Mani Pandey India

    Entity Framework cannot convert ToString() to SQL. Create the object after you have fetched the results:
    public ActionResult GetProduct()
    Category p = new Category();
    var all = db.Products.ToList();
    // var catname = from i in db.Categories select i.CategoryID.ToString();
    p.CategName = (from i in db.Categories select i).AsEnumerable().Select(x => new SelectListItem { Value = x.CategoryID.ToString(), Text = x.CategoryName }).ToList();
    var qq = (from i in db.Products join j in db.Categories on i.CategoryID equals j.CategoryID select new Product { ProductName = i.ProductName, UnitPrice = i.UnitPrice, UnitsOnOrder = i.UnitsOnOrder }).ToList();
    p.Products = qq;
    return View("GetProduct", p);
    Please remember to close your threads by marking all helpful posts as answer and then start a new thread if you have a new question.

  • Sparql endpoint does not recognize named graph

    Hi, I created a sem model A, and later added quads into it. while when I searched the named graph using sem_match from sql plus, it worked well, but it did not work using neither java code nor Joseki end point. For example, I simply count the number of triples, the number using sem_match is greater than that using the code. so I guess the code does not recognize the new added quads. Any ideas?
    here are the java code:
    Oracle oracle = new Oracle(szJdbcURL, szUser, szPasswd);
    DataSource ds = DatasetFactory.create();
    ModelOracleSem model = ModelOracleSem.createOracleSemModel(oracle, szModelName);
    ds.setDefaultModel(model);
    String queryString =
    " select (count(*) as ?count) from named <http://****> " +
    " where {" +
    " graph ?g {?s ?p ?o } " +
    Query query = QueryFactory.create(queryString) ;
    QueryExecution qexec = QueryExecutionFactory.create(query, ds) ;
    ResultSet results = qexec.execSelect() ;
    ResultSetFormatter.out(System.out, results, query);
    So does Joseki end point, do I need to add the named graph into joseki-config.ttl?
    Thanks.

    Hi,
    To deal with quads, you need to use DatasetGraphOracleSem class.
    You can search for Test11.java in the following document.
    http://docs.oracle.com/cd/E11882_01/appdev.112/e11828/sem_jena.htm
    To configure named graph support for Joseki, please take a look at oracle:allGraphs
    in Section 7.2 of the above document.
    Hope it helps,
    Zhe Wu

  • Imqobjmgr does not recognize the value of java.naming.provider.url property

    On Windows, I am running imqobjmgr 4.3
    when I run imqobjmgr -i list.properties, I am getting the following error
    Error [A3052]: imqobjmgr does not recognize the value of java.naming.provider.url property.
    Why is that?
    classpath
    C:\Sun\SDK\imq\lib\jms.jar;C:\Sun\SDK\imq\lib\imq.jar;C:\Sun\SDK\imq\lib\fsconte
    xt.jar;.
    contents of list.properties
    # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    # Copyright 2000-2008 Sun Microsystems, Inc. All rights reserved.
    # The contents of this file are subject to the terms of either the GNU
    # General Public License Version 2 only ("GPL") or the Common Development
    # and Distribution License ("CDDL") (collectively, the "License"). You may
    # not use this file except in compliance with the License. You can obtain
    # a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
    # or mq/legal/LICENSE.txt. See the License for the specific language
    # governing permissions and limitations under the License.
    # When distributing the software, include this License Header Notice in each
    # file and include the License file at mq/legal/LICENSE.txt. Sun designates
    # this particular file as subject to the "Classpath" exception as provided by
    # Sun in the GPL Version 2 section of the License file that accompanied this
    # code. If applicable, add the following below the License Header, with the
    # fields enclosed by brackets [] replaced by your own identifying information:
    # "Portions Copyrighted [year] [name of copyright owner]"
    # Contributor(s):
    # If you wish your version of this file to be governed by only the CDDL or
    # only the GPL Version 2, indicate your decision by adding "[Contributor]
    # elects to include this software in this distribution under the [CDDL or GPL
    # Version 2] license." If you don't indicate a single choice of license, a
    # recipient has the option to distribute your version of this file under
    # either the CDDL, the GPL Version 2 or to extend the choice of license to
    # its licensees as provided above. However, if you add GPL Version 2 code
    # and therefore, elected the GPL Version 2 license, then the option applies
    # only if the new code is made subject to such option by the copyright holder.
    # @(#)list.properties     1.11 07/02/07
    # This property file will list administered objects
    # Version of command file
    # NOTE: This is not the version of the Sun Java(tm) System Message Queue product
    version=2.0
    cmdtype=list
    # If you want to only list a particular type of administered
    # object, uncomment the following line and specify the type.
    # Acceptable values for the type property are: t, q, tf, and qf,
    # where t = topic, q = queue, tf = topic connection factory, and
    # qf = queue connection factory.
    #obj.type=
    # To use the LDAP service provider implementation from
    # Sun Microsystems, uncomment the following two property lines
    # and set the url property correctly.
    objstore.attrs.java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory
    objstore.attrs.java.naming.provider.url=ldap://localhost:389/ou=imqobjmgr,o=sun.com
    # To use the File System service provider implementation from
    # Sun Microsystems on Solaris, uncomment the following two
    # property lines and set the url property correctly.
    # *** Note that the url syntax here is platform specific. ***
    #objstore.attrs.java.naming.factory.initial=com.sun.jndi.fscontext.RefFSContextFactory
    #objstore.attrs.java.naming.provider.url=file:///home/foo/imq_admin_objects
    # To use the File System service provider implementation from
    # Sun Microsystems on Windows, uncomment the following two
    # property lines and set the url property correctly.
    # *** Note that the url syntax here is platform specific. ***
    #objstore.attrs.java.naming.factory.initial=com.sun.jndi.fscontext.RefFSContextFactory
    #objstore.attrs.java.naming.provider.url=file:///C:/imq_admin_objects
    #objstore.attrs.java.naming.security.authentication=
    #objstore.attrs.java.naming.security.principal=
    #objstore.attrs.java.naming.security.credentials=

    I see you're using Sun Java System Message Queue. There's a forum specific to that product over at [http://forums.sun.com/forum.jspa?forumID=711&start=0|http://forums.sun.com/forum.jspa?forumID=711&start=0] . You could try asking there.
    Nigel

  • Skype does not recognize the .moe TLD

    As the title indicates, Skype does not recognize any link with a .moe TLD. They are sent as plain text and any recepient then has to manually copy and paste the URL. This as you imagine become quite a hassle.
    Was wondering if the .moe TLD is added to the list of proper URLs in the coming Skype updates. And if so, is there an ETA on the next Skype update that will have proper support.
    Seems odd Skype is the only program I've used that doesn't automatically recognize all web links. They even are linked in a standard format: http://webname.moe
    Thank you for your help.

    Bumping this to gain more visibility.
    Perhaps add into Skype that all text that resembles a web-link be shown as a link?
    http* (so for http://stuff and https://stuff)
    and perhaps:
    www.*.
    Not sure, I'm not a coder, but would love to see this feature. As I said in my main post, literally every other application I have used but Skype can recognize any links I use, even all those obscure TLDs / gTLDs. I'm pretty sure the Skype devs are smart enough to figure it out

  • We just added a new printer and bluetooth connection to our iMac.  Now iTunes does not recognize our iPads as devices.  Have already tried restarting everything.  Any other suggestions?

    We just added a new printer and bluetooth connection to our iMac.  Now iTunes does not recognize our iPads as devices.  Have already tried restarting everything.  Any other suggestions?

    You can try the steps recommended here: http://www.apple.com/support/ipad/assistant/itunes/

  • "Find my iPhone does not recognize New iPhone 5

    I use my AppleID to "Find my iPhone" successfully on iPhone 4, iPhone4S, iPad, iMac. All show up. New iPhone5 iOS 6.0.2 uses same AppleID in the General iCloud settings, Contacts,email,photostream,safari bookmarks,reminders,notes, are all synced fine. I can even see how much storage is available in my iCloud account on the new iPhone5.  The Problem is that "Find my iPhone" does not recognize the new iPhone 5. Yes location services is turned on. The iPhone5 can find its location in the map app, can find all other devices in "Find my iPhone" just not itself in "Find my iPhone" I tried a hard reset.
    ANY IDEAS?

    How about when the passcode is correct but not recognized?
    I was prompted to enter a password to unlock the device when I downloaded IOS 7 several months ago.
    Entered the password every single day for months, never a problem.
    Yesterday I attempted to download the most recent IOS version and I was asked for a passcode before I could do that (my phone was unlocked). Online I found out the passcode is the unlocking password. It did not work and I was unable to use the phone for several minutes after 5 attempts. I just stored the phone and when home I charged it overnight.
    This morning I unlocked the phone as usual  and used it without a problem for emails, phone calls. etc.. Now, after not having used it for a while, I am asked for the passcode to unlock it as usual, and although I am sure I entered the right code, it is not recognized. I am unable to unlock my phone, although I have done it for months.
    This is not a case of forgotten passcode! And I see it has happened to many others that use 4s and 5s iphones.
    i could attempt the iTune connection fix, but it troubles me that all solutions are presented for forgotten pascodes, and in many cases actually the passcodes are not recognized. Which means, it will keep happening unless Apple offers a solution.

  • My computer does not recognize my printer

    Dear Sir/Madam please can you help me my computer does not recognize my printer either by wireless or usb cable although I used to use it and it was good  thanks ayman 

    Running the diagnostics at http://www.hp.com/go/tools may help resolve the issue.

  • PSE 10 does not recognize my printer

    PSE does not recognize my printer.

    Running the diagnostics at http://www.hp.com/go/tools may help resolve the issue.

  • My mac air does not recognize my printer.

    My wife's mac recognizes our Epson Printer but mine will not.  I have reset the printer settings and it does not recognizes any printers.  Would love some help on this.  Thanks. 

    My wife's mac recognizes our Epson Printer but mine will not.  I have reset the printer settings and it does not recognizes any printers.  Would love some help on this.  Thanks. 

  • My iPad does not recognize my printer (HP officejet 5510 All-in-One). What can I do?

    My iPad does not recognize my printer (HP officejet 5510 All-in-One). What can I do?

    The Photosmart 5510 is AirPrint capable.  You can find that information linked below.  There may be something in the network that is preventing communication.  To use AirPrint your router needs to support Bonjour services.  Run the download below.  It will let you test Bonjour services from your Windows PC.  If this app can't see the printer either, then the router's Bonjour services are off, or it does not support Bonjour.  Let me know what the app finds.  If it can't find the printer, let me know what brand and model router you have, and I'll see if it has Bonjour services at all.
    Bonjour Print Services for Windows v2.0.2
    HP Web Connected Printers and Supported Cloud Services
    I am a printer tech for HP.

Maybe you are looking for

  • Photoshop 7 rejected

    Hello everybody, would you please help me? I've just bought a new iMac with OSX.5.2 with 2.66GHz CPU and installed my old software, among them Photoshop. What puzzled me in the first place was, installing Adobe Photoshop 7 from CD, I got the message

  • Change color on mouse over

    Hi, how can i change the color of column heading during mouse over a particular column.? Does anyone know any html code for this?

  • Software in .zip Format ?

    Just got an Xperia Arc S. I want to put PC Companion and Media go on my home PC, but it doesn't have an internet connection at the moment. I'm reliant on my local library for internet connectivity, and their machines block downloads of .exe files as

  • OS X is to new for FaceTime?

    I downloaded facetime about 1 year ago and since then I have updated my OS and it wont let me open facetime anymore? It says my Mac OSX is too new for facetime?

  • PowerPoint  Dissolves?

    Hi Everyone: I'm about to plunk down $700 for Flash CS3. I will be using it with PowerPoint 2007. Can I use Flash for regular dissolves in PPT 07? The dissolves in PPT 07 look TERRIBLE! Thanks!