Databases

Back to Computers & Technology


Introducing Microsoft SQL Server 2012

Ross Mistry, Stacia Misner

Introducing Microsoft® SQL Server® 2012 explores the exciting enhancements and new capabilities engineered into SQL Server, ranging from improvements in operation to those in reporting and management. This book is for anyone who has an interest in SQL Server 2012 and wants to understand its capabilities, including database administrators, application developers, and technical decision makers.

Beginning SQL Joes 2 Pros: The SQL Hands-On Guide for Beginners (SQL Exam Prep Series 70-433 Volume 1 of 5) (Sql Design Series)

Rick A Morelan

Several years ago a challenge was given to technology instructor Rick A. Morelan. Take downsized workers with little or no experience with computers or technology and turn them into industry certified technology experts. The proven material from this venture is now available to you as the Joes 2 Pros series of books and videos. This new approach has vivid pictures on almost every page that shows what you should see on your computer screen as you work through the material, and downloadable content, home practice labs, software, and fun review games available from the joes2pros web site. Starting with the basic lesson: "What is a Database? " this book helps beginners get comfortable with the SQL language. From there, you will walk step-by-step through the basics. 'Beginning SQL Joes 2 Pros' is the second edition of the popular 'T-SQL Joes 2 Pros' with updated content and a lower price. The language examples in this book can be used with any standard SQL engine. Regardless of your skill level, you too can evolve from "Joe" to "Pro" by following the steps outlined in this book. Note: My publisher is not able to put a DVD in the back of the book but a DVD showing all topic and labs in 3 hours of full video can be bought on Amazon at this link http://www.amazon.com/Beginning-SQL-Joes-Pros-70-433/dp/B004GEB67C/ref=sr_1_2?ie=UTF8&qid=1294633127&sr=8-2

WHERE TO GO WHEN YOU LEAVE BIG BROTHER LAND (Grandpa´s Gems)

Grandpa

Grandpa´s Gems
HOW TO SURVIVE, PROSPER & FIND HAPPINESS AFTER YOUR ESCAPE

We explore how you, dear reader, can find treasures and avoid trash.

There are always opportunities and good deals. They are just usually not what you see advertised.

Grandpa’s books and Grandpa’s Gems, could be the golden guidance from Grandpa, a truly successful person who does not make his money from selling books and reports.

In fact, less that .001% of grandpa’s income comes from writing about it rather than doing it.

Grandpa writes about special deals that can be made, answer questions from readers from all over the world and perhaps the most important to you, (unlike so many Investment and a like newsletters out there) Grandpa consults & answers questions sent in from readers from all over the world about offshore, tax havens, where to live, how to earn a good living and related issues.

Grandpa also write about issues that arise every day as Big Brother’s oppressive rules and regulations and tax burdens get tougher…

Grandpa makes available for the first time some of the paid answers to many questions regarding issues that could be life changing for you — issues that arise every day as Big Brother’s oppressive rules and regulations and tax burdens get tougher…

These Grandpa Gems have been added to this report:
1. EVERY PT NEEDS A PHYSICAL MAILDROP, EVEN TODAY
2. HOW TO BE A SUCCESSFUL INTERNATIONAL DEALMAKER
3. HOW MUCH MONEY DO YOU NEED TO BE A PT?
4. HOW TO PROTECT YOURSELF FROM “ALL-KNOWING” DATABASES
5. MANAGING YOUR IDENTITY ON BIG BROTHER DATABASES

Access 2010: The Missing Manual

Matthew MacDonald

Go from Access novice to true master with the professional database design tips and crystal-clear explanations in this book. You'll learn all the secrets of this powerful database program so you can use your data in creative ways -- from creating product catalogs and publishing information online to producing invoices and reports.

  • Build a database with ease. Store information to track numbers, products, documents, and more
  • Customize the interface. Build your own forms to make data entry a snap
  • Find what you need fast. Search, sort, and summarize huge amounts of information
  • Put your data to use. Turn raw info into printed reports with attractive formatting
  • Share your data. Collaborate online with SharePoint and the brand-new Access web database
  • Dive into Access programming. Get tricks and techniques to automate common tasks
  • Create rich data connections. Build dynamic links with SQL Server, SharePoint, and other systems
