This Buy It Now listing has ended. The seller has relisted this item or one like this.
Item:SQL Server Tutorial using SQL 2008 - Video Training DVD

SQL Server Tutorial using SQL 2008 - Video Training DVD

Item condition:New
Ended:Nov 08, 200912:48:00 PST
Bid history:1 bid
Sold For:US $24.99
Shipping:$4.99US Postal Service First Class MailSee more services 

Country:
ZIP Code:
Service and other details:
Service
Estimated delivery*
Price
US Postal Service First Class Mail
3-6 business days
$4.99
*The estimated delivery time is based on the seller's handling time, the shipping service selected, and the payment method selected. Sellers are not responsible for shipping service transit times. Transit times may vary, particularly during peak periods.

 See discounts 

 |  See all details
Estimated delivery within 3-6 business days
Returns:
7 day exchange, buyer pays return shipping | Read details
Coverage:
Pay with and your full purchase price is covered | See terms

A reserve price is the minimum price the seller will accept. This price is hidden from bidders. To win, a bidder must have the highest bid and have met or exceeded the reserve price.

 
Seller info
96.3% Positive feedback
Other item info
Item number:280418010416
Item location:Plano, Texas, United States
Ships to:Worldwide
Payments:
Last updated on 01:57:33 PM PST, Nov 06, 2009 View all revisions
Item specifics
Condition: NewPlatform: Windows (PC)
Format: DVD  

SQL Server 2008 is the newest relational database management system (RDBMS) from Microsoft. It delivers a powerful, reliable and scalable enterprise solution in the high end database programs. SQL Server 2008 extends the functionality of SQL Server 2005 with New Features like data compression, intellisense and policy based management. This database management systems enables you to store data from structured and unstructured documents, such as images and music, directly within the database. SQL Server delivers a rich set of integrated services like SQL Server Reporting Services (SSRS),SQL Server Integration Services (SSIS) and SQL Server Analysis Services (SSAS) that enable you to do more with your data such as query, search, migrate, synchronize, report, and analyze.

This SQL Server 2008 video tutorial series takes a practical approach towards working with SQL Server 2008 New Features. The video training is organized and presented by a Senior SQL Server DBA with more than 10 years of Industry experience in using Microsoft Best Practices. The database lessons not only cover DBA (database administrator) topics like performance tuning, routine maintenance, job scheduling, backup and restore, monitoring with SQL profiler traces but also discusses database design, database security and database development that would be beneficial to a SQL Server 2008 developer. The SQL development area focuses on tasks like creating tables, SQL Server views, SQL Server functions, SQL Server stored procedures, database relationships with ERD (entity relationship diagrams) plus TSQL (Transact SQL) basics. We have also made an effort to discuss Industry wide Best Practices as they relate to learning SQL Server. This SQL Server 2008 training series consists of more than 6 hours of professional instruction on video. The actual files come in either DVD format or FTP format that will run on Windows Media Player or RealNetworks Real Player. Finally included in these SQL Server tutorials are PowerPoint presentations to help you in the database learning process. The files can be downloaded from one of our FTP sites.

 

PLEASE NOTE: This content is produced by and property of http://www.learningsqlserver2008.com/ Not Microsoft. 

Watch FREE samples of our SQL Server video tutorials from this location:

(For these free sql server 2008 training videos samples, Right click and select Save Target As ...)

Buy the SQL Server training here today!!

Video Lesson Details on SQL Server 2008 training are as follows:

Installation of SQL Server 2008

In this video tutorial we walk you through the process of SQL Server 2008 installation on Windows Operating System. We talk about the Hardware and Software requirements; next we show you the software download location on Microsoft’s website. In the beginning, it installs the .NET framework and updated windows installer. After the reboot, we continue onto an Install wizard screen with additional resources and tools. We go over the Installation Center, Setup Support Rules, Feature selection and do a stand-alone installation. On the feature dialog box, one can select different SQL Server services and SQL Server New Features to install. We recommend using Best Practice settings for service accounts; data file and log file locations. After the final steps, the machine is rebooted and we are all set at this point. This video is in two parts due to the necessary Reboot for installation. (Running times are 11 and 23 mins)

