0
Your cart

Your cart is empty

Browse All Departments
Price
  • R100 - R250 (6)
  • R250 - R500 (41)
  • R500+ (497)
  • -
Status
Format
Author / Contributor
Publisher

Books > Computing & IT > Computer software packages > Database software > General

Securing SQL Server - Protecting Your Database from Attackers (Paperback, 3rd edition): Denny Cherry Securing SQL Server - Protecting Your Database from Attackers (Paperback, 3rd edition)
Denny Cherry
R1,101 Discovery Miles 11 010 Ships in 12 - 17 working days

SQL server is the most widely-used database platform in the world, and a large percentage of these databases are not properly secured, exposing sensitive customer and business data to attack. In Securing SQL Server, Third Edition, you will learn about the potential attack vectors that can be used to break into SQL server databases as well as how to protect databases from these attacks. In this book, Denny Cherry - a Microsoft SQL MVP and one of the biggest names in SQL server - will teach you how to properly secure an SQL server database from internal and external threats using best practices as well as specific tricks that the author employs in his role as a consultant for some of the largest SQL server deployments in the world. Fully updated to cover the latest technology in SQL Server 2014, this new edition walks you through how to secure new features of the 2014 release. New topics in the book include vLANs, setting up RRAS, anti-virus installs, key management, moving from plaintext to encrypted values in an existing application, securing Analysis Services Objects, Managed Service Accounts, OS rights needed by the DBA, SQL Agent Security, Table Permissions, Views, Stored Procedures, Functions, Service Broker Objects, and much more.

MySQL Pocket Reference 2e (Paperback, 2nd Revised edition): George Reese MySQL Pocket Reference 2e (Paperback, 2nd Revised edition)
George Reese
R362 R265 Discovery Miles 2 650 Save R97 (27%) Ships in 12 - 17 working days

This handy pocket reference gives you instant reminders on how to use important MySQL functions, especially in conjunction with key parts of the LAMP open source infrastructure. MySQL is so rich in features that no administrator or programmer can stay familiar with all of them. "MySQL Pocket Reference" is an ideal on-the-job companion, well organized to help you find and adapt the statements you need - quickly. To help you be more efficient in your work, this handy pocket reference gives you instant reminders on how to use important MySQL functions, especially in conjunction with key parts of the LAMP open source infrastructure. This powerful database system is so rich in features that no administrator or programmer can stay familiar with all of them."MySQL Pocket Reference" is an ideal on-the-job companion, well organized to help you find and adapt the statements you need - quickly. Updated for the latest versions of this popular database, this edition covers many complex features that have been added to MySQL 5.0 and 5.1, including a section dedicated to stored procedures and triggers. After a brief introduction on installation and initial setup, the book explains: how to configure MySQL, such as setting the root password; MySQL data types, including numerics, strings, dates, and complex types; SQL syntax, commands, data types, operators, and functions; arithmetic, comparison and logical operators; aggregate and general functions; stored procedures and triggers, including procedure definition, procedure calls, procedure management, cursors, and triggers.You don't have time to stop and thumb through an exhaustive reference when you're hard at work. This portable and affordable guide is small enough to fit into your pocket, and gives you a convenient reference that you can consult anywhere. When you reach a sticking point and need to get to a solution quickly, the "MySQL Pocket Reference" is the book you want to have.

Architecting HBase Applications (Paperback): Jean-Marc Spaggiari, Kevin O'Dell Architecting HBase Applications (Paperback)
Jean-Marc Spaggiari, Kevin O'Dell
R973 R710 Discovery Miles 7 100 Save R263 (27%) Ships in 12 - 17 working days

Lots of HBase books, online HBase guides, and HBase mailing lists/forums are available if you need to know how HBase works. But if you want to take a deep dive into use cases, features, and troubleshooting, Architecting HBase Applications is the right source for you. With this book, you'll learn a controlled set of APIs that coincide with use-case examples and easily deployed use-case models, as well as sizing/best practices to help jump start your enterprise application development and deployment. Learn design patterns-and not just components-necessary for a successful HBase deployment Go in depth into all the HBase shell operations and API calls required to implement documented use cases Become familiar with the most common issues faced by HBase users, identify the causes, and understand the consequences Learn document-specific API calls that are tricky or very important for users Get use-case examples for every topic presented

The Art of SQL (Paperback): Stephane Faroult The Art of SQL (Paperback)
Stephane Faroult; Contributions by Peter Robson
R1,338 R954 Discovery Miles 9 540 Save R384 (29%) Ships in 12 - 17 working days

For all the buzz about trendy IT techniques, data processing is still at the core of our systems, especially now that enterprises all over the world are confronted with exploding volumes of data. Database performance has become a major headache, and most IT departments believe that developers should provide simple SQL code to solve immediate problems and let DBAs tune any "bad SQL" later.

