jump to:allmastodonblueskylemmylobstersdevstackwikirsshn
wwebbit
view: | | |

Knowledge / everything · hot matching “sql”

3 shown · updated 6s ago · read only
  1. Improving the SELECT query performance on a large table in SQL Server (stackoverflow.com)stack

    4 points by HOY in stackoverflow.com · 13y ago · stack

    Q: How can I improve the performance of my queries ? Details: I have one table with 200k records (Sales) and one function getView_sls(@TON_orNPS) Below query takes 10-12 seconds SELECT * FROM Sales Below query takes 32-34 seconds SELECT * FROM getView_sls('TON') Below is my sale…
  2. How to convert the Long value to String using sql (stackoverflow.com)stack

    3 points by vijayboli in stackoverflow.com · 13y ago · stack

    I am doing a long to string conversion using java in following way. Long longValue = 367L; String str = Long.toString(longValue, 36).toUpperCase(); this is returning me as value A7. how can achieve this in doing oracle sql. UPDATED: Hi, I have analyzed how java code is working t…
    filed under plsql