Five Touchstones to Understanding Access

Let’s face it--learning the tricks and techniques of database design can be a bit of a slog. But if you’re just starting out with Access, here are five key insights that can help you understand how the database world works. Keep these points in mind, and you’ll be on the inside track to mastering Access.

    1. Databases hold database objects. Most people are familiar with tables, the grid-like grouping of data that stores your information (for example, lists of items you own, friends you have, or products you sell through your small business). But tables are just one type of object that an Access database can hold. The other key ingredients are queries (customized search routines that pull out the information you need at the drop of a hat), reports (similar to queries, but nicely formatted and ready for printing), forms (windows that make it easy to review and edit the data in your tables), and macros and modules (miniature programs that can do just about anything—from updating 10,000 records at once to firing off an email).

    2. Relationships hold it all together. Access newbies sometimes start out thinking a database is just a glorified spreadsheet. After all, can’t Excel hold long lists with hundreds of thousands of rows? (And yes, it can.) However, Access has a feature Excel can’t duplicate: relationships. A typical Access database holds several tables, and relationships link these tables together. For example, a table of customers might link to a table of orders, which would link to a table of products, allowing you to answer questions like “What customers spent the most money?” and “What is the most popular product for customers living in New York?” Relationships also safeguard your data--for example, they make it impossible for someone to accidentally place an order for a product or a customer that doesn’t exist.

    3. There are two ways to work with a database: as a designer and as a user. The database designer is the person who sets up the database. The database designer has the responsibility of laying out the tables, building the queries, and knocking together some nice reports and forms (assuming you want all those features). By comparison, the database user is the person who uses the tables, queries, reports, and forms in day-to-day life. The user reviews records, makes changes, and fills the tables up with data.

    Depending on what type of database you’re creating (and what you want to accomplish), you may be both the database designer and the database user. But it’s important to realize that these are distinct tasks. In fact, when using a properly designed database, database users don’t need to be particularly skilled with Access. They can just work with the forms and reports that the database designer created.

    4. Sooner or later, you’ll need macros. To become an Access expert, you must first learn to design a logical, consistent set of tables and add the relationships that link them together. Next, you must learn to build the other types of objects--queries, forms, and reports--that make it easier to perform common tasks. At some point, while tackling this second stage, you’ll run into a challenge that forces you to step up to the third level of Access mastery: macros.

    Macros are miniature programs that perform custom tasks. The good news is that in Access 2010, you can design your own macros without becoming a programmer. You just need to drag, drop, and arrange a sequence of ready-made macro commands into the Access macro designer. For example, you can use macros to build buttons that send emails, start printouts, make updates, or just take you around your database.

    5. Expert user, meet Visual Basic. Some people stop their Access journey at this point, content to use tables, forms, reports, and macros to do all their work. But if you want to see everything Access has to offer, you need to take a look at its high-powered Visual Basic engine. Using VB code, you can do almost anything, from validating a credit card to leading a customer through an order process (two examples that are discussed in Access 2010: The Missing Manual). And if you’re willing to pick up some basic programming concepts, you can use code to transform a simple database into a cohesive database application—for example, something that looks more like the traditional desktop programs you run on your computer.

Getting Started Guide: Analyzing Big Data with AWS

Amazon Web Services

Big data—data sets that are too large to store in a traditional relational database and that require distributed applications for processing—can be expensive and complicated to manage. Moving your data to the cloud can reduce storage and analysis costs and simplify administration. This guide explains how to use Amazon Simple Storage Service (S3) to store big data, Amazon Elastic Cloud Compute (EC2) instances (virtual servers) to process it, and Amazon Elastic MapReduce to manage the details of storage, cluster configuration, monitoring, and analysis.

Learning PHP, MySQL, and JavaScript: A Step-By-Step Guide to Creating Dynamic Websites (Animal Guide)

Robin Nixon

If you know HTML, this guide will have you building interactive websites quickly. You'll learn how to create responsive, data-driven websites with PHP, MySQL, and JavaScript, regardless of whether you already know how to program. Discover how the powerful combination of PHP and MySQL provides an easy way to build modern websites complete with dynamic data and user interaction. You'll also learn how to add JavaScript to create rich Internet applications and websites.