In "The Art of SQL," author and SQL expert Stephane Faroult argues that this "safe approach" only leads to disaster. His insightful book, named after Art of War by Sun Tzu, contends that writing quick inefficient code is sweeping the dirt under the rug. SQL code may run for 5 to 10 years, surviving several major releases of the database management system and on several generations of hardware. The code must be fast and sound from the start, and that requires a firm understanding of SQL and relational theory.

"The Art of SQL" offers best practices that teach experienced SQL users to focus on strategy rather than specifics. Faroult's approach takes a page from Sun Tzu's classic treatise by viewing database design as a military campaign. You need knowledge, skills, and talent. Talent can't be taught, but every strategist from Sun Tzu to modern-day generals believed that it can be nurtured through the experience of others. They passed on their experience acquired in the field through basic principles that served as guiding stars amid the sound and fury of battle. This is what Faroult does with SQL.

Like a successful battle plan, good architectural choices are based on contingencies. What if the volume of this or that table increases unexpectedly? What if, following a merger, the numberof users doubles? What if you want to keep several years of data online? Faroult's way of looking at SQL performance may be unconventional and unique, but he's deadly serious about writing good SQL and using SQL well. "The Art of SQL" is not a cookbook, listing problems and giving recipes. The aim is to get you-and your manager-to raise good questions.

Building REST APIs with Flask - Create Python Web Services with MySQL (Paperback, 1st ed.): Kunal Relan Building REST APIs with Flask - Create Python Web Services with MySQL (Paperback, 1st ed.)
Kunal Relan
R1,374 R1,071 Discovery Miles 10 710 Save R303 (22%) Ships in 10 - 15 working days

Develop RESTful web services using the Flask micro-framework and integrate them using MySQL. Use Flask to develop, deploy, and manage REST APIs with easy-to-read and understand Python code. Solve your problem from a choice of libraries. Learn to use MySQL as the web services database for your Flask API using SQLAlchemy ORM. Building REST APIs with Flask provides a primer on Flask, RESTful services, and working with pip to set up your virtual environment. The key differences between NoSQL and SQL are covered, and you are taught how to connect MySQL and Flask using SQLAlchemy. Author Kunal Relan presents best practices for creating REST APIs and guides you in structuring your app and testing REST endpoints. He teaches you how to set up authentication and render HTML using views. You learn how to write unit tests for your REST APIs, and understand mocks, assertions, and integration testing. You will know how to document your REST APIs, deploy your Flask application on all of the major cloud platforms, and debug and monitor your Flask application. What You'll Learn Use MySQL to create Flask REST APIs Test REST endpoints Create CRUD endpoints with Flask and MySQL Deploy Flask on all of the major cloud platforms Monitor your Flask application Who This Book Is For Python developers interested in REST API development using Flask and web developers with basic programming knowledge who want to learn how Python and REST APIs work together. Readers should be familiar with Python (command line, or at least pip) and MySQL.

Joe Celko's Data, Measurements and Standards in SQL (Paperback): Joe Celko Joe Celko's Data, Measurements and Standards in SQL (Paperback)
Joe Celko
R1,195 R1,127 Discovery Miles 11 270 Save R68 (6%) Ships in 12 - 17 working days

Joe Celko has looked deep into the code of SQL programmers and found a consistent and troubling pattern - a frightening lack of consistency between their individual encoding schemes and those of the industries in which they operate. This translates into a series of incompatible databases, each one an island unto itself that is unable to share information with others in an age of internationalization and business interdependence. Such incompatibility severely hinders information flow and the quality of company data.
Data, Measurements and Standards in SQL reveals the shift these programmers need to make to overcome this deadlock. By collecting and detailing the diverse standards of myriad industries, and then giving a declaration for the units that can be used in an SQL schema, Celko enables readers to write and implement portable data that can interface to any number of external application systems
This book doesn't limit itself to one subject, but serves as a detailed synopsis of measurement scales and data standards for all industries, thereby giving RDBMS programmers and designers the knowledge and know-how they need to communicate effectively across business boundaries.
* Collects and details the diverse data standards of myriad industries under one cover, thereby creating a definitive, one-stop-shopping opportunity for database programmers.
* Enables readers to write and implement portable data that can interface to any number external application systems, allowing readers to cross business boundaries and move up the career ladder.
* Expert advice from one of the most-read SQL authors in the world who is well known for his ten years of service on the ANSI SQL standards committee and Readers Choice Award winning column in Intelligent Enterprise.
"

Practical DMX Queries for Microsoft SQL Server Analysis Services 2008 (Paperback, Ed): Art Tennick Practical DMX Queries for Microsoft SQL Server Analysis Services 2008 (Paperback, Ed)
Art Tennick
R1,349 R1,066 Discovery Miles 10 660 Save R283 (21%) Ships in 10 - 15 working days

