Cargando…

Transact-SQL cookbook /

This unique cookbook contains a wealth of solutions to problems that SQL programmers face all the time. The recipes inside range from how to perform simple tasks, like importing external data, to ways of handling issues that are more complicated, like set algebra. Authors Ales Spetic and Jonathan Ge...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Špetič, Aleš
Otros Autores: Gennick, Jonathan
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Sebastopol, Calif. ; Farnham : O'Reilly, 2002.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 a 4500
001 OR_ocm52356440
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 030603s2002 enka o 001 0 eng d
040 |a HUA  |b eng  |e pn  |c HUA  |d OCLCQ  |d CEF  |d OCLCQ  |d OCLCF  |d OCLCQ  |d CUSER  |d YDXCP  |d OCLCQ  |d E7B  |d OCLCQ  |d COO  |d FEM  |d INARC  |d OCL  |d MOQ  |d AU@  |d STF  |d RDF  |d UKAHL  |d OCLCO  |d OCLCQ 
015 |a GBA2Y5994  |2 bnb 
019 |a 326763188  |a 861530012  |a 966097012  |a 968117298  |a 969022152  |a 1036961462 
020 |a 9780596515621 
020 |a 0596515626 
020 |a 1565927567 
020 |a 9781565927568 
020 |a 9780596552039 
020 |a 0596552033 
020 |z 9781565927568 
035 |a (OCoLC)52356440  |z (OCoLC)326763188  |z (OCoLC)861530012  |z (OCoLC)966097012  |z (OCoLC)968117298  |z (OCoLC)969022152  |z (OCoLC)1036961462 
037 |a 7543689875625613301  |b TotalBoox  |f Ebook only  |n www.totalboox.com 
050 4 |a QA76.73.S67  |b S64 2002 
082 0 4 |a 005.756  |2 21 
084 |a 54.64  |2 bcl 
049 |a UAMI 
100 1 |a Špetič, Aleš. 
245 1 0 |a Transact-SQL cookbook /  |c by Aleš Špetič and Jonathan Gennick. 
260 |a Sebastopol, Calif. ;  |a Farnham :  |b O'Reilly,  |c 2002. 
300 |a 1 online resource (xviii, 282 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
500 |a Includes index. 
588 0 |a Print version record. 
520 |a This unique cookbook contains a wealth of solutions to problems that SQL programmers face all the time. The recipes inside range from how to perform simple tasks, like importing external data, to ways of handling issues that are more complicated, like set algebra. Authors Ales Spetic and Jonathan Gennick, two authorities with extensive database and SQL programming experience, include a discussion with each recipe to explain the logic and concepts underlying the solution. SQL (Structured Query Language) is the closest thing to a standard query language that currently exists, and Transact-SQL -- a full-featured programming language that dramatically extends the power of SQL -- is the procedural language of choice for both Microsoft SQL Server and Sybase SQL Server systems. The Transact-SQL Cookbook is designed so you can use the recipes directly, as a source of ideas, or as a way to learn a little more about SQL and what you can do with it. Topics covered include:<li type="disc">Audit logging. In addition to recipes for implementing an audit log, this chapter also includes recipes for: improving performance where large log tables are involved; supporting multiple-languages; and simulating server push.<li type="disc">Hierarchies. Recipes show you how to manipulate hierarchical data using Transact-SQL.<li type="disc">Importing data. This chapter introduces concepts like normalization and recipes useful for working with imported data tables.<li type="disc">Sets. Recipes demonstrate different operations, such as how to find common elements, summarize the data in a set, and find the element in a set that represents an extreme.<li type="disc">Statistics. This chapter?s recipes show you how to effectively use SQL for common statistical operations from means and standard deviations to weighted moving averages.<li type="disc">Temporal data. Recipes demonstrate how to construct queries against time-based data.<li type="disc">Data Structures. This chapter shows how to manipulate data structures like stacks, queues, matrices, and arrays. With an abundance of recipes to help you get your job done more efficiently, the Transact-SQL Cookbook is sure to become an essential part of your library 
505 0 |a Transact-SQL Cookbook; Audience for This Book; Which Platform and Version?; Structure of This Book; Conventions Used in This Book; About the Code; Comments and Questions; Acknowledgments; From Jonathan; 1. Pivot Tables; 1.1.2. Solution; 1.1.3. Discussion; 2. Sets; 2.1.1.2. Elements; 2.1.1.3. Universes; 2.1.2. Set Operations; 2.1.2.2. Intersection; 2.1.2.3. Union; 2.1.2.4. Complement; 2.1.2.5. Difference; 2.2. The Students Example; 2.3. Implementing Set Difference; 2.3.2. Solution; 2.3.2.2. Subtracting one set from all others; 2.3.3. Discussion; 2.3.3.2. Subtracting one set from all others 
505 8 |a 2.3.3.3. Subtracting other sets from one2.4. Comparing Two Sets for Equality; 2.4.2. Solution; 2.4.3. Discussion; 2.5. Implementing Partial Intersection; 2.5.2. Solution; 2.5.3. Discussion; 2.6. Implementing Full Intersection; 2.6.2. Solution; 2.6.3. Discussion; 2.7. Classifying Subsets; 2.7.2. Solution; 2.7.3. Discussion; 2.8. Summarizing Classes of Sets; 2.8.2. Solution; 2.8.3. Discussion; 2.9. Aggregating Aggregates; 2.9.2. Solution; 2.9.3. Discussion; 2.10. Summarizing Aggregated Classes; 2.10.2. Solution; 2.10.3. Discussion; 2.11. Including Nonaggregated Columns; 2.11.2. Solution 
505 8 |a 2.11.3. Discussion2.12. Finding the Top N Values in a Set; 2.12.2. Solution; 2.12.3. Discussion; 2.12.3.2. Using a self-join; 2.13. Reporting the Size of a Set & s Complement; 2.13.2. Solution; 2.13.3. Discussion; 2.14. Finding the Complement of a Set; 2.14.2. Solution; 2.14.2.2. Step 2: Run the query; 2.14.3. Discussion; 2.15. Finding the Complement of a Missing Set; 2.15.2. Solution; 2.15.2.2. Solution 2: Create a student master table; 2.15.3. Discussion; 2.16. Finding Complements of Sets with Different Universes; 2.16.2. Solution; 2.16.3. Discussion; 2.17. Comparing a Set with Its Universe 
505 8 |a 2.17.2. Solution2.17.3. Discussion; 2.18. Dynamic Classification System; 2.18.2. Solution; 2.18.2.2. Step 2: Running the query; 2.18.3. Discussion; 3. Data Structures; 3.1.1.2. Regions; 3.1.1.3. Runs; 3.1.1.4. Sequences; 3.1.2. Stacks and Queues; 3.1.2.2. Queues; 3.1.2.3. Priority queues; 3.1.3. Arrays and Matrices; 3.1.3.2. Matrices; 3.2. Working Example; 3.2.2. Arrays; 3.2.3. Matrices; 3.3. Finding Regions; 3.3.2. Solution; 3.3.3. Discussion; 3.4. Reporting Region Boundaries; 3.4.2. Solution; 3.4.3. Discussion; 3.5. Limiting Region Size; 3.5.2. Solution; 3.5.3. Discussion 
505 8 |a 3.6. Ranking Regions by Size3.6.2. Solution; 3.6.3. Discussion; 3.7. Working with Sequences; 3.7.2. Solution; 3.7.3. Discussion; 3.8. Working with Runs; 3.8.2. Solutions; 3.8.3. Discussion; 3.9. Cumulative Aggregates in Lists; 3.9.2. Solution; 3.9.3. Discussion; 3.10. Implementing a Stack; 3.10.2. Solution; 3.10.2.2. POP function in SQL; 3.10.2.3. PUSH function in SQL; 3.10.3. Discussion; 3.11. Implementing Queues; 3.11.2. Solution; 3.11.2.2. DEQUEUE function in SQL; 3.11.2.3. ENQUEUE function in SQL; 3.11.3. Discussion; 3.12. Implementing Priority Queues; 3.12.2. Solution 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a SQL (Computer program language) 
650 0 |a Relational databases. 
650 6 |a SQL (Langage de programmation) 
650 6 |a Bases de données relationnelles. 
650 1 7 |a SQL (Computer program language)  |2 bisacsh 
650 7 |a Relational databases.  |2 fast  |0 (OCoLC)fst01093575 
650 7 |a SQL (Computer program language)  |2 fast  |0 (OCoLC)fst01102869 
650 1 7 |a SQL.  |2 gtt 
650 1 7 |a Microsoft SQL Server.  |2 gtt 
650 1 7 |a Sybase.  |2 gtt 
655 2 |a Cookbook 
655 7 |a cookbooks.  |2 aat 
655 7 |a Cookbooks.  |2 fast  |0 (OCoLC)fst01752725 
655 7 |a Cookbooks.  |2 lcgft 
655 7 |a Livres de cuisine.  |2 rvmgf 
700 1 |a Gennick, Jonathan. 
776 0 8 |i Print version:  |a Špetič, Aleš.  |t Transact-SQL cookbook.  |d Sebastopol, Calif. ; Farnham : O'Reilly, 2002  |z 1565927567  |w (OCoLC)49043832 
856 4 0 |u https://learning.oreilly.com/library/view/~/1565927567/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH28633336 
938 |a ebrary  |b EBRY  |n ebr10758252 
938 |a Internet Archive  |b INAR  |n transactsqlcookb00spet 
938 |a YBP Library Services  |b YANK  |n 7353861 
994 |a 92  |b IZTAP