Academic literature on the topic 'Optimization of SQL queries'
Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles
Consult the lists of relevant articles, books, theses, conference reports, and other scholarly sources on the topic 'Optimization of SQL queries.'
Next to every source in the list of references, there is an 'Add to bibliography' button. Press on it, and we will generate automatically the bibliographic reference to the chosen work in the citation style you need: APA, MLA, Harvard, Chicago, Vancouver, etc.
You can also download the full text of the academic publication as pdf and read online its abstract whenever available in the metadata.
Journal articles on the topic "Optimization of SQL queries"
Ganski, Richard A., and Harry K. T. Wong. "Optimization of nested SQL queries revisited." ACM SIGMOD Record 16, no. 3 (December 1987): 23–33. http://dx.doi.org/10.1145/38714.38723.
Full textOrdonez, Carlos. "Optimization of Linear Recursive Queries in SQL." IEEE Transactions on Knowledge and Data Engineering 22, no. 2 (February 2010): 264–77. http://dx.doi.org/10.1109/tkde.2009.83.
Full textCeri, S., and G. Gottlob. "Translating SQL Into Relational Algebra: Optimization, Semantics, and Equivalence of SQL Queries." IEEE Transactions on Software Engineering SE-11, no. 4 (April 1985): 324–45. http://dx.doi.org/10.1109/tse.1985.232223.
Full textJi, Xuechun, Maoxian Zhao, Mingyu Zhai, and Qingxi Wu. "Query Execution Optimization in Spark SQL." Scientific Programming 2020 (February 7, 2020): 1–12. http://dx.doi.org/10.1155/2020/6364752.
Full textSeo, Kwangwon, Jinhyun Ahn, and Dong-Hyuk Im. "Optimization of Shortest-Path Search on RDBMS-Based Graphs." ISPRS International Journal of Geo-Information 8, no. 12 (December 1, 2019): 550. http://dx.doi.org/10.3390/ijgi8120550.
Full textKhashan, Eman, Ali Eldesouky, and Sally Elghamrawy. "An adaptive spark-based framework for querying large-scale NoSQL and relational databases." PLOS ONE 16, no. 8 (August 19, 2021): e0255562. http://dx.doi.org/10.1371/journal.pone.0255562.
Full textK Sirohi, Arjun. "Optimization of Dynamically Generated SQL Queries for Tiny-Huge, Huge-Tiny Problem." International Journal of Database Management Systems 5, no. 1 (February 28, 2013): 53–68. http://dx.doi.org/10.5121/ijdms.2013.5105.
Full textZervoudakis, Petros, Haridimos Kondylakis, Nicolas Spyratos, and Dimitris Plexousakis. "Query Rewriting for Incremental Continuous Query Evaluation in HIFUN." Algorithms 14, no. 5 (May 8, 2021): 149. http://dx.doi.org/10.3390/a14050149.
Full textKumar, Deepak, Deepti Mehrotra, and Rohit Bansal. "Query Optimization in Crowd-Sourcing Using Multi-Objective Ant Lion Optimizer." International Journal of Information Technology and Web Engineering 14, no. 4 (October 2019): 50–63. http://dx.doi.org/10.4018/ijitwe.2019100103.
Full textKotenko, Igor, Andrey Krasov, Igor Ushakov, and Konstantin Izrailov. "An Approach for Stego-Insider Detection Based on a Hybrid NoSQL Database." Journal of Sensor and Actuator Networks 10, no. 2 (March 30, 2021): 25. http://dx.doi.org/10.3390/jsan10020025.
Full textDissertations / Theses on the topic "Optimization of SQL queries"
Hasan, Waqar. "Optimization of SQL queries for parallel machines /." Berlin [u.a.] : Springer, 1996. http://www.loc.gov/catdir/enhancements/fy0815/96039704-d.html.
Full textMuller, Leslie. "'n Ondersoek na en bydraes tot navraaghantering en -optimering deur databasisbestuurstelsels / L. Muller." Thesis, North-West University, 2006. http://hdl.handle.net/10394/1181.
Full textThesis (M.Sc. (Computer Science))--North-West University, Potchefstroom Campus, 2007.
Janeček, Jiří. "Optimalizace strukturovaných dotazů nad rozsáhlými databázemi." Master's thesis, Vysoké učení technické v Brně. Fakulta informačních technologií, 2012. http://www.nusl.cz/ntk/nusl-412868.
Full textFerreira, Mônica Ribeiro Porto. "Suporte a consultas por similaridade unárias em SQL." Universidade de São Paulo, 2008. http://www.teses.usp.br/teses/disponiveis/55/55134/tde-01042008-101843/.
Full textConventional operators for data comparison based on exact matching and total order relations are not appropriate to manage complex data, such as multimedia data (e.g. images, audio and large texts), time series and genetic sequences. In fact, the most important aspect to compare complex data is usually the similarity degree between instances, leading to the use of similarity operators to perform search and retrieval operations. Similarity operators can be classified as unary or as binary, respectively used to implement selection operations and joins. However, the Relation Algebra, employed in Relational Database Management Systems (DBMS), does not provide resources to express similarity search criteria. In order to fulfill this lack of support, an extension to the Relational Algebra is under development at GBdI-ICMC-USP (Grupo de Bases de Dados e Imagens), aiming to represent similarity queries in algebraic expressions. This work contributes to such an effort by dealing with unary similarity operators in Relational Algebra and by developing a similarity query optimizer for SIREN (Similarity Retrieval Engine), therefore allowing similarity queries to be answered by Relational DBMS
Mounagurusamy, Purani. "Parsing AQL Queries into SQL Queries using ANTLR." Thesis, Linköpings universitet, Databas och informationsteknik, 2015. http://urn.kb.se/resolve?urn=urn:nbn:se:liu:diva-124151.
Full textVenkatamuniyappa, Vijay Kumar. "Towards automatic grading of SQL queries." Kansas State University, 2018. http://hdl.handle.net/2097/38819.
Full textDepartment of Computer Science
Doina Caragea
An Introduction to Databases course involves learning the concepts of data storage, manipulation, and retrieval. Relational databases provide an ideal learning path for understanding database concepts. The Structured Query Language (SQL) is a standard language for interacting with relational database. Each database vendor implements a variation of the SQL standard. Furthermore, a particular question that asks for some data can be written in many ways, using somewhat similar or structurally different SQL queries. Evaluation of SQL queries for correctness involves the verification of the SQL syntax and semantics, as well as verification of the output of queries and the usage of correct clauses. An evaluation tool should be independent of the specific database queried, and of the nature of the queries, and should allow multiple ways of providing input and retrieving the output. In this report, we have developed an evaluation tool for SQL queries, which checks for correctness of MySQL and PostgreSQL queries with the help of a parser that can identify SQL clauses. The tool developed will act as a portal for students to test and improve their queries, and finally to submit the queries for grading. The tool minimizes the manual effort required while grading, by taking advantage of the SQL parser to check queries for correctness, provide feedback, and allow submission.
Jain, Ritika. "Validation of SQL queries over streaming warehouses." Thesis, University of British Columbia, 2017. http://hdl.handle.net/2429/62867.
Full textScience, Faculty of
Computer Science, Department of
Graduate
Manzi, Eric R. "SQL-ACT : content-based and history-aware input prediction for non-trivial SQL queries." Thesis, Massachusetts Institute of Technology, 2017. http://hdl.handle.net/1721.1/119534.
Full textThis electronic version was submitted by the student author. The certified thesis is available in the Institute Archives and Special Collections.
Cataloged from student-submitted PDF version of thesis.
Includes bibliographical references (pages 79-81).
This thesis presents SqlAct, a SQL auto-completion system that uses content-based and history-aware input prediction to assist in the process of composing non-trivial queries. By offering the most relevant suggestions to complete the partially typed query first at the word-level and then at the statement-level, SqlAct hopes to help both novice and expert SQL developers to increase their productivity. Two approaches are explored: word-level suggestions are optimized based on the database's schema and content statistics, and statement-level suggestions that rely on Long Short-term Memory (LSTM) Recurrent Neural Networks language models trained on historical queries. The word-level model is integrated in a responsive command-line interface database client which is evaluated quantitatively and qualitatively. Results shows SqlAct provides a highly-responsive interface that makes high quality suggestions to complete the currently typed query. Possible directions for integration with the word-level model in the command-line tool are explored as well as the planned evaluation techniques.
by Eric R. Manzi.
M. Eng.
Escalante, Osuna Carlos. "Estimating the cost of GraphLog queries." Thesis, National Library of Canada = Bibliothèque nationale du Canada, 1997. http://www.collectionscanada.ca/obj/s4/f2/dsk2/tape16/PQDD_0002/NQ32743.pdf.
Full textTrigoni, Agathoniki. "Semantic optimization of OQL queries." Thesis, University of Cambridge, 2002. http://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.620163.
Full textBooks on the topic "Optimization of SQL queries"
Hasan, Waqar, ed. Optimization of SQL Queries for Parallel Machines. Berlin, Heidelberg: Springer Berlin Heidelberg, 1996. http://dx.doi.org/10.1007/bfb0020710.
Full textChurcher, Clare. Beginning SQL Queries. Berkeley, CA: Apress, 2016. http://dx.doi.org/10.1007/978-1-4842-1955-3.
Full textTennick, Art. Practical SQL queries for Microsoft SQL server 2008 R2. New York: McGraw-Hill, 2011.
Find full textLewis, Gary M. ORACLE reporting: Queries with SQL objects. Cambridge, MA: Komenda Pub. Co., 1995.
Find full textAgbenorhevi, William. Relational queries and query optimization. London: University ofEast London, 1997.
Find full textMicrosoft SQL Server 2000 optimization guide. Upper Saddle River, N.J: Prentice Hall PTR, 2001.
Find full textPollack, Edward. Introduction to SQL Server Query Optimization. Berkeley, CA: Apress, 2019. http://dx.doi.org/10.1007/978-1-4842-5144-7.
Full textTennick, Art. Practical DMX queries for SQL server analysis services. New York: McGraw-Hill, 2010.
Find full text1955-, Hernandez Michael J., and Hernandez Michael J. 1955-, eds. SQL queries for mere mortals: A hands-on guide to data manipulation in SQL. 2nd ed. Upper Saddle River, NJ: Addison-Wesley, 2008.
Find full textBook chapters on the topic "Optimization of SQL queries"
Aggelis, Vasilis, and Stavros Cosmadakis. "Optimization of Nested SQL Queries by Tableau Equivalence." In Research Issues in Structured and Semistructured Database Programming, 31–42. Berlin, Heidelberg: Springer Berlin Heidelberg, 2000. http://dx.doi.org/10.1007/3-540-44543-9_3.
Full textHameurlain, A., and F. Morvan. "An optimization method of data communication and control for parallel execution of SQL queries." In Lecture Notes in Computer Science, 301–12. Berlin, Heidelberg: Springer Berlin Heidelberg, 1993. http://dx.doi.org/10.1007/3-540-57234-1_27.
Full textCybula, Piotr, and Kazimierz Subieta. "Query Optimization through Cached Queries for Object-Oriented Query Language SBQL." In SOFSEM 2010: Theory and Practice of Computer Science, 308–20. Berlin, Heidelberg: Springer Berlin Heidelberg, 2010. http://dx.doi.org/10.1007/978-3-642-11266-9_26.
Full textPazos R., Rodolfo A., Andres A. Verastegui, José A. Martínez F., Martin Carpio, and Juana Gaspar H. "Translation of Natural Language Queries to SQL that Involve Aggregate Functions, Grouping and Subqueries for a Natural Language Interface to Databases." In Fuzzy Logic Augmentation of Neural and Optimization Algorithms: Theoretical Aspects and Real Applications, 431–48. Cham: Springer International Publishing, 2018. http://dx.doi.org/10.1007/978-3-319-71008-2_31.
Full textHarkins, Susan Sales, and Martin W. P. Reid. "Queries: The Sequel." In SQL: Access to SQL Server, 253–78. Berkeley, CA: Apress, 2002. http://dx.doi.org/10.1007/978-1-4302-1573-8_11.
Full textBatra, Rahul. "Writing Basic Queries." In SQL Primer, 47–56. Berkeley, CA: Apress, 2018. http://dx.doi.org/10.1007/978-1-4842-3576-8_5.
Full textDarie, Cristian, Karli Watson, Chris Hart, Kevin Hoffman, and Julian Skinner. "Combining SQL Queries." In The Programmer’s Guide to SQL, 147–66. Berkeley, CA: Apress, 2003. http://dx.doi.org/10.1007/978-1-4302-0800-6_6.
Full textBatra, Rahul. "Doing More with Queries." In SQL Primer, 75–85. Berkeley, CA: Apress, 2018. http://dx.doi.org/10.1007/978-1-4842-3576-8_8.
Full textHasler, Tony. "Rewriting Queries." In Exper t Oracle SQL, 425–44. Berkeley, CA: Apress, 2014. http://dx.doi.org/10.1007/978-1-4302-5978-7_16.
Full textKellenberger, Kathi, and Lee Everest. "Writing Advanced Queries." In Beginning T-SQL, 611–58. Berkeley, CA: Apress, 2020. http://dx.doi.org/10.1007/978-1-4842-6606-9_16.
Full textConference papers on the topic "Optimization of SQL queries"
Ganski, Richard A., and Harry K. T. Wong. "Optimization of nested SQL queries revisited." In the 1987 ACM SIGMOD international conference. New York, New York, USA: ACM Press, 1987. http://dx.doi.org/10.1145/38713.38723.
Full textMyalapalli, Vamsi Krishna, and A. S. N. Chakravarthy. "Revamping SQL queries for cost based optimization." In 2016 International Conference on Circuits, Controls, Communications and Computing (I4C). IEEE, 2016. http://dx.doi.org/10.1109/cimca.2016.8053263.
Full textOrdonez, Carlos, Javier García-García, and Zhibo Chen. "Dynamic optimization of generalized SQL queries with horizontal aggregations." In the 2012 international conference. New York, New York, USA: ACM Press, 2012. http://dx.doi.org/10.1145/2213836.2213919.
Full textDas, Gopal Chandra, and Jayant R. Haritsa. "Robust Heuristics for Scalable Optimization of Complex SQL Queries." In 2007 IEEE 23rd International Conference on Data Engineering. IEEE, 2007. http://dx.doi.org/10.1109/icde.2007.368993.
Full textLee, Kyeong-Min, InA Kim, and Kyu-Chul Lee. "DQN-based Join Order Optimization by Learning Experiences of Running Queries on Spark SQL." In 2020 International Conference on Data Mining Workshops (ICDMW). IEEE, 2020. http://dx.doi.org/10.1109/icdmw51313.2020.00107.
Full textK. Sirohi, Arjun, and Vidushi Sharma. "Context-sensitive Indexes in RDBMS for Performance Optimization of SQL Queries in Multi-tenant/Multi-application Environments." In 17th International Conference on Enterprise Information Systems. SCITEPRESS - Science and and Technology Publications, 2015. http://dx.doi.org/10.5220/0005350802590270.
Full textMotwani, Rajeev, Shubha U. Nabar, and Dilys Thomas. "Auditing SQL Queries." In 2008 IEEE 24th International Conference on Data Engineering (ICDE 2008). IEEE, 2008. http://dx.doi.org/10.1109/icde.2008.4497437.
Full textZhong, Zhikai. "Plunger Style Optimization by Machine Learning." In SPE Annual Technical Conference and Exhibition. SPE, 2021. http://dx.doi.org/10.2118/208633-stu.
Full textPark, Hyun-A., Justin Zhan, and Dong Hoon Lee. "Privacy Preserving SQL Queries." In 2008 International Conference on Information Security and Assurance ISA. IEEE, 2008. http://dx.doi.org/10.1109/isa.2008.40.
Full textKaoshik, Ronak, Rohit Patil, Prakash R, Shaurya Agarawal, Naman Jain, and Mayank Singh. "ACL-SQL: Generating SQL Queries from Natural Language." In CODS COMAD 2021: 8th ACM IKDD CODS and 26th COMAD. New York, NY, USA: ACM, 2020. http://dx.doi.org/10.1145/3430984.3431046.
Full textReports on the topic "Optimization of SQL queries"
Lupher, Antonio. Shark: SQL and Analytics with Cost-Based Query Optimization on Coarse-Grained Distributed Memory. Fort Belvoir, VA: Defense Technical Information Center, January 2014. http://dx.doi.org/10.21236/ada603561.
Full text