SQL Server 2008 Configuration Manager

We go over Configuration Manager in SQL Server 2008. This tool is primarily used for two things: Configuring SQL Server services and also managing the SQL Server Network Protocols. We jump into the demo and this video lesson covers starting, stopping and restarting different services like Database Engine, Agent, SQL Server Integration Services (SSIS ), Browser etc. We talk about Best Practices of using a domain service account and also bring up startup mode settings. As far as Network protocols are concerned, we go over server and client configurations. TCP/IP is the preferred protocol due to ease and frequency of use. You can enable and disable protocols and their ports here as it relates to security. Important point is that the server and clients are using the same settings, whatever you may decide to use. (Running time is 17 mins)

Using SQL Server Management Studio (SSMS):

SSMS is an all inclusive tool for managing SQL Server if you are a database administrator (DBA) . It is equally important for database developers as you can use it to do database design work. In this video we demonstrate using SQL Server Management Studio for database development. We start off by mentioning important commands on the File and Toolbar menu. Next we discuss how to register a server and export the server list. We tackle the mighty Object Explorer that can connect to different database services and is at the heart of SSMS. In object explore, everything is laid out in a hierarchy of folders which are split by function. When you are working with database, it trickles down to tables, field and properties etc. We mention important tabs like Security, Server Objects, Database Replication and Management. Finally we finish the lesson with Vanilla Reporting capabilities, scripting options and long awaited Intellisense. (Running time is 32 mins)

Working with Databases in SQL Server 2008

In this training session, we cover database related topics in SQL Server 2008 and make learning databases a breeze. We discuss some best practices regarding database management in general. The first demonstration shows you how to create a database using Management Studio (SSMS). Next we go over some of the database options and settings like File location, Auto Shrink option, Recovery model etc. We switch gears and create a database using Transact SQL code (CREATE DATABASE). A nice new feature in SQL Server is the ability to generate SQL scripts that help with administration tasks. We execute the auto generated code to create another database. Commands like ALTER DATABASE, sp_helpdb, sp_dboption are explained next with some examples to change database settings. Template Explorer is a time saver when it comes to unfamiliar code. We create a database using Template Explorer and end this video with some highlights of the Help section. (Running time is 33 mins)

Implementing Security in SQL Server 2008

Managing security is critical if you are a Database Professional on any platform. There are many layers of Security in SQL Server 2008, some of which are Physical, OS, Surface Area, User Permissions, Domain Access, File and Folder Security. We discuss Principals which are entities that can request SQL Server resources. At the server level there can be Windows or SQL Server principals. At the database level, there can be user, role or application principals. Next we talk about different type of roles: Server or Database. Server roles are always fixed like the sysadmin role. Database roles can be fixed like dbo or flexible that can be user defined. We also talk about TSQL statements and sql Catalog views that related to security. The video demos include creating a SQL Server login which is assigned to database roles. Next we assign the user access to a securable like Table and test different permission scenarios. (Running time is 28 mins)

Using Transact SQL in SQL Server 2008

If you want to be a good Database Developer, strong knowledge of TSQL is a must. Transact SQL is the universal database language. In this database video training, we will use AdventureWorks2008 which is a sample database from Microsoft. We start off with the SELECT statement which is used to return data. This is by far the most commonly used SQL statement. The basic syntax of a SQL statement is discussed with examples from Person and SalesOrderHeader tables including some best practices. A quick trick to copy a table is using SELECT * INTO which is shown next. We mention logical and standard operators. Demo on SQL INSERT INTO statement is used to populate data in the Person table. The next two statements are SQL UPDATE and SQL DELETE statements which are very powerful in nature. Using the WHERE clause is Extremely important with these two. We show you how to change data in Person table. (Running time is 32 mins)

SQL Server Administration, Maintenance and Job Automation

