Apr
24

Academic Pricing Schedule (Students|Education): Pricing Schedule
Additional Licenses: For pricing contact sales@LinuxCBT.com
System Requirements: Windows NT/2000/XP/2003/Vista
Duration: 30 hours/100 Videos on 1-DVD
Available for Download:YES
Content Size: 3.06GB (3,286,751,232 bytes)
Modules:
* MySQL Installation
o Introduction to MySQL 5
o Discuss DBMS system specifications
o Identify existing MySQL-installed components
o Explore file-system layout
o Identify & discuss the various downloadable formats /source|binary|packaged/
o Download MySQL packages to a local repository
o Discuss the key DBMS components
o Confirm md5sums of components
o Install MySQL server package and examine defaults
o Identify key server-side administrative utilities
o Inspect the contents of the default DBMS data-directory
o Install MySQL Client package and explore its contents
*
* Terminal Monitor Shell Client
o Discuss Terminal Monitor concepts
o Explain the default privileges configuration
o Connect to the DBMS using anonymous privileges
o Explore Terminal Monitor’s help facility and useful escape sequences
o Identify the default schemas
o Execute useful SQL functions
o Demonstrate how to execute SQL queries from the shell in non-interactive mode
*
* User Administration
o Identify the currently logged-in user
o Connect to MySQL DBMS as root and explore the interface
o Attempt to connect to the DBMS as invalid users and discuss the results
o Attempt to connect from a remote host and evaluate results
o Discuss the primary methods of tightening the default security scheme
o Tighten the default privileges for the root user
o Explore the global ‘user’ grant table & discuss attributes
o Secure anonymous user accounts
o Remove anonymous privileges and confirm enhanced security policy
o Discuss and explore the grant tables and applicable attributes
o Identify the ancillary grant tables that permit granular filtration
o Create new DBMS users and confirm connectivity
o Remove superfluous user accounts
o Discuss permissible host values when defining users
o Create remote super users and test connectivity
o Discuss privileges scopes concepts & applications
o Identify grant tables related to privileges scopes
o Use GRANT to create and manipulate user-privileges
o Create unprivileged accounts and explore capabilities
o Use REVOKE to remove privileges
o Use DROP to discard superfluous accounts
o Maintain user passwords using SET and UPDATE
*
* Show Commands & Options Files
o Explain the usages of key SHOW commands
o Expose DBMS privileges for currently authenticated user
o Expose DBMS privileges for other defined users
o List all databases available on the system
o Show the DDL statements used to create various MySQL-managed databases
o Examine the default supported character sets
o Reveal the structure of defined tables
o Show the DDL statements used to create various tables
o List the supported Storage Engines by the current binary-build of MySQL
o Examine the MyISAM Storage Engine tables on the file system & discuss key file types
o Show the schemas of various tables and discuss the results
o Examine the currently executing processes, including connected users
o Initiate & KILL connections listed in the process-list table
o Examine key status variables on the running server
o Show table status information, revealing used-space, length, create-time, etc.
o Discuss the default search-path for options files by MySQL clients
o Examine and secure the MySQL history file to prevent superfluous disclosure of queries
o Define a personal MySQL options file
o Explain the supported section headers in MySQL options files
o Define useful run-time directives for MySQL clients and examine results
o Define a useful, custom MySQL prompt on a global and per-user basis & examine usefulness
o Set default database variable in per-user options files and examine results
*
* Key MySQL Client Utilities
o Focus on mysql terminal monitor utility
o Discuss & demonstrate mysql client modes
o Discuss command-line option types
o Output queries to standard /HTML|XML|TXT/ formats
o Exclude column-headers from output for easy import into other applications
o Use options file to control startup variables
o Focus on mysqladmin utility
o Compare & contrast mysqladmin batch-mode to mysql interactive mode
o Confirm the status of DBMS servers using mysqladmin
o Ascertain remote DBMS process list
o Create & drop remote databases using mysqladmin
o Administer remote user credentials using mysqladmin
o Focus on mysqldump utility
o Discuss mysqldump applications, features & benefits
o Dump all databases and related objects to an ASCII text backup file
o Examine the resulting dump file
o Dump select databases and examine resulting file
o Dumpy DBMS databases to a remote MySQL instance using mysqldump
o Focus on mysqlimport utility
o Create database container and table structure for subsequent imports
o Create matching data-feed for import by mysqlimport
o Import data-feed using default delimiters and record-separators
o Discuss mysqlimport defaults regarding data-directory and table names
o Examine importing duplicate records
*
* Key Data Manipulation Language (DML) Statements
o Discuss common DML statements
o Focus on SELECT DML statement
o Optimize SELECT statements with WHERE clauses to define criteria
o Discuss SELECT operators /=|<=|>=|!=|etc/
o Perform pattern matching using WHERE clause with LIKE operator & wildcards
o Influence the order of SELECT output using ORDER BY
o Extend criteria definition and optimize queryies using AND clause
o Return result-set INTO output ASCII text file using SELECT INTO
o Redirect result-set to AWK and extract interesting fields
o Use LIMIT with SELECT to return n number of rows
o Return total number of rows including LIMIT value
o Alias column headers using SELECT
o Concatenate results returned using SELECT
o Focus on INSERT DML statement
o Explain supported INSERT statements /VALUES|SET|SELECT/
o Describe table structure to determine column constraints
o INSERT VALUES specifying column names
o INSERT VALUES one-to-one without defined column headers
o Use SET with INSERT to indicate interesting columns
o Use VALUES to INSERT multiple rows in one statement
o Discuss INSERT SELECT applications
o Create table structure for using INSERT SELECT
o Populate newly-created table with data
o Use SELECT INSERT to move data between tables & evaluate results
o Focus on UPDATE DML statement
o Perform global table UPDATE with simple DML statement
o Specify columns to be updated and evaluate affected rows
o UPDATE interesting rows using criteria
o UPDATE n number of records using the LIMIT criteria operator
o Focus on DELETE DML statement
o Remove interesting records using WHERE clause and applicable critieria
o Intro to the ALTER Data Definition Language (DDL) statement
*
* Key Data Types
o Focus on Numeric data-types
o Use describe to expose defined data-types for columns
o Discuss unsigned and auto incremented column attributes
o Discuss /TINYINT|SMALLINT|MEDIUMINT|INT|BIGINT/ capacity and applications
o Discuss FLOAT capacity and applications
o Discuss DOUBLE capacity and applications
o Discuss DECIMAL capacity and applications
o Discuss BIT capacity and applications
o Define a table with TINYINT column
o Populate TINYINT column with INSERT and exceed its limits and evaluate resutls
o Use ALTER to increase the capacity of the TINYINT column to SMALLINT
o Populate SMALLINT column and evaluate results
o ALTER table and add columns with greater numeric capacity
o Define a DECIMAL column and store values
o Focus on String data-types
o Explain features and limitations of CHAR type fields
o INSERT strings with unpreserved characters and evaluate results
o Compare & contrast VARCHAR & CHAR type fields; fixed vs. varaible-length
o ALTER table to convert interesting fields from CHAR to VARCHAR
o Create Perl script to generate values for VARCHAR columns and evaluate results
o Discuss /TEXT|TINYTEXT|MEDIUMTEXT|LONGTEXT/ column types
o Discuss /BLOB|TINYBLOB|MEDIUMBLOB|LONGBLOB/ column types
o ALTER table to support LONGTEXT and import data and evaluate results
o Discuss /BINARY|VARBINARY/ usages and limits
o Explain the usages of ENUM column types
o Explore predefined ENUM column types in system tables
o Define ENUM fields, insert data and evaluate DBMS behavior
o Focus on Date data-types
o Discuss DATE column type features (resolution & range)
o ALTER table structure to support DATE-based column
o INSERT invalid date and evaluate results
o Discuss DATETIME column type features (resolution & range)
o ALTER table structure to support DATETIME-based column
o INSERT valid date & time value and evaluate results
o Discuss how MySQL implements dummy dates
o ALTER table structure to support TIMESTAMP-based column
o Discuss TIMESTAMP column type features (resolution & range)
o Discuss NULL-enabled auto-timestamp (dummy-time) invocated columns
o Explain MySQL’s default date syntax
o Insert Date & Time values into MySQL columns using mixed delimiters
o Insert Date & Time values into MySQL columns without delimiters
o Recap supported data-types
*
* Key Data Definition Language (DDL) Statements
o Focus on CREATE DDL statement
o Describe how MySQL maps database containers to the file system
o CREATE DATABASE container to house new tables
o Define the requirements /auto_increment|primary key|etc/ of new base tables
o Define the CREATE TABLE syntax for new base tables based on selected data types
o Execute statement and evaluate results of recently-created tables
o Use SHOW CREATE TABLE to examine DDL syntax for reference
o CREATE TABLE with NOT-NULL column enforcements
o Populate tables with useful values and evaluate results
o INSERT VALUES with DEFAULT for auto-populated columns and evaluate results
o Duplicate table structure using CREATE TABLE and evaluate results
o Populate destination table with data from the source table using INSERT
o Discuss Temporary tables features and applications
o CREATE TEMPORARY TABLES and populate with useful data
o Rename tables using RENAME TABLE as an alternative to ALTER TABLE
o Focus on DROP DDL statement
o Describe the objects that are affected using DROP
o DROP DBMS objects and evaluate file system implications
o Focus on CREATE INDEX DDL statement
o Discuss the importance of indexes to improved data-retrieval
o Discuss MyISAM storage engine per-index limits
o Identify default MyISAM index files
o Explore defined indices
o Define UNIQUE indices
o Compare & contrast table & index storage requirements
o Generate data-set to be imported into an indexed column
o Compare & contrast query-execution times with and without indices
*
* JOINS
o Discuss the features & benefits of using JOINS to access normalized data
o Normalize the data structure, using ALTER TABLE, to prepare for using joins
o Use seq to generate normalized data and import using mysqlimport
o Discuss the various types of supported JOINS /EQUI|NATURAL|LEFT|RIGHT|INNER|OUTER/
o Define and execute EQUIJOINS
o Define and execute NATURAL JOINS
o Define JOINS using fully-justified DBMS object names
o Use table and column aliases with JOINS
*
* VIEWS & TRIGGERS
o Discuss the features & benefits of using VIEWS
o Use DESCRIBE to identify interesting VIEW candidate-columns
o Explain VIEW-creation syntax
o Create useful VIEWS and evaluate results
o Create VIEWS using column-aliases
o Update VIEWS using CREATE OR REPLACE VIEW & ALTER VIEW
o Create VIEWS based on EQUIJOINS
o Demonstrate how to UPDATE base-table data using VIEWS
o Remove superfluous VIEWS using DROP VIEW
o Focus on TRIGGERS
o Discuss MySQL’s TRIGGER implementation rules
o Discuss TRIGGER timing & events
o Discuss TRIGGER statements
o Define a TRIGGER to update a secondary table upon INSERT INTO primary table
o INSERT INTO primary table and examine TRIGGER response
o Log table updates using TRIGGERS
o Use SHOW to reveal defined TRIGGERS ON tables
o Create & evaluate multiple statement triggers using BEGIN .. .END
o Redefine MySQL statement delimiters to support multiple statement triggers
*
* Stored Routines (Functions & Procedures)
o Discuss Stored Routines components and applications
o Focus on Stored Procedures
o Discuss required privileges
o Explain how to invoke stored procedure
o Define useful stored procedures
o Use SHOW to reveal stored procedures and important attributes
o Create multiple statement stored procedures
o Redirect stored procedure output to memory for easy reuse
o Focus on Functions
o Discuss ideal uses for functions
o Describe function syntax
o Define functions based on date calculations and evaluate results
*
* Replication Configuration
o Explore uses of replication
o Illustrate MySQL Master-Slave replication model
o Discuss binary logging requirements
o Updated configuration on Master & Slave servers to reflect replicaiton requirements
o Create replication accounts on Master & Slave servers
o Create a snapshot of the master server’s databases
o Transport the snapshot to slave servers using SCP
o Record replication position
o Configure server IDs on Master & Slave servers
o Use DDL to enable Master & Slave servers
o Confirm replication status via DDLs, the process list and system table
o Committ updates to the master server and confirm replication to the slave servers
o Configure an additional slave server and confirm replication
*
* Logging
o Explain MySQL logging /ERROR|QUERY|BINARY|SLOW/
o Discuss the default log file nomenclature
o Explain & examine the contents of the ERROR log file
o Restart MySQL and examine log entries
o Enable the QUERY log file
o Explain & examine the contents of the QUERY log file
o Discuss the BINARY log file
o Discuss the SLOW log file
o Enable the SLOW log file
o Use mysqlbinlog to examine the contents of binary logs
*
* Win32 Integration
o Connect to Windows 2003 host and download MySQL Administrator
o Install MySQL Administrator
o Connect to Linux-based MySQL instance and explore key variables
o Download and install MySQL Query Browser
o Explore Query Browser interface & features
o Execute remote queries with Query Browser
o Download & install MyODBC
o Connect MS Access to MySQL using MyODBC
o Import data into MS Access from MySQL
o Link Tables in MS Access to MySQL using MyODBC
*
* Storage Engines
o Discuss the MyISAM storage engine
o Explain the usages and limitations of the Memory storage engine
o Confirm Memory storage engine support
o Create memory-based tables using the Memory storage engine
o Focus on the CSV storage engine
o Confirm support for the CSV storage engine
o Define CSV-based tables and evaluate results
o Focus on the Federated storage engine
o Explain the applications of remote tables using the Federated storage engine
o Implement Federated tables and evaluate results
o Focus on the Archive storage engine
o Confirm support for the Archive storage engine
o Describe the applications of compressed tables using the Archive storage engine
o Implement compressed tables and evaluate results
o Import data-set into compressed table and evaluate storage requirements
o Focus on the InnoDB storage engine
o Discuss the benefits /Transactional|Scalability/ of InnoDB-based tables
o Confirm support for InnoDB tables
o Explain InnoDB storage architecture and identify default data & log files
o Update /etc/my.cnf configuration file to support InnoDB tables
o Load large data-set and examine resulting data & log files
o Define custom InnoDB data & log files
o Extend the data & log files and evaluate results
o Distribute data & log files across multiple partitions
o Create a raw device for InnoDB data & log files
o Define InnoDB data & log files on a RAW device
*
* phpMyAdmin
o Discuss the benefits and applications of phpMyAdmin
o Install & configure Apache HTTPD
o Download & install phpMyAdmin
o Secure phpMyAdmin’s access to MySQL DBMS
o Explore phpMyAdmin’s interface
o Perform many shell-based queries, graphically
*
* PHP5 Integration
o Uninstall PHP 4.x
o Download & install PHP 5.x packages & relevant modules /MySQL|SSL|etc./
o Explore the PHP Command Line Interface (CLI)
o Interface PHP CLI to MySQL & return results
o Implement PHP->MySQL error handling using conditions & OO-functions
o Execute useful PHP->MySQL methods
o Define HTML forms
o Process HTML forms using PHP
o Store data in MySQL using PHP
download Here
password = tactools.org
http://vip-file.com/download/252ed7300983/linuxCBT-DBMS.part23.rar.html
http://vip-file.com/download/0aad61968771/linuxCBT-DBMS.part22.rar.html
http://vip-file.com/download/377a2e950744/linuxCBT-DBMS.part21.rar.html
http://vip-file.com/download/935bd7319441/linuxCBT-DBMS.part20.rar.html
http://vip-file.com/download/151b46671462/linuxCBT-DBMS.part19.rar.html
http://vip-file.com/download/1d23f4477071/linuxCBT-DBMS.part18.rar.html
http://vip-file.com/download/f439fd793601/linuxCBT-DBMS.part17.rar.html
http://vip-file.com/download/6cd8e1757558/linuxCBT-DBMS.part16.rar.html
http://vip-file.com/download/96c901442838/linuxCBT-DBMS.part15.rar.html
http://vip-file.com/download/a17635149570/linuxCBT-DBMS.part14.rar.html
http://vip-file.com/download/7fee11701345/linuxCBT-DBMS.part13.rar.html
http://vip-file.com/download/f8b4e226227/linuxCBT-DBMS.part12.rar.html
http://vip-file.com/download/79f9fe228371/linuxCBT-DBMS.part11.rar.html
http://vip-file.com/download/ffefd9769899/linuxCBT-DBMS.part10.rar.html
http://vip-file.com/download/58b3e2311264/linuxCBT-DBMS.part09.rar.html
http://vip-file.com/download/550524642541/linuxCBT-DBMS.part08.rar.html
http://vip-file.com/download/5d5abf312104/linuxCBT-DBMS.part07.rar.html
http://vip-file.com/download/bc8b9c593194/linuxCBT-DBMS.part06.rar.html
http://vip-file.com/download/36f501628459/linuxCBT-DBMS.part05.rar.html
http://vip-file.com/download/9639b2913423/linuxCBT-DBMS.part04.rar.html
http://vip-file.com/download/356b6992036/linuxCBT-DBMS.part03.rar.html
http://vip-file.com/download/7264d7487738/linuxCBT-DBMS.part02.rar.html
http://vip-file.com/download/3c9ff7814192/linuxCBT-DBMS.part01.rar.html
http://hotfile.com/dl/584097/22b4a48/linuxCBT_DBMS.part01.rar.html
http://hotfile.com/dl/584101/de03489/linuxCBT_DBMS.part02.rar.html
http://hotfile.com/dl/584111/b1e4363/linuxCBT_DBMS.part03.rar.html
http://hotfile.com/dl/584122/d87a7a1/linuxCBT_DBMS.part04.rar.html
http://hotfile.com/dl/584130/c3d6520/linuxCBT_DBMS.part05.rar.html
http://hotfile.com/dl/584140/b0a8018/linuxCBT_DBMS.part06.rar.html
http://hotfile.com/dl/584145/6a109f0/linuxCBT_DBMS.part07.rar.html
http://hotfile.com/dl/584158/f0949bb/linuxCBT_DBMS.part08.rar.html
http://hotfile.com/dl/584169/4d34ea9/linuxCBT_DBMS.part09.rar.html
http://hotfile.com/dl/584177/39a8a64/linuxCBT_DBMS.part10.rar.html
http://hotfile.com/dl/584188/ed914d8/linuxCBT_DBMS.part11.rar.html
http://hotfile.com/dl/584195/f8dfe5c/linuxCBT_DBMS.part12.rar.html
http://hotfile.com/dl/584206/209b20e/linuxCBT_DBMS.part13.rar.html
http://hotfile.com/dl/584214/17d3e58/linuxCBT_DBMS.part14.rar.html
http://hotfile.com/dl/584219/f4e559d/linuxCBT_DBMS.part15.rar.html
http://hotfile.com/dl/584226/d520a37/linuxCBT_DBMS.part16.rar.html
http://hotfile.com/dl/584237/783eba8/linuxCBT_DBMS.part17.rar.html
http://hotfile.com/dl/584248/e8f7925/linuxCBT_DBMS.part18.rar.html
http://hotfile.com/dl/584255/5b6cd86/linuxCBT_DBMS.part19.rar.html
http://hotfile.com/dl/584275/1f4ef4c/linuxCBT_DBMS.part20.rar.html
http://hotfile.com/dl/584282/4ca13f2/linuxCBT_DBMS.part21.rar.html
http://hotfile.com/dl/584293/bf65052/linuxCBT_DBMS.part22.rar.html
http://hotfile.com/dl/584304/b01b5f6/linuxCBT_DBMS.part23.rar.html
http://rapidshare.com/files/225157225/linuxCBT_DBMS.part01.rar
http://rapidshare.com/files/225156394/linuxCBT_DBMS.part02.rar
http://rapidshare.com/files/225157218/linuxCBT_DBMS.part03.rar
http://rapidshare.com/files/225157084/linuxCBT_DBMS.part04.rar
http://rapidshare.com/files/225156669/linuxCBT_DBMS.part05.rar
http://rapidshare.com/files/225157193/linuxCBT_DBMS.part06.rar
http://rapidshare.com/files/225157139/linuxCBT_DBMS.part07.rar
http://rapidshare.com/files/225156982/linuxCBT_DBMS.part08.rar
http://rapidshare.com/files/225157243/linuxCBT_DBMS.part09.rar
http://rapidshare.com/files/225157034/linuxCBT_DBMS.part10.rar
http://rapidshare.com/files/225157292/linuxCBT_DBMS.part11.rar
http://rapidshare.com/files/225157144/linuxCBT_DBMS.part12.rar
http://rapidshare.com/files/225157181/linuxCBT_DBMS.part13.rar
http://rapidshare.com/files/225157349/linuxCBT_DBMS.part14.rar
http://rapidshare.com/files/225156924/linuxCBT_DBMS.part15.rar
http://rapidshare.com/files/225156608/linuxCBT_DBMS.part16.rar
http://rapidshare.com/files/225157402/linuxCBT_DBMS.part17.rar
http://rapidshare.com/files/225156626/linuxCBT_DBMS.part18.rar
http://rapidshare.com/files/225157270/linuxCBT_DBMS.part19.rar
http://rapidshare.com/files/225156647/linuxCBT_DBMS.part20.rar
http://rapidshare.com/files/225156499/linuxCBT_DBMS.part21.rar
http://rapidshare.com/files/225156483/linuxCBT_DBMS.part22.rar
http://rapidshare.com/files/225155834/linuxCBT_DBMS.part23.rar
[This hidden content is only available for our VIP member]. Become VIP Member NOW
Similar Posts:
| | CBT | Author : lordmmb |