Publisher's Note: Products purchased from Third Party sellers are not guaranteed by the publisher for quality, authenticity, or access to any online entitlements included with the product. 250+ Ready-to-Use, Powerful DMX QueriesTransform data mining model information into actionable business intelligence using the Data Mining Extensions (DMX) language. Practical DMX Queries for Microsoft SQL Server Analysis Services 2008 contains more than 250 downloadable DMX queries you can use to extract and visualize data. The application, syntax, and results of each query are described in detail. The book emphasizes DMX for use in SSMS against SSAS, but the queries also apply to SSRS, SSIS, DMX in SQL, WinForms, WebForms, and many other applications. Techniques for generating DMX syntax from graphical tools are also demonstrated in this valuable resource. View cases within data mining structures and models using DMX Case queries Examine the content of a data mining model with DMX Content queries Perform DMX Prediction queries based on the Decision Trees algorithm and the Time Series algorithm Run Prediction and Cluster queries based on the Clustering algorithm Execute Prediction queries with Association and Sequence Clustering algorithms Use DMX DDL queries to create, alter, drop, back up, and restore data mining objects Display various parameters for each algorithm with Schema queries Examine the values of discrete, discretized, and continuous structure columns using Column queries Use graphical interfaces to generate Prediction, Content, Cluster, and DDL queries Deliver DMX query results to end users Download the source code from www.mhprofessional.com/computingdownload

Microsoft SQL Server 2019: A Beginner's Guide, Seventh Edition (Paperback, 7th edition): Dusan Petkovic Microsoft SQL Server 2019: A Beginner's Guide, Seventh Edition (Paperback, 7th edition)
Dusan Petkovic
R1,241 R986 Discovery Miles 9 860 Save R255 (21%) Ships in 9 - 15 working days

Up-to-date Microsoft SQL Server 2019 skills made easy! Get up and running on Microsoft SQL Server 2019 in no time with help from this thoroughly revised, practical resource. The book offers thorough coverage of SQL management and development and features full details on the newest machine learning, BI, reporting, and security features. Filled with new examples and hands-on exercises, Microsoft SQL Server 2019: A Beginner's Guide, Seventh Edition, starts by explaining fundamental relational database system concepts. From there, you will learn how to write Transact-SQL statements; execute simple and complex database queries; handle management, backup, and security; and use the powerful analysis and BI tools. XML, spatial data, and full-text search are also covered in this complete and rigorous introductory guide. * Revised from the ground up to cover the latest version of SQL Server * Designed for new users as well as experienced users who are migrating to SQL Server 2019 * Written by a prominent professor and best-selling author