SQL Server Administration, Maintenance and Job Automation are routine tasks for a SQL Server DBA, Regular database management is necessary as your databases grow over time. Along with that, job automation helps you focus on other responsibilities where SQL Server 2008 is able to handle routine administration tasks on its own. First off, we discuss concepts like Events, Alerts, Operators, and Jobs. In the initial demo we go over SQL configuration manager as it relates to SQL Server services. Next we cover SQL Server Agent and demonstrate you how to create an alert for when Transaction Log is full. This alert in turn sends a notification to the operator and also kicks off a SQL job ‘Backup AW Log’. We discuss job steps in detail and the TSQL code involved in these jobs. Next we go over Job Activity Monitor and view Job History to see if the jobs completed successfully. We end this lesson with using Database Mail and Maintenance Plans. Using maintenance plan, you can easily configure regular maintenance tasks. (Running time is 46 mins)

Backup and Restore plus Compression in SQL Server 2008

As a Senior Database Administrator, doing backups is of utmost important especially in my position. We start off by going over some terminology like backup, restore, full, differential, log, filegroups and compression. Next we look at the various types of backups available in SQL Server. There are essentially three ways to do backups in SQL Server 2008, Management Studio, TSQL and Maintenance Plans. Using sample database AdventureWorks2008, we modify some data and do Full, Differential and Log backups one by one. We also show you how to do backups using TSQL code. We go over the long overdue New Compression feature in SQL 2008. After backups, the next item is how to Restore (Recover) the database. Once more there are various ways to restore the database and we illustrate you that using demonstrations. We end the lesson with some backup strategies and backups using maintenance plans. (Running time is 38 mins)

Database Relationships in SQL Server

A database is not much without relationships between tables. We kick off this database training session by going over ERD (Entity Relationship Diagram) which displays a database structure or schema. We tackle terms like Entity (table), Attribute (field), Record (row), Primary keys and Foreign keys. We will use AdventureWorks2008 again as the source of our data. We discuss 1-1 (one to one relationship), 1-many (one to many relationship) and many–many relationships. In the training demo, we give you an idea about you how to create a database diagram, create a database table with a primary key constraint and establish a relationship with a foreign key constraint. We use SSMS and TSQL to go over these concepts. Joins are of prime importance to deal with database relationships and we go over several database join examples. We bring up Inner Joins and Outer Joins and go over Sales Order and Customer data using database joins. We finally end the lesson with Referential Integrity. (Running time 28 mins)

Monitoring SQL Server 2008

Monitoring and Profiling your database server is a critical tasks especially if you are the DBA. We kick off this comprehensive video tutorial on SQL Server by looking at Task Manager, Event Viewer and Performance Monitor. We look at some system counters that are specifically geared towards SQL Server. Next we look at some canned reports that give you vital information at the server and database level. We use the demo on Activity Monitor so get a feel for server activity. Moving onto Error Logs, you can troubleshoot errors in Database Engine and SQL Agent. In addition to graphical tools, one can use Transact SQL (TSQL) and Dynamic management views (DMV’s) to get vital stats. We end this training session with the most important monitoring tool, using sql server Profiler. We show you how to create a template, change events and columns. In order to see this in action, we create two SQL scripts that select and update customer data on AdventureWorks2008. (Running time 68 mins)

SQL Views, Functions and SQL Stored Procedures

We start off this database lesson with SQL views which is nothing more than a virtual table. It is primarily used to simplify complex transact sql and can also be used as a security mechanism. The example presented here includes data from Employee table in AdventureWorks2008 database. Next we talk about SQL Server functions which help in processing and returning data back to the calling program. We use the AVG function to build our user defined function on Sales Order and product data. Finally we go over using SQL stored procedures which are the preferred option for SQL Server programming. They help in faster execution and code reuse and encapsulation. We combine the database mail feature with sql server stored procedure to generate a list of terminated employees and send the list via an email. (Running time 45 mins)



Check out feedback from buyers of our training products!!

 

 

Comments

Member ID

 Item ID