Learning PHP, MySQL, and JavaScript explains each technology separately, shows you how to combine them, and introduces valuable web programming concepts, including objects, XHTML, cookies, and session management. You'll practice what you've learned with review questions in each chapter, and find a sample social networking platform built with the elements introduced in this book.

This book will help you:

  • Understand PHP essentials and the basics of object-oriented programming
  • Master MySQL, from database structure to complex queries
  • Create web pages with PHP and MySQL by integrating forms and other HTML features
  • Learn about JavaScript, from functions and event handling to accessing the Document Object Model
  • Use libraries and packages, including the Smarty web template system, PEAR program repository, and the Yahoo! User Interface Library
  • Make Ajax calls and turn your website into a highly dynamic environment
  • Upload and manipulate files and images, validate user input, and secure your applications

Machine Learning in Action

Peter Harrington

Summary

Machine Learning in Action is unique book that blends the foundational theories of machine learning with the practical realities of building tools for everyday data analysis. You'll use the flexible Python programming language to build programs that implement algorithms for data classification, forecasting, recommendations, and higher-level features like summarization and simplification.

About the Book

A machine is said to learn when its performance improves with experience. Learning requires algorithms and programs that capture data and ferret out the interesting or useful patterns. Once the specialized domain of analysts and mathematicians, machine learning is becoming a skill needed by many.

Machine Learning in Action is a clearly written tutorial for developers. It avoids academic language and takes you straight to the techniques you'll use in your day-to-day work. Many (Python) examples present the core algorithms of statistical data processing, data analysis, and data visualization in code you can reuse. You'll understand the concepts and how they fit in with tactical tasks like classification, forecasting, recommendations, and higher-level features like summarization and simplification.

Readers need no prior experience with machine learning or statistical processing. Familiarity with Python is helpful.

What's Inside
  • A no-nonsense introduction
  • Examples showing common ML tasks
  • Everyday data analysis
  • Implementing classic algorithms like Apriori and Adaboos

===================================

Table of Contents
    PART 1 CLASSIFICATION
  1. Machine learning basics
  2. Classifying with k-Nearest Neighbors
  3. Splitting datasets one feature at a time: decision trees
  4. Classifying with probability theory: naïve Bayes
  5. Logistic regression
  6. Support vector machines
  7. Improving classification with the AdaBoost meta algorithm
  8. PART 2 FORECASTING NUMERIC VALUES WITH REGRESSION
  9. Predicting numeric values: regression
  10. Tree-based regression
  11. PART 3 UNSUPERVISED LEARNING
  12. Grouping unlabeled items using k-means clustering
  13. Association analysis with the Apriori algorithm
  14. Efficiently finding frequent itemsets with FP-growth
  15. PART 4 ADDITIONAL TOOLS
  16. Using principal component analysis to simplify data
  17. Simplifying data with the singular value decomposition
  18. Big data and MapReduce

Amazon Relational Database Service Getting Started Guide

Amazon Web Services

This is official Amazon Web Services (AWS) documentation for Amazon Relational Database Service (RDS).

Amazon Relational Database Service (RDS) is a platform for running instances of MySQL, Oracle, and Microsoft SQL Server database engines, called DB Instances, in the cloud. This guide walks you through the process of creating a DB Instance with the AWS Management Console, a browser-based graphical user interface for interacting with the service.

Microsoft Access 2010 Step by Step (Step by Step (Microsoft))

Joan Lambert III, Joyce Cox

Experience learning made easy-and quickly teach yourself how to build database solutions with Access 2010. With STEP BY STEP, you set the pace-building and practicing the skills you need, just when you need them! Topics include building an Access database from scratch or from templates; publishing your database to the Web; exchanging data with other databases and Microsoft Office documents; creating data-entry forms; using filters and queries; designing reports; using conditional formatting; preventing data corruption and unauthorized access; and other core topics.

Amazon DynamoDB Developer Guide

Amazon Web Services

This is official Amazon Web Services (AWS) documentation for Amazon DynamoDB.

Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. This guide explains how to create and manage databases in DynamoDB by using the AWS SDKs for Java, Microsoft .NET, and PHP, as well as the AWS Management Console, a browser-based graphical user interface for interacting with the service.
Back to Computers & Technology