IBM DB2 Administration Guide - Installation, Upgrade and Configuration of IBM DB2 on RHEL 8, Windows 10 and IBM Cloud (English... IBM DB2 Administration Guide - Installation, Upgrade and Configuration of IBM DB2 on RHEL 8, Windows 10 and IBM Cloud (English Edition) (Paperback)
A. S. Bluck
R1,365 Discovery Miles 13 650 Ships in 10 - 15 working days
Flash 8 Game Developing Hand Book (Paperback): Serge Melnihov Flash 8 Game Developing Hand Book (Paperback)
Serge Melnihov
R141 Discovery Miles 1 410 Ships in 12 - 17 working days

This is a shareware developer's and game programmer's guide to creating games with Flash technology. The building blocks of Flash games tools are explained in this guide for developing high-quality games with Web programming. It demonstrates the construction of these tools, the methods for importing graphics in GIF/PNG and JPEG formats, and the creation of clips, buttons, and animation effects. Motion Tween and Shape Tween animations are presented, and instructions for changing Action Script code for working with the program shell, integrating the Shockwave Flash component into the Delphi environment, and writing a C program for working with a Flash movie are provided. Practical information on an Action Script, coding the game scenario, game interaction with the server, and preparing game graphics will help the shareware developer and game programmer utilize Flash tools effectively. The accompanying CD-ROM includes Flash project, graphic and SWF files, sever PHP scripts, executable files for the key generator in Delphi, MSVC++, and Perl, and key files for game. It also includes the fontonizer program (fontonizer1), the program for displaying all Flash animations on a Web page (saveflash_5460), powerful shareware file manager (a_Frigate3_Pro_v30), and a professional shareware icon editor with ready-to-use effects (awiconsprosetup).

Oracle Database Administration for Microsoft SQL Server DBAs (Paperback, Ed): Michelle Malcher Oracle Database Administration for Microsoft SQL Server DBAs (Paperback, Ed)
Michelle Malcher
R1,562 R1,219 Discovery Miles 12 190 Save R343 (22%) Ships in 10 - 15 working days

Publisher's Note: Products purchased from Third Party sellers are not guaranteed by the publisher for quality, authenticity, or access to any online entitlements included with the product. Apply Your SQL Server DBA Skills to Oracle Database AdministrationUse your SQL Server experience to set up and maintain a high-performance Oracle Database environment. Written by a DBA with expertise in both platforms, Oracle Database Administration for Microsoft SQL Server DBAs illustrates each technique with clear explanations, examples, and comparison tables. Get full details on Oracle Database intervals, creation assistants, management techniques, and query tools. High availability, disaster recovery, and security procedures are also extensively covered in this comprehensive Oracle Press guide. Install and configure Oracle Database on Windows or Linux systems Administer and monitor databases from Oracle Enterprise Manager Implement robust security using roles, permissions, and privileges Back up and restore databases with Oracle Recovery Manager Use the Oracle cost-based optimizer to tune performance Write, debug, and execute PL/SQL queries using Oracle SQL Developer Maximize availability with Oracle Real Application Clusters Build standby and failover servers using Oracle Data Guard

Professional Microsoft SQL Server 2014 Integration  Services (Paperback): B. Knight Professional Microsoft SQL Server 2014 Integration Services (Paperback)
B. Knight
R1,538 R1,070 Discovery Miles 10 700 Save R468 (30%) Ships in 12 - 17 working days

Fill the gap between planning and doing with SSIS 2014 The 2014 release of Microsoft's SQL Server Integration Services provides enhancements for managing extraction, transformation, and load operations, plus expanded in-memory capabilities, improved disaster recovery, increased scalability, and much more. The increased functionality will streamline your ETL processes and smooth out your workflow, but the catch is that your workflow must change. New tools come with new best practices, and Professional Microsoft SQL Server 2014 Integration Services will keep you ahead of the curve. SQL Server MVP Brian Knight is the most respected name in the business, and your ultimate guide to navigating the changes to use Microsoft SQL Server Integration Services 2014 to your utmost advantage. * Implement new best practices for effective use of SSIS * Work through tutorials for hands-on learning of complex techniques * Read case studies that illustrate the more advanced concepts * Learn directly from the foremost authority on SSIS SQL Server Integration Services is a complex tool, but it's the lifeblood of your work. You need to know it inside out, and you must understand the full potential of its capabilities in order to use it effectively. You need to make sure the right architecture is in place. Professional Microsoft SQL Server 2014 Integration Services is your roadmap to understanding SSIS on a fundamental level, and setting yourself up for success.

Advanced Transact-SQL for SQL Server 2000 (Paperback, Softcover reprint of the original 1st ed.): Itzik Ben-Gan, Tom Moreau Advanced Transact-SQL for SQL Server 2000 (Paperback, Softcover reprint of the original 1st ed.)
Itzik Ben-Gan, Tom Moreau
R1,781 R1,445 Discovery Miles 14 450 Save R336 (19%) Ships in 10 - 15 working days

In "Advanced Transact-SQL for SQL Server 2000," authors Itzik Ben-Gan and Thomas Moreau explore the powerful capabilities of Transact-SQL (T-SQL). Ben-Gan and Moreau offer solutions to common problems encountered using all versions of SQL Server, with a focus on the latest version, SQL Server 2000.

Expert tips and real code examples teach advanced database programmers to write more efficient and better-performing code that takes full advantage of T-SQL. The authors offer practical solutions to the everyday problems programmers face and include in-depth information on advanced T-SQL topics such as joins, subqueries, stored procedures, triggers, user-defined functions (UDFs), indexed views, cascading actions, federated views, hierarchical structures, cursors, and more.

Mastering SQL Server 2008 (Paperback, New): M. Lee Mastering SQL Server 2008 (Paperback, New)
M. Lee
R1,738 Discovery Miles 17 380 Ships in 10 - 15 working days

As Microsoft's bestselling database manager, SQL Server is highly flexible and customizable, and has excellent support--the 2008 version offers several significant new capabilities. This book offers accurate and expert coverage on the updates to SQL Server 2008 such as its enhanced security; the ability to encrypt an entire database, data files, and log files without the need for application changes; a scalable infrastructure that can manage reports and analysis of any size and complexity; and its extensive performance data collection.

Exam Ref 70-761 Querying Data with Transact-SQL (Paperback): Itzik Ben-Gan Exam Ref 70-761 Querying Data with Transact-SQL (Paperback)
Itzik Ben-Gan
R912 R712 Discovery Miles 7 120 Save R200 (22%) Ships in 12 - 17 working days

Prepare for Microsoft Exam 70-761-and help demonstrate your real-world mastery of SQL Server 2016 Transact-SQL data management, queries, and database programming. Designed for experienced IT professionals ready to advance their status, Exam Ref focuses on the critical-thinking and decision-making acumen needed for success at the MCSA level. Focus on the expertise measured by these objectives: * Filter, sort, join, aggregate, and modify data * Use subqueries, table expressions, grouping sets, and pivoting * Query temporal and non-relational data, and output XML or JSON * Create views, user-defined functions, and stored procedures * Implement error handling, transactions, data types, and nulls This Microsoft Exam Ref: * Organizes its coverage by exam objectives * Features strategic, what-if scenarios to challenge you * Assumes you have experience working with SQL Server as a database administrator, system engineer, or developer * Includes downloadable sample database and code for SQL Server 2016 SP1 (or later) and Azure SQL Database Querying Data with Transact-SQL About the Exam Exam 70-761 focuses on the skills and knowledge necessary to manage and query data and to program databases with Transact-SQL in SQL Server 2016. About Microsoft Certification Passing this exam earns you credit toward a Microsoft Certified Solutions Associate (MCSA) certification that demonstrates your mastery of essential skills for building and implementing on-premises and cloud-based databases across organizations. Exam 70-762 (Developing SQL Databases) is also required for MCSA: SQL 2016 Database Development certification. See full details at: microsoft.com/learning

Pro SQL Server 2012 Integration Services (Paperback, 1st ed.): Francis Rodrigues, Michael Coles, David Dye Pro SQL Server 2012 Integration Services (Paperback, 1st ed.)
Francis Rodrigues, Michael Coles, David Dye
R1,584 Discovery Miles 15 840 Ships in 10 - 15 working days

Pro SQL Server 2012 Integration Services teaches how to take advantage of the powerful extract, transform, and load (ETL) platform included with Microsoft SQL Server 2012. You'll learn to build scalable, robust, performance-driven enterprise ETL solutions that save time and make money for your company. You'll learn to avoid common ETL development pitfalls and how to extend the power of your ETL solutions to include virtually any possible transformation on data from any conceivable source. SQL Server Integration Services (SSIS) facilitates an unprecedented ability to load data from anywhere, perform any type of manipulation on it, and store it to any source. Whether you are populating databases, retrieving data from the Web, or performing complex calculations on large data sets, SSIS gives you the tools to get the job done. And this book gives you the knowledge to take advantage of everything SSIS offers.* Helps you design and develop robust, efficient, scalable ETL solutions * Walks you through using the built-in, stock components * Shows how to programmatically extend the power of SSIS to cover any possible scenario What you'll learn * Create an SSIS package from scratch * Deploy an SSIS package to any environment * Benchmark the performance of SSIS packages using common tools * Optimize SSIS data flows to achieve maximum performance * Use .NET to extend the power of the stock SSIS toolkit * Profile and scrub data during the ETL process Who this book is for Pro SQL Server 2012 Integration Services is for ETL developers, SQL developers, and database administrators at all levels of experience who want to harness the power of SSIS on SQL Server 2012. Whether you are using SSIS to build small, one-off ETL packages in a small shop, or building enterprise-wide ETL solutions in a Fortune 500 company, this book gives you the information you'll need to build powerful, scalable, and efficient ETL solutions at any level of complexity. Table of Contents * Introducing Integration Services * BIDS and SSMS *Hello World --Your First SSIS 2012 Package * Connection Managers * Control Flow Basics * Advanced Control Flow Tasks * Source and Destination Adapters * Data Flow Transformations * Variables, Parameters, and Expressions * Scripting * Events and Error Handling * Data Profiling and Scrubbing * Logging, Auditing and Data Lineage * Heterogeneous Sources and Destinations * Data Flow Tuning and Optimization * Parent-Child Design Pattern * Dimensional Data ETL * Building Robust Solutions * Deployment Model

SQL Injection Attacks and Defense (Paperback, 2nd edition): Justin Clarke SQL Injection Attacks and Defense (Paperback, 2nd edition)
Justin Clarke
R1,381 R1,279 Discovery Miles 12 790 Save R102 (7%) Ships in 9 - 15 working days

"SQL Injection Attacks and Defense, First Edition: " Winner of the Best Book Bejtlich Read Award

""SQL injection is probably the number one problem for any server-side application, and this book unequaled in its coverage."" -Richard Bejtlich, "Tao Security blog "

SQL injection represents one of the most dangerous and well-known, yet misunderstood, security vulnerabilities on the Internet, largely because there is no central repository of information available for penetration testers, IT security consultants and practitioners, and web/software developers to turn to for help.

"SQL Injection Attacks and Defense, Second Edition" is the only book devoted exclusively to this long-established but recently growing threat. This is the definitive resource for understanding, finding, exploiting, and defending against this increasingly popular and particularly destructive type of Internet-based attack.

"SQL Injection Attacks and Defense, Second Edition" includes all the currently known information about these attacks and significant insight from its team of SQL injection experts, who tell you about: Understanding SQL Injection - Understand what it is and how it works Find, confirm and automate SQL injection discovery Tips and tricks for finding SQL injection within code Create exploits for using SQL injection Design apps to avoid the dangers these attacks SQL injection on different databases SQL injection on different technologies SQL injection testing techniques Case Studies
"Securing SQL Server, Second Edition" is the only book to provide a complete understanding of SQL injection, from the basics of vulnerability to discovery, exploitation, prevention, and mitigation measures. Covers unique, publicly unavailable information, by technical experts in such areas as Oracle, Microsoft SQL Server, and MySQL---including new developments for Microsoft SQL Server 2012 (Denali). Written by an established expert, author, and speaker in the field, with contributions from a team of equally renowned creators of SQL injection tools, applications, and educational materials.

Pro SQL Server 2008 Analysis Services (Paperback, 1st ed.): Philo Janus, Guy Fouche Pro SQL Server 2008 Analysis Services (Paperback, 1st ed.)
Philo Janus, Guy Fouche
R1,250 R1,013 Discovery Miles 10 130 Save R237 (19%) Ships in 10 - 15 working days

Every business has reams of business data locked away in databases, business systems, and spreadsheets. While you may be able to build some reports by pulling a few of these repositories together, actually performing any kind of analysis on the data that runs your business can range from problematic to impossible. Pro SQL Server 2008 Analysis Services will show you how to pull that data together and present it for reporting and analysis in a way that makes the data accessible to business users, instead of needing to rely on the IT department every time someone needs a different report. AccessibleWith a single author's voice, this book conducts a guided tour through the technology that makes it easy to dive into. SolutionorientedWhile technically deep, the goal is to focus on practical application of the technologies instead of acting as a technical manual. ComprehensiveThis book covers every aspect of analysis services and ancillary technologies to enable you to make the most of SQL Server. What you'll learn Understand the importance ofonline analytical processingand analysis services technologies. Build cubes and dimensions that let you get business value out of large volumes of data. Learn the fundamentals of MDX, the query language for advanced analysis. Apply ancillary aspects of analysis services: KPIs, perspectives, and calculated members. Apply basic data mining conceptsidentify answers to questions you weren't even aware you should ask. Learn the various ways to consume analysis services data (reporting services, Excel, and ProClarity). Who this book is for

Pro SQL Server 2008 Analysis Services is aimed at developers who want to take advantage of SQL Server's built-in business intelligence functionality to mine their data and produce reports that can drive business forward in right and profitable directions. The book is secondarily aimed at database administrators charged with supporting analysis services solutions. Table of Contents Introduction to OLAP Cubes, Dimensions, and Measures SQL Server Analysis Services SSAS Developer and Admin Interfaces Creating a Data Source View Creating Dimensions Building a Cube Deploying and Processing MDX219 10: Cube Features Data Mining PowerPivot Administration User Interfaces

SQL Server 2005 T-SQL Recipes - A Problem-Solution Approach (Paperback, 1st ed.): Joseph Sack SQL Server 2005 T-SQL Recipes - A Problem-Solution Approach (Paperback, 1st ed.)
Joseph Sack
R1,599 R1,296 Discovery Miles 12 960 Save R303 (19%) Ships in 10 - 15 working days

If you are looking for a succinct, easy to use, and up-to-date reference guide for SQL Server 2005 and T-SQL, I highly recommend "SQL Server 2005 T-SQL Recipes," -- David Hayden, .NET Developer

Each chapter is completely autonomous, so you can just look up the syntax you need at the time without having to rely on knowledge from previous chapters. Its really an excellent reference that deserves a place on your desk. -- Sean McCown, ITBookworm

Need to brush up on specific SQL Server tasks, procedures, or Transact-SQL commands? Not finding what you need from SQL Server books online? Or perhaps you just want to familiarize yourself with the practical application of new T-SQLAAA1/2related features. "SQL Server 2005 T-SQL Recipes: A Problem-Solution Approach" is an ideal book, whatever your level as a DBA or developer.

This AAA1/2no-fluffAAA1/2 desk reference offers direct access to the information you need to get the job done. It covers basic T-SQL data manipulation, the use of stored procedures, triggers and UDFs, and advanced T-SQL techniques for database security and maintenance. It also provides hundreds of practical recipes that describe the utilities of features and functions, with a minimim of background theory.

Additionally, this book provides AAA1/2how-toAAA1/2 answers to common SQL Server T-SQL questions, conceptual overviews, and highlights of new features introduced in SQL Server 2005. It also features concise T-SQL syntax examples, and you can use the book to prepare for a SQL Server-related job interview or certification test.

SQL Server Data Automation Through Frameworks - Building Metadata-Driven Frameworks with T-SQL, SSIS, and Azure Data Factory... SQL Server Data Automation Through Frameworks - Building Metadata-Driven Frameworks with T-SQL, SSIS, and Azure Data Factory (Paperback, 1st ed.)
Andy Leonard, Kent Bradshaw
R1,227 R990 Discovery Miles 9 900 Save R237 (19%) Ships in 10 - 15 working days

Learn to automate SQL Server operations using frameworks built from metadata-driven stored procedures and SQL Server Integration Services (SSIS). Bring all the power of Transact-SQL (T-SQL) and Microsoft .NET to bear on your repetitive data, data integration, and ETL processes. Do this for no added cost over what you've already spent on licensing SQL Server. The tools and methods from this book may be applied to on-premises and Azure SQL Server instances. The SSIS framework from this book works in Azure Data Factory (ADF) and provides DevOps personnel the ability to execute child packages outside a project-functionality not natively available in SSIS. Frameworks not only reduce the time required to deliver enterprise functionality, but can also accelerate troubleshooting and problem resolution. You'll learn in this book how frameworks also improve code quality by using metadata to drive processes. Much of the work performed by data professionals can be classified as "drudge work"-tasks that are repetitive and template-based. The frameworks-based approach shown in this book helps you to avoid that drudgery by turning repetitive tasks into "one and done" operations. Frameworks as described in this book also support enterprise DevOps with built-in logging functionality. What You Will Learn Create a stored procedure framework to automate SQL process execution Base your framework on a working system of stored procedures and execution logging Create an SSIS framework to reduce the complexity of executing multiple SSIS packages Deploy stored procedure and SSIS frameworks to Azure Data Factory environments in the cloud Who This Book Is For Database administrators and developers who are involved in enterprise data projects built around stored procedures and SQL Server Integration Services (SSIS). Readers should have a background in programming along with a desire to optimize their data efforts by implementing repeatable processes that support enterprise DevOps.

The Real MCTS SQL Server 2008 Exam 70-432 Prep Kit - Database Implementation and Maintenance (Paperback): Mark Horninger The Real MCTS SQL Server 2008 Exam 70-432 Prep Kit - Database Implementation and Maintenance (Paperback)
Mark Horninger
R1,351 R1,016 Discovery Miles 10 160 Save R335 (25%) Ships in 12 - 17 working days

SQL Server 2008 is the latest update to Microsoft's flagship database management system. This is the largest update since SQL Server 2005. SQL Server 2008 is a much more significant update than SQL Server 2005, because it brings increased ability to deliver data across more platforms, and thus many different types of devices. New functionality also allows for easy storage and retrieval of digitized images and video. These attributes address the recent explosion in the popularity of web-based video and server and desktop virtualization.
The Real MCTS SQL Server 2008 Exam 70-432 Prep Kit prepares readers for the Microsoft Certified Technology Specialist exam: SQL Server 2008, Implementation and Maintenance.
This is The 'Real' Microsoft Exam Prep Kit, and provides the reader with independent and unbiased exam tips and warnings everything they need to know to ensure certification success.Authored by Mark Horninger, a nationally recognized leader in SQL Server with over 50 Microsoft certifications to his credit; Mark knows what it takes to successfully navigate Microsoft exams.Complete study package offers Syngress proven pedagogy including practice exams via the book s companion site
"

T-SQL Querying (Paperback): Itzik Ben-Gan, Adam Machanic, Dejan Sarka, Kevin Farlee T-SQL Querying (Paperback)
Itzik Ben-Gan, Adam Machanic, Dejan Sarka, Kevin Farlee
R1,636 Discovery Miles 16 360 Ships in 10 - 15 working days

T-SQL insiders help you tackle your toughest queries and query-tuning problems Squeeze maximum performance and efficiency from every T-SQL query you write or tune. Four leading experts take an in-depth look at T-SQL's internal architecture and offer advanced practical techniques for optimizing response time and resource usage. Emphasizing a correct understanding of the language and its foundations, the authors present unique solutions they have spent years developing and refining. All code and techniques are fully updated to reflect new T-SQL enhancements in Microsoft SQL Server 2014 and SQL Server 2012. Write faster, more efficient T-SQL code: Move from procedural programming to the language of sets and logic Master an efficient top-down tuning methodology Assess algorithmic complexity to predict performance Compare data aggregation techniques, including new grouping sets Efficiently perform data-analysis calculations Make the most of T-SQL's optimized bulk import tools Avoid date/time pitfalls that lead to buggy, poorly performing code Create optimized BI statistical queries without additional software Use programmable objects to accelerate queries Unlock major performance improvements with In-Memory OLTP Master useful and elegant approaches to manipulating graphs About This Book For experienced T-SQL practitioners Includes coverage updated from Inside Microsoft SQL Server 2008 T-SQL Querying and Inside Microsoft SQL Server 2008 T-SQL Programming Valuable to developers, DBAs, BI professionals, and data scientists Covers many MCSE 70-464 and MCSA/MCSE 70-461 exam topics

Integrating Data (Paperback): Bill Inmon, Patty Haines, David Rapien Integrating Data (Paperback)
Bill Inmon, Patty Haines, David Rapien
R983 R779 Discovery Miles 7 790 Save R204 (21%) Ships in 10 - 15 working days
Oracle Autonomous Database in Enterprise Architecture - Utilize Oracle Cloud Infrastructure Autonomous Databases for better... Oracle Autonomous Database in Enterprise Architecture - Utilize Oracle Cloud Infrastructure Autonomous Databases for better consolidation, automation, and security (Paperback)
Bal Mukund Sharma, Krishna Kumar K M, Rashmi Panda
R1,166 Discovery Miles 11 660 Ships in 10 - 15 working days

Get up to speed with Oracle's Autonomous Databases and implementation strategies for any workload or use case, including transactional, data warehousing, and non-relational databases Key Features Explore ADB, its business benefits, and architectural considerations Migrate the existing workload to ADB, explore high availability, and use cloud native methods for monitoring and event notifications Leverage APEX, JSON, the REST API, and SQL Developer Web features for rapid development Book DescriptionOracle Autonomous Database (ADB) is built on the world's fastest Oracle Database Platform, Exadata, and is delivered on Oracle Cloud Infrastructure (OCI), customer data center (ExaCC), and Oracle Dedicated Region Cloud. This book is a fast-paced, hands-on introduction to the most important aspects of OCI Autonomous Databases. You'll get to grips with concepts needed for designing disaster recovery using standby database deployment for Autonomous Databases. As you progress, you'll understand how you can take advantage of automatic backup and restore. The concluding chapters will cover topics such as the security aspects of databases to help you learn about managing Autonomous Databases, along with exploring the features of Autonomous Database security such as Data Safe and customer-managed keys for Vaults. By the end of this Oracle book, you'll be able to build and deploy an Autonomous Database in OCI, migrate databases to ADB, comfortably set up additional high-availability features such as Autonomous Data Guard, and understand end-to-end operations with ADBs. What you will learn Explore migration methods available for Autonomous Databases, using both online and offline methods Create standby databases, RTO and RPO objectives, and Autonomous Data Guard operations Become well-versed with automatic and manual backups available in ADB Implement best practices relating to network, security, and IAM policies Manage database performance and log management in ADB Understand how to perform data masking and manage encryption keys in OCI's Autonomous Databases Who this book is forThis book is for decision makers, enterprise cloud architects, solution consultants, cloud engineers, implementation partners, and technology students, as well as anyone who wants to learn about Oracle's Autonomous Databases delivered on Oracle Cloud Infrastructure (OCI). Beginner-level knowledge of Linux and OCI and networking concepts and databases, along with hands-on experience in OCI environments is required before getting started with this book.

Data Wrangling - Using Pandas, SQL, and Java (Paperback): Oswald Campesato Data Wrangling - Using Pandas, SQL, and Java (Paperback)
Oswald Campesato
R1,296 Discovery Miles 12 960 Ships in 12 - 17 working days

This book is intended primarily for those who plan to become data scientists as well as anyone who needs to perform data cleaning tasks. It contains a variety of features of NumPy and Pandas and how to create databases and tables in MySQL. Chapter 7 covers many data wrangling tasks using Python scripts and awk-based shell scripts. Companion files with code are available for downloading from the publisher. FEATURES: Provides the reader with basic Python 3, Java, and Pandas programming concepts, and an introduction to awk. Includes a chapter on RDBMs and SQL. Companion files with code.

Free Delivery
Pinterest Twitter Facebook Google+
You may like...
Learning MySQL and MariaDB
Russell Dyer Paperback R1,229 R885 Discovery Miles 8 850
A Guide To SQL
Philip Pratt, Hassan Afyouni, … Paperback R1,246 R1,113 Discovery Miles 11 130
Advanced Agile Software Development with…
Lynn Smith Paperback R2,155 R2,010 Discovery Miles 20 100
Using Excel for Business and Financial…
DS Fairhurst Paperback R1,859 Discovery Miles 18 590
Access Essentials
M. L. Humphrey Paperback R718 Discovery Miles 7 180
Learn dbatools in a Month of Lunches
Chrissy Lemaire, Rob Sewell, … Paperback R1,059 Discovery Miles 10 590
Database Systems: The Complete Book…
Hector Garcia-Molina, Jeffrey Ullman, … Paperback R2,663 Discovery Miles 26 630
The Official New Features Guide to…
Brian Taylor, Naresh Adurty, … Paperback R116 Discovery Miles 1 160
Microsoft SQL Server 2012 Administration…
T. Carpenter Paperback  (3)
R1,725 R1,276 Discovery Miles 12 760
Expert SQL Server Transactions and…
Dmitri Korotkevitch Paperback R1,670 R1,301 Discovery Miles 13 010

 

Partners