Excellent video...would order again on other topics.

chrissy9555

280144903155

it was very good, the tutorial was very good. It was worth buying

rchennakeshava

280140147111

A++

trowe6753

280118937371

A+++, 5 out of 5 , excellant packing, received on time and worth for the money

aarud

280100602929

AAAAA++++++++++++++++*************

zacky65

280093808351

Worth every penny. Thanks!

slavo

280090167387

·:*¨¨*:·.THANKS .·:*¨¨*:·.5 STARS!.·:*¨¨*:·. pleasure to work with .·:*¨¨*:·.

akhtar973

280086946997

Good support and respond

shovon_nhfil

280083243647

Very Informative. A+

whealers

280081369336

great deal

centrasale

280076386779

very responsible, concern and prompt. will certainly do business again

humera1230

280001026269

As ordered. Good service. Great product

l8rnow

7233956742

Greate Service!!! Excellent Seller

skyrogi

7221455820

GREAT EBAYER! GOOD TRANSACTION A+++++++++++

ezauctions786

7217009446

Great! Item as advertised! Would buy from again!

realpoet01

7206339838

Very good training software

whsgifts

7181380657

Fast ship; exactly as advertised

sborrok

7179746408

very good item good transaction

ilu420

7173749645

Item as descirbe great ebayer

eseller01

9700181762



 

SQL Server 2008 Videos, SQL Server 2008 Video Lessons, SQL Server Online Training Videos, SQL Server 2008 Videos Seminar, SQL Server 2008 Videos Class, SQL Server 2008 Video demos, SQL Server 2008 Videos CD, SQL Server 2008 Videos DVD, SQL Server 2008 Videos Videos, SQL Server Instructor Training, SQL Server Hands On Training, SQL Server 2008 Videos, SQL Server 2000 Training, SQL Server 2005 Training, SQL Server 2008 Training, SQL Server DBA Training Videos, Free SQL Server 2008 Videos, Excellent SQL Server 2008 Videos, SQL Server Train, Video Training SQL Server, SQL Server Lesson Training, SQL Server 2008 Videos Seminar, SQL Server 2008 Videos Class, SQL Server Train demos, SQL Server Train using CD, SQL Server Train using DVD, SQL Server Train on Videos, SQL Server Train Online, SQL Server Hands On Train, Train on SQL Server 2000, Train on SQL Server 2005, Train on SQL Server 2008, SQL Server DBA Train, Free SQL Server 2008 Videos, Excellent SQL Server Train



00026
Shipping and handling
Item location: Plano, Texas, United States
Shipping to: Worldwide
Change country:
ZIP Code:
 
Shipping and handling
To
Service
Estimated delivery*
US $4.99
United States
US Postal Service First Class Mail®
3-6 business days
*The estimated delivery time is based on the seller's handling time, the shipping service selected, and when the seller receives cleared payment. Sellers are not responsible for shipping service transit times. Transit times may vary, particularly during peak periods.
Domestic handling time
Sales tax
Will usually ship within 1 business day of receiving cleared payment.
Seller charges sales tax for items shipped to: TX *(8.25%).
* Tax applies to subtotal + S&H for these states only
Return policy
Item must be returned within
Refund will be given as
Return policy details
7 days after the buyer receives it
Exchange
We will send you a new DVD after we receive the old one.
The buyer is responsible for return shipping costs.

Payment details
Payment methodPreferred/AcceptedBuyer protection on eBay
Credit or debit card through PayPal
PayPal Preferred
Pay with and your full purchase price is covered | See terms
Seller's payment instructions
Thanks for visiting. Item will be shipped the day after I receive payment.
Seller assumes all responsibility for this listing.

About eBay | Announcements | Security Center | Resolution Center | eBay Toolbar | Policies | Government Relations | Site Map | Help
Copyright © 1995-2009 eBay Inc. All Rights Reserved. Designated trademarks and brands are the property of their respective owners. Use of this Web site constitutes acceptance of the eBay User Agreement and Privacy Policy.
eBay official time