Featured mysql server :
- MySQL Administrator’s Bible (Bible (Wiley))
- Thoughts and observations on ColdFusion from version 1.54 to 8.0
- Pro MySQL (Expert’s Voice in Open Source)
- SQL Server Comparison Tool
- The Definitive Guide to MySQL 5, Third Edition
- SQL Authority with Pinal Dave
- MySQL (2nd Edition) (Developer’s Library)
- NuSphere MySQL
- Linux Server Hacks: 100 Industrial-Strength Tips and Tools
- Professional ADO.NET 2: Programming with SQL Server 2005, Oracle, and MySQL
Hello, find the following popular mysql server :
MySQL Administrator’s Bible (Bible (Wiley))
With special focus on the next major release of MySQL, this resource provides a solid framework for anyone new to MySQL or transitioning from another database platform, as well as experience MySQL administrators. The high-profile author duo provides essential coverage of the fundamentals of MySQL database management—including MySQL’s unique approach to basic database features and functions—as well as coverage of SQL queries, data and index types, stores procedure and functions, triggers and views, and transactions. They also present comprehensive coverage of such topics as MySQL server tuning, managing storage engines, caching, backup and recovery, managing users, index tuning, database and performance monitoring, security, and more.
- ISBN13: 9780470416914
- Condition: USED – VERY GOOD
- Notes:
Rating:
(out of 7 reviews)
List Price: $ 49.99
Price: $ 28.57
MySQL Administrator’s Bible (Bible (Wiley)) Reviews
Some background first: I’ve used MySQL for two decently-sized programming projects in the past, on the developer side. More recently I was hired to design, build and administer the back-end of a web application. MySQL seemed the natural choice. With background only in the developer’s role, I had a huge amount to learn.
I started out by buying the MySQL Administrator’s Guide and Reference:
http://www.amazon.com/MySQL-Administrators-Guide-Language-Reference/dp/0672328704/ref=sr_1_4?ie=UTF8&s=books&qid=1244855803&sr=8-4
and a more general book on Database Administration:
http://www.amazon.com/Database-Administration-Complete-Practices-Procedures/dp/0201741296/ref=sr_1_1?ie=UTF8&s=books&qid=1244855921&sr=8-1
The former was pretty terrible, and it’s all available online anyways so there’s absolutely no reason to buy it. Why is it so bad? Despite being written by MySQL, it is completely impractical and totally bogged down with details. I defy you to figure out how to efficiently back up your database by using that guide. I couldn’t.
The latter was very useful for introducing concepts like data normalization and, while a little out of date, gives a quick sense of the products that are out there. I highly recommend it as a first read. but it’s not MySQL specific – so where to go then?
Finally, I found this book. It took me about 1 minute to find the tools I would need to back up a database and another 10 seconds to find a detailed discussion of what’s going on when you back up a database.
It’s also very recent (as of 2009/06) – it really reflects the state of the tools out there and I was pleasantly surprised to find that all of the developments I had been reading about in my online research were reflected in the book. Instead of glossing over complex topics like MySQL Cluster, memcached, DRBD, Linux HA (see, I wasn’t kidding about its coverage), it points you to external resources that are actually helpful.
I haven’t yet read all of it but, to my knowledge, there is nothing comparable out there. If you have a good idea of the basics behind database administration and need a practical guide to how to actually administer a MySQL database, including the tools available to you, I’d seriously recommend that you take a look at this book.
LIMITATIONS:
- I was a bit concerned about the book’s information on early-stage tools like MySQL Proxy and MySQL 6.0. They haven’t been released for general use and are not certified as stable, but the book just lists them with other tools as if you could just drop them in. Be careful.
- As another reader pointed out, it’s not the easiest read. But then, if you’ve never used SQL, never mind MySQL before, then trying to understand concepts like the difference between READ COMMITTED and SERIALIZABLE isolation levels will surely result in pain and death. This book is much better if you have a question like “How do I backup a MySQL database?”, “How do I make a trigger”, or “How do I set up replication?”
On the front cover of MySQL Administrator’s Bible is a sentence that reads:
“The book you need to succeed!”
I must say, I do agree. Authored by two very experienced DBAs, Sheeri Cabral and Keith Murphy, they’ve combined their talents to cover what you really need to know to succeed. This book is very versatile. If you’re new to MySQL, or experienced in another database and have to start administrating MySQL, you need this book. I can honestly say, even if you have years of MySQL experience, you will learn something new. I did. Divided into four parts, MySQL Administrator’s Bible covers your First Steps with MySQL, Developing with MySQL, Core MySQL Administration and Extending Your Skills.
First Steps with MySQL starts with a gentle introduction to MySQL with company information, which seems to be changing annually, and most importantly, the MySQL community itself. What makes MySQL so fantastic is the community. After that, you’ll be lead into installing and configuring MySQL on various platforms including Linux, Windows and Solaris while touching on post installation configuration too. Basic security is covered as well as some tips on troubleshooting and accessing your new MySQL installation using tools included with MySQL or using third party software.
Developing with MySQL covers the MySQL Language Structure and if you’re coming from another RDBMS, it covers how MySQL deviates from the SQL standard by extending that standard to make MySQL the number one open source database used on the Internet. After that, this section covers the same type of topics covering just about any other mainstream databases such as using stored procedures, cursors, events, views and transactions.
The Core MySQL Administration is the heart of this book. It covers MySQL server tuning, covering all major storage engines including MyISAM, InnoDB, Falcon, PBXT, and NDB engines including the first time I’ve seen in print, the Maria storage engine. An entire chapter is devoted to implementing cache tables and using the query cache. Memcached is also mentioned, and mentioned again in the final section. Continuing on with what I consider the most important job of a DBA, backup and recovery. Databases are very central to running a business, any data loss could put a company out of business. Be prepared.
This section gives a solid introduction to the topic of dealing with users, and how they are managed within MySQL. Count on covering GRANT/REVOKE, using SHOW GRANTS and mk-show-grants MaatKit tool. Partitioning, logging and replication and measuring performance rounds out this section.
If you have experience with another RDBMS, plan on spending a significant amount of time in this section. Not that the other sections aren’t important, they are, but this is the bread and butter of what a MySQL DBA does on a daily basis.
Extending You Skills section can be considered getting your Masters in Database Administration. Just about every DBA will have to tackle improving queries and the tuning of indexes. The second most important job of a DBA is monitoring performance of your MySQL server. Don’t let your users be your first line of monitoring! Be proactive, there are plenty of open source monitoring tools available. The most popular are discussed, as well as MySQL Enterprise and third party companies too. MySQL Data Dictionary is covered in in detail over 58 pages. This is the most I’ve read in any book about the data dictionary.
Last but not least, most high performance MySQL systems involve scaling up or out. It covers the usual suspects of replication, MySQL Cluster, and memcached. MySQL Proxy is initially covered and has an appendix to expand on that information. MySQL Proxy itself is worthy of its own book. (hint, hint
) Two more appendices cover MySQL Functions and Operators, and additional resources.
Even though this book targets MySQL 5.1/6.0, there is plenty of information that will apply to 5.0. If you’re still on 5.0, don’t hesitate to pick up a copy. This will be a book that can stay with you as your upgrade to 5.1 and beyond. The companion website – [...]contains all the code from the book too, rounding out this fine tome.
What didn’t I like about the book? There are only a couple of things, all personal I’m sure. First, I really don’t care too much for tables of options from the various tools. Most open source tools are developed rather quickly and options change. This could render portions of the book out of date quickly.
The other thing I noticed that wasn’t mentioned in the book was the community versions of MySQL supported by Open Query and Percona. The latter has their own storage engine, XtraDB and backup solution, XtraBackup.
All in all, this is a very solid book on administering MySQL. This book digs deeper, the experience of the authors really show. Well done Sheeri and Keith!
Disclaimer: The publisher provided me with a copy of MySQL Administrator’s Bible.
Buy MySQL Administrator’s Bible (Bible (Wiley)) now for only $ 28.57!
Hello, find the following popular mysql server :
Thoughts and observations on ColdFusion from version 1.54 to 8.0
The CFWhisperer blog is updated regularly with detailed information about building and scaling large enterprise web applications.Kindle blogs are fully downloaded onto your Kindle so you can read them even when you’re not wirelessly connected. And unlike RSS readers which often only provide headlines, blogs on Kindle give you full text content and images, and are updated wirelessly throughout the day.
List Price: $ 0.99
Price: $ 0.99
Hello, find the following popular mysql server :
Pro MySQL (Expert’s Voice in Open Source)
Pro MySQL Pro MySQL is the first book that exclusively covers intermediate and advanced features of MySQL, the world’s most popular open source database server. Whether you are a seasoned MySQL user looking to take your skills to the next level, or you’re a database expert searching for a fast-paced introduction to MySQL’s advanced features, this book is for you. The first part of this book discusses topics related to design and development. Topics include transaction processing and indexing theory, benchmarking and profiling, and advanced coverage of storage engines and data types. The authors also delve deep into the MySQL source code and system architecture at a level you won’t find anywhere else. Essential advanced SQL is also covered, with discussion of subqueries, derived tables, and joins. These concepts are demonstrated in a range of situation-specific examples—from dealing with hierarchical data to performing Geographic Information System (GIS) examples with just MySQL. This section also covers MySQL 5′s new enterprise features like stored procedures, triggers, and views. The latter part of this book devotes itself to administration topics. Topics include MySQL installation and upgrading, user administration, database backups, replication, and clustering. You’ll also learn about the new data dictionary features available in MySQL 5.
Rating:
(out of 8 reviews)
List Price: $ 49.99
Price: $ 9.71
Pro MySQL (Expert’s Voice in Open Source) Reviews
For people like me who have a good understanding of MYSQL, the next logical step would be this book. I already know about stored procedures, transactions and the basics of triggers, but I want to learn more about these topics in more “real-world” scenarios in how to develop larger, enterprise-wide applications. Also I want to know more about other advanced topics that I may not even know to think about. If this sounds like you as well, then read on…
The author starts in with reviewing how business requirements and the software development cycle can be part of database development. This a great chapter for people like me who would like to learn how different approaches are taken from different IT perspectives in a team environment (business analysts, application developers, and project managers) This chapter gives you a good understanding of how the other side thinks.
The next chapter focuses on the importance of proper indexing and strategies as pertaining to data storage. Because once your databases reach to the multiple gigabits of storage space, you need to very focused on how long each request takes. A few seconds here and there begin to add up and can cause serious issues if not taken into consideration early in your database design. Like me who only deals with small to an occasional medium-size database I never really had to think about this before.
The next chapter focuses on transaction processing in MYSQL which is one of the more difficult concepts for many and I am in the process now of reading it. I really like the author’s explanations and examples. Each point is explained thoroughly and in an easy to read manner.
The rest of the book goes into more advanced topics (system architecture, benchmarking and profiling, security, replication and clustering) as well as giving more detail and explanation to topics that may only be briefly covered in other MYSQL books (stored procedures, functions, and views).
If you already know the basics of MYSQL and want to really advance your knowledge with “real-world” scenarios, this is the book for you.
I am pleased to see a new trend emerging in the MySQL books I get to review, and that is a trend toward more advanced books that assume the reader is already familiar with how to create a table and construct a basic SELECT query. Pro MySQL by Mike Kruckenberg and Jay Pipes is a shining example of this new trend. This book cuts through the basics to provide in-depth information on not only how to use MySQL, but on how the MySQL server actually works.
One example of this is their chapter on Index Concepts. Rather than focus on the basics of how to create an index, this book gives you depth by talking about seek times, buffering, and the actual structure of things such as a B-Tree index. As a result you not only know that an index on a certain column will improve performance, you also know why.
This book is also the first I have seen that takes a chapter to really dig into the MySQL source code and illustrate some of the internal workings of the MySQL server, such as the client protocol, complete with flow charts and diagrams. The System Architecture chapter is a great place to start if you are looking to understand the server internals or modify the MySQL source code.
There is a nice SQL Scenarios chapter that covers some common use cases for things such as finding duplicate and orphan records, retrieving random rows (properly), working with GIS data, and (my favorite) working with hierarchical data. The authors cover the Nested Set model nicely (which I have previously written and presented about), covering the basics of using nested sets. This provides a good starting point from which one could easily jump the Celko’s Trees and Hierarchies book.
The book carries on with a good introduction to stored procedures, functions, cursors, views, and triggers to round out the first half of the book, and then spends the second half of the book focusing on administrative tasks.
There is quick coverage of installing and configuring MySQL, with more emphasis given to configuring MySQL than installing it, as is appropriate to a book on advanced MySQL usage. Following installation and configuration comes coverage of user administration, where once again flow charts are used effectively to show the authentication process within the MySQL server.
I was pleased to see the MySQL GUI tools being covered in print, as user administration was shown both using the command-line mysql client and MySQL Administrator. It was good to see the authors recommend that administrators think in terms of user roles, even if roles are not yet implemented in MySQL (the authors suggest the use of scripts to grant and revoke roles, a good workaround in the interim).
This book will certainly be noted for being one of the first to print with coverage of MySQL Cluster, as well as a full chapter on the new INFORMATION_SCHEMA, or MySQL Data Dictionary, as the authors chose to name the chapter.
All in all this is a really solid book for the experienced MySQL user who wants to go futher, and certainly lives up to its name.
Buy Pro MySQL (Expert’s Voice in Open Source) now for only $ 9.71!
Hello, find the following popular mysql server :
SQL Server Comparison Tool
SQL Server Comparison Tool is a Windows program for analyzing, comparing and documenting SQL Server databases. It’s an ideal tool for Database Administrators (DBA) and Developers. With SQL Server Comparison Tool you can take full control of your databases: analyze, compare and document structure of tables, procedures, functions, views, triggers and relationships, compare data stored in tables, generate detailed reports.
- Analyze, compare and document structure of Tables, Procedures, Functions, Views, Triggers and Relationships
- Compare data stored in tables
- Generate detailed reports displaying results of comparisons or analysis
- Export data differences reports to HTML file or Excel (CSV) file
- Filter objects by their ownerships
Price:
Hello, find the following popular mysql server :
The Definitive Guide to MySQL 5, Third Edition
“For those with a need to know, and those with a desire to learn MySQL, this volume contains nearly everything you would want and expect, not only about MySQL itself but about the software that interacts with it or web servers.” — John Suda, Slashdot Contributor “I’ve seen the 2nd edition (of) this book and it’s good stuff.” — Arjen Lentz, MySQL Community Journal MySQL 5 is slated to be the most significant release in the product’s history. The Definitive Guide to MySQL 5, Third Edition, is the newest revision of Michael Kofler’s popular book. This is the first book to offer in-depth instruction about the new features of the world’s most popular open source database server. Updated to reflect changes in MySQL version 5, this book will expose you to MySQL’s impressive array of new features: views, stored procedures, triggers, and spatial data types. Whether you’re a novice or intermediate user, you will benefit from extensive coverage of core MySQL features like user administration, basic and advanced querying, and security. You will also be introduced to several standard and third-party tools, like MySQL Administrator, Query Browser, and the popular PHPMyAdmin tool.
Rating:
(out of 16 reviews)
List Price: $ 49.99
Price: $ 2.00
The Definitive Guide to MySQL 5, Third Edition Reviews
I read and reviewed MySQL Press’ MySQL Tutorial by Luke Welling and Laura Thomson two years ago. I thought Tutorial was a great, concise (267 pages including index) MySQL overview. I hoped The Definitive Guide to MySQL 5, 3rd Ed (DG, 748 pages) would extend my understanding of MySQL beyond the coverage in the Tutorial. Unfortunately, I found the Tutorial did a better job addressing important information than the DG. While there is some good information in the DG, I recommend staying with books published by MySQL Press.
The biggest problem with the DG stems from this statement on p xxvii: “No previous knowledge of SQL or database design is assumed.” The first seven chapters, however, frequently direct confused newbies to chapters 8-10, where database design and SQL syntax is introduced. An author who recognizes that he is losing readers should take a hard look at the organization of his book.
DG is also far from a “definitive guide.” I wanted to learn more about JOIN statements, but only 3 confusing pages (pp 197-9) cover JOINS — compared to 7 in the much shorter Tutorial. Worse, here is how the author “introduces” the LEFT JOIN and ON statements: “One variant consists in creating a table list with LEFT JOIN and then forming the linking connection with ON.” How is anyone (especially newbies) supposed to consider that informative?
I was also interested in learning about MERGE tables, since I use them in an open source project. DG has nothing to say on the subject, although the Tutorial gives at least 2 pages. The DG also makes the unfortunate decision to omit the semicolon from the end of all MySQL commands. Sure, they may not be in the SQL standard, but every single other MySQL book I’ve seen uses them. That is especially important for new MySQL users.
The DG also spent far too much time on areas I felt were best addressed elsewhere. I really don’t care to learn how to install Apache, PHP, and Perl on various platforms. I also didn’t need to read so much about integration with PHP. Other books with MySQL and PHP in the title are the right place to discuss that subject. I admit I skipped reading Part IV, on programming interfaces, along with ch 12 (GIS) and the SQL and API references (ch 21, 23).
On the positive side, I had not read anything on stored procedures or triggers before (ch 13). I also picked up some tricks on security and logging from chs 11 and 14. I learned of some new administration tools in ch 5. I still wish the author had spent more time addressing SQL syntax and explaining what it meant, and less on peripheral issues. Performance and tuning are two subjects outside of core SQL syntax that should be in the book but are not discussed thoroughly. I should note that I thought the translator for DG did a great job. I didn’t notice any real rough spots that may have been the result of poor translation.
If the fourth edition of the DG receives a major overhaul, you might consider buying it. I am astounded by the number of positive reviews for this and previous editions, since I believe the DG does not address enough of the subjects that really matter to MySQL administrators.
Apress does publish many outstanding books, such as Running IPv6 or several titles on Python. I recommend checking out those works.
First a bit about me: I MySQL 4 certified both core and professional. I have 2.5 years production experience with MySQL and 6 years with databases in general.
I bought this book based on the table of contents thinking I would get a good read on the differences between versions 4 and 5. Then I would begin my journey towards certification.
While this book may be good at telling me about 5, I have found so many factual errors in the first 200 pages that I am going to set it aside for fear that I will be mislead on topics that are new to me.
Here are some examples:
- The author says it is possible to drop a table where foreign key constraints are in place. This is false. The server will return an error and InnoDB status will provide detail.
- The author states that the location of orphan records in a child table can be done by a simple subselect. While this is true, in any table larger than a few thousand rows the query will take forever. This should be done with an outer join.
- The author states (pg 153) that MySQL is case-sensitive in regard to database and table names. This is true in operating systems that are case sensitive (Linux, OS X, Unix) but not Windows. While it may not seem like a big deal, a DB using InnoDB tables will not port from Linux to Windows if varied case is used in these names.
-On page 8 the author states that use of MyISAM tables precludes hot backups. MySQL has shipped with mysqlhotcopy since version 3.23 (Note InnoDB does require the purchase of InnoDB Hotbackup)
-On the same page the author states that MySQL is unsuitable for OLAP applications. Again this is false. MyISAM tables provide a number of very powerful features that support data warehousing. MySQL has even partnered with Business Objects on just this type of system.
Given these and many other details, it appears to me that this book was written by someone who uses MySQL is one specific way, thus it defines their experience with the system.
I strongly recommend against this book.
Buy The Definitive Guide to MySQL 5, Third Edition now for only $ 2.00!
Hello, find the following popular mysql server :
SQL Authority with Pinal Dave
Pinalkumar Dave is Microsoft SQL Server MVP and author of over 1000 SQL Server articles. He has over six years experience as Sr. Project Manager and Principal Database Administrator in MS SQL Server 2008/2005, .NET (C#) and ColdFusion MX. He has a Masters of Science degree in Computer Networks, along with MCDBA, MCAD(.NET) and ColdFusion Advanced MX Certifications. Kindle blogs are fully downloaded onto your Kindle so you can read them even when you’re not wirelessly connected. And unlike RSS readers which often only provide headlines, blogs on Kindle give you full text content and images, and are updated wirelessly throughout the day.
List Price: $ 1.99
Price: $ 1.99
Hello, find the following popular mysql server :
MySQL (2nd Edition) (Developer’s Library)
In the second edition of MySQL Paul DuBois provides an updated, comprehensive guide to one of the most popular relational database systems.MySQL is the most popular open source database server in the world, with more than 2 million installations and customers including Yahoo!, MP3.com, Motorola, and NASA.MySQL 4.0, now generally available, is a long-awaited update to the database management system that has many new features, including a new table definition file format, enhanced replication, and more functions for a full text search.Instead of giving readers merely an overview of MySQL 4.0, DuBois continues to include the most sought-after answers to the questions he hears most often from the community.The unexpected pleasure of reading books about databases is that they are often written by authors with highly organized minds. Paul DuBois and his editors at New Riders have assembled MySQL with a clarity and lucidity that inspires confidence in the subject matter: a (nearly) freely redistributable SQL-interpreting database client/server primarily geared for Unix systems but maintained for Windows platforms as well. What isn’t “free” about MySQL (the application) is its server’s commercial use; all clients and noncommercial server use are free. DuBois’s tome isn’t free either, but its list price is modest in light of its value and the value of its namesake. The volume is superbly organized into 12 chapters and 10 appendices and contains a concise table of contents and a comprehensive 50-page index. It is peppered with references to the online HTML documentation that comes with the source and binary distributions (which are available and easy to install in stable rpm and tar releases.) The first third of MySQL is an excellent instruction tool for database newbies; the second third is a detailed reference for MySQL developers; and the last third consists of clearly annotated appendices, including C, Perl (but not Python), and PHP interfaces. Perhaps as an indication of the collective will of the developers of MySQL, DuBois does not separate Windows 95/98/NT design or development specifics from its main discussions. Platform-independent design is a goal, not a reality, and users will have to rely on newsgroups and mailing lists for details. Moreover, security issues are addressed in a mere 18 pages, a large part of which is devoted to standard Unix file and network-access permissions. Next to nothing is mentioned about defense against common hacking strategies, the use of secure shell interfaces, or access encryption. Although it is nearly 800 pages in length, DuBois’s book is thankfully not encyclopedic. It is a valuable précis of the MySQL database, and its easy-to-skim look and feel will make it an excellent browse for database experts who want to know what is and is not possible within MySQL, the application. –Peter Leopold
Rating:
(out of 120 reviews)
List Price: $ 49.99
Price: $ 18.97
MySQL (2nd Edition) (Developer’s Library) Reviews
I read a lot of computer books both as part of my day job (unix sysadmin) and on the side (wrote 2 computer books). Normally I’m not moved to write nice things about the competition, but this book is truly impressive.The organization of the chapters is logical, proceeding from introductory to advanced topics in clearly defined stages. The author thankfully resisted the current trend of giving the chapters cutesy names that communicate nothing. The writing is clear and concise. The indexing is superb. The coverage of the subject matter is unbelievably complete, encompassing not only MySQL and general database theory, but also almost every other aspect of database programming.In the six months I’ve been working with it I’ve never been unable to find the answer to a MySQL question in this book. Indeed, the Appendices are so good that I have found answers in here when the books I was reading on PHP and the Perl DBI turned out to be wrong.MySQL is a very impressive achievement in all respects.
I have purchased many books on SQL. I USUALLY purchase books (I own over 30) from Oreilly, as I did with their MySql/MSQL book which was absolutely NOTHING in comparison to the MySQL book by Other New Riders. I really must say this book is PERFECT. It covers EVERY major topic. It is SUPERBLY written, both novices and experts alike can easily learn, follow, and understand this book. It’s an extraordinarly effective tutorial, learing guide, and reference. It gives clear, easy to follow instructions and examples on everything, and anything you need to do in reguard to databases. I give this book my HIGHEST possible recommendation. This book was worth every single penny I paid for it.
Buy MySQL (2nd Edition) (Developer’s Library) now for only $ 18.97!
Hello, find the following popular mysql server :
NuSphere MySQL
Though this product’s name tends to indicate that it’s purely a database tool, NuSphere MySQL is really a suite of four open-source software packages–proven, popular, and well-supported ones–that work together to run interactive, dynamic Internet sites. This package is comprised of the MySQL relational database management system (RDBMS), interpreters for the Perl and PHP languages, and the Apache Web server. It’s far from just a straight CD-ROM distribution of publicly available software, though. NuSphere has done a great job of automating the packages’ installation processes–this suite installs on both Windows and Linux–so the four utilities interoperate smoothly. You can also install any or all of the suite’s components manually, or compile from the included source code. The big boys of databases–Oracle, Sybase, Microsoft, and others–would like you to believe that only their big, expensive RDBMS products are good enough to handle your data. It’s just not true. Most of the time you’ll find that MySQL, an open-source RDBMS that’s widely used and meticulously maintained, is entirely adequate for storing, retrieving, and reporting on your pieces of data. It supports standard structured query language (SQL, as defined in the SQL-92 specification), and should be familiar to anyone who’s done SQL work in any environment before. MySQL has been tested extensively and has been found to stack up well against commercial database products, particularly with small- to mid-size data stores and moderate transaction loads. The point: unless you have unusually tough requirements (such as an astronomical transaction load, a need to store epic quantities of data, or a need for a feature that’s available only in commercial RDBMSes), MySQL can do what you want reliably and speedily. It’s a well-built RDBMS that does everything most applications require. Its appeal is enhanced by the programming languages and tools that have grown up around it. This kit includes version 3.23.41. PHP (the letters come from the German for “Hypertext Preprocessor”) is similar in function to Microsoft’s Active Server Pages (ASP) and Sun’s JavaServer Pages (JSP) scripting languages. PHP code is embedded in documents that are to be sent out by a Web server, and is interpreted before the page is served. That means you can use PHP (version 4.0.6 is part of the NuSphere product) to do database lookups (the language has a set of commands specifically for connecting to MySQL databases). PHP can format the results of the lookups as HTML, which the Web server would then send to the requesting browser. You can set up HTML forms to be submitted to PHP scripts, as well, which means you can use HTML, PHP, and MySQL together to create complete user interfaces for your databases. If you prefer using Perl (Practical Extraction and Report Language) to PHP or require its more extensive text-manipulation capabilities, this kit provides you with Perl 5.6.1. Like PHP, Perl has modules (included here) that make it easy to query MySQL databases and use the results in your applications. Perl, like PHP, can be used to generate Web pages based on query results. Perl has a gigantic following, and as a result you’ll find hundreds of books, mailing lists, chat rooms, sample-code libraries, and experts on it. It’s a pretty consistent and easy-to-understand language, too, so learning is relatively easy. Tying it all together: Apache, the popular, refined, and extensible open-source Web server. Apache (version 1.3.20 included here) serves HTML pages, of course, but also makes Perl and PHP scripts available to users on the network. It’s reliable and customizable. There’s documentation, too. Three commercially available books (all from O’Reilly & Associates, and with
Rating:
(out of 4 reviews)
List Price: $ 79.00
Price:
NuSphere MySQL Reviews
I love NuSphere. NuSphere MySQL was a snap to install. I was able to host a web page pretty much right at the start (after I got used to the directory structure and some of the features). This was perfect for a beginner like me. Perl, apache, php and mysql work right from the start. This setup is perfect for learning Web Development and administration. I’ve wanted to learn Apache and php for a while, and NuSphere definitely kicks you right into it. The nice thing is you don’t even need to be connected to the net to start learning. This package comes with pocket reference guides to Perl, apache, and php. Plus the big book on MySQL.A good knowledge of Linux/Unix and command lines well is needed.
I’d read reviews of NuSphere MySQL on other websites, which said it was great for newbies: easy installation and great tools. I’m a veteran internet programmer, but finally bought it for two reasons: I needed an easy way to get my customers up and running quickly, on a common webserver platform, and I wanted versions of the tools running under Windows as well as Linux.This package turned out to be a lifesaver. It comes with lots of features, including out-of-the-box, easy to install and use, Apache, Perl, PHP and MySQL, all configured correctly, and working on multiple platforms. I found the integrated phpmyadmin utility a great way to manage my MySQL databases.Best feature: remote install, so I can install it on a headless machine at my ISP.
Buy NuSphere MySQL now for only !
Hello, find the following popular mysql server :
Linux Server Hacks: 100 Industrial-Strength Tips and Tools
Setting up and maintaining a Linux server requires understanding not only the hardware, but the ins and outs of the Linux operating system along with its supporting cast of utilities as well as layers of applications software. There’s basic documentation online but there’s a lot beyond the basics you have to know, and this only comes from people with hands-on, real-world experience. This kind of “know how” is what we sought to capture in Linux Server Hacks. Linux Server Hacks is a collection of 100 industrial-strength hacks, providing tips and tools that solve practical problems for Linux system administrators. Every hack can be read in just a few minutes but will save hours of searching for the right answer. Some of the hacks are subtle, many of them are non-obvious, and all of them demonstrate the power and flexibility of a Linux system. You’ll find hacks devoted to tuning the Linux kernel to make your system run more efficiently, as well as using CVS or RCS to track the revision to system files. You’ll learn alternative ways to do backups, how to use system monitoring tools to track system performance and a variety of secure networking solutions. Linux Server Hacks also helps you manage large-scale Web installations running Apache, MySQL, and other open source tools that are typically part of a Linux system. O’Reilly’s new Hacks Series proudly reclaims the term “hacking” for the good guys. Hackers use their ingenuity to solve interesting problems.
Rating:
(out of 31 reviews)
List Price: $ 24.95
Price: $ 10.00
Linux Server Hacks: 100 Industrial-Strength Tips and Tools Reviews
This well written guidebook covers a hundred real-life time saving scripts and command-line magic.
Everything your local *nix guru knows that you don’t; narrow the gap!Highlights include CVS commands, creating unchangeable files (even by root!), filtering
and organizing apache log files (for example, listing the top 20 broken links, sorted
and numbered by frequency of occurrence), modifying the titlebar to display load average,
host, current directory, etc., ntop and httptop and much more.I’ve been using *nix for 6 years now, and I found this book both a refreshing review of
previously known concepts as well as a great introduction to some new utilities and tools.
I can’t help myself not to begin this review with a big *thanks* to O’Reilly for choosing Linux to launch this new series.
First thing that crossed my mind after opening this tiny book, was a notion of close resemblance with another O’Reilly book that I read recently, “Unix Power Tools”. Book is organized in almost identical way, short articles (anything from a page or two, to several pages) that are presented with a clear writing style, examples and efficient layout. Articles are cross-referenced in such a way that you can easily start reading the book from whatever end you wish.
The hacks that I like the most are those in chapters on Server Basics, Backups, SSH and Information Servers (BIND, Apache, MySQL, OpenSSL). If you’re hardcore Linux sysadmin you’ll probably appreciate hacks in other chapters too; Networking, Revision Control and Monitoring. For me, the most challenging hacks in this book are the ones that deal with tunneling (IPIP/GRE encapsulation, vtun over SSH), due to complete lack of experience on my side, otherwise I found the book well worth the price and time to read, even if you’ll end up with only one or two implemented hacks in your production environment. (If I could only say this more often in my reviews
.
Keep in mind, this is not the book that’ll likely collect the dust on your bookshelf after you’ll read it. Mine is always close to the Linux box that I manage (in a good company with already mentioned “Unix Power Tools”).I’m really looking forward to other books from O’Reilly Hacks series, what about 100 hacks on Oracle, MySQL, regular expressions “one liners” (with sed, awk, grep, perl…), Windows NT…
Buy Linux Server Hacks: 100 Industrial-Strength Tips and Tools now for only $ 10.00!
Hello, find the following popular mysql server :
Professional ADO.NET 2: Programming with SQL Server 2005, Oracle, and MySQL
ADO.NET revolutionized the way data was accessed through SQL Server, Oracle, and MySQL. With Microsoft’s release of ADO.NET 2, ADO and the .NET Framework are integrated with SQL Server for the first time-enabling you to program .NET applications directly within the SQL Server database. Packed with sample code and recommended best practices for using ADO.NET 2, this code-intensive book explores the new data types that are available in the 2.0 Framework and discusses the appropriate time and way to use them. You’ll learn how to make repetitive, mundane tasks much simpler and you’ll walk away with a solid foundation for developing database-driven applications. What you will learn from this book The basics of creating a connection, executing a query, and returning a result Best uses for Oracle in the ADO.NET Framework The many new features that are available for XML How to use the full text search capabilities of Microsoft(r) SQL Server 2005 Methods for retrieving data and presenting it in various ways Why MySQL is a viable option for data storage Who this book is for This book is for experienced database developers who want to learn the latest release of ADO.NET 2.0. Knowledge of ADO.NET 1.0, general .NET development, and Microsoft SQL Server is necessary. Wrox Professional guides are planned and written by working programmers to meet the real-world needs of programmers, developers, and IT professionals. Focused and relevant, they address the issues technology professionals face every day. They provide examples, practical solutions, and expert education in new technologies, all designed to help programmers do a better job.
- ISBN13: 9780764584374
- Condition: USED – VERY GOOD
- Notes:
Rating:
(out of 6 reviews)
List Price: $ 49.99
Price: $ 24.18
Professional ADO.NET 2: Programming with SQL Server 2005, Oracle, and MySQL Reviews
I have 16 years experience as an adjunct instructor at a community college. I have a BS in Engineering and I’m 3 credits away from my Master’s in Comp Sci.
I’m taking time from my class prep to write this review…
I have been assigned to teach a Visual Basic programming class with this book. Had I been given the opportunity to read the text beforehand, I would have fought hard to use some other book. The example code is formatted so poorly that I am embarassed to use it in class. Some of the example code in the book doesn’t even match what’s available for download on the WROX web site. The QC staff at WROX should be reassigned. I’ve QC’d many programming textbooks myself and I can see that this stinker was rushed to print without enough editing.
Don’t be fooled by the title. The majority of the examples are SQL Server-specific. OK, Visual Studio has a SQL Server bent, given that both are Microsoft Products. That’s no secret. However, if the title of the book references Oracle and MySQL, then all the examples should also. If a particular paradigm can only be implemented in SQL Server, then the authors have a responsibility to provide work-arounds for the other DBMS’s that are listed on the cover of the book. Arrrgh.
Chapter 1 covers the History of Data Access. That doesn’t fit with the remainder of the book. Part of chapter 2 covers normalization, also not a good fit with the remainder of the book. The authors even admit that the book is aimed at software developers who have prior knowledge of ADO .Net and SQL Server. That implies prior knowledge of normalization and database design.
Recently I was at the bookstore with my 11 year-old. I was agonizing over which ASP .Net book (both WROX titles) to purchase, so I held up two possibilities and asked her to help. She noted that one cover had 3 author’s faces on it and the other had two. She concluded that the book with 3 faces must be better. I couldn’t argue with that logic. This book has seven faces on it, but it just doesn’t deliver.
I was really looking forward to this book, for both ASP.Net and WinForms development, since I really thought that’s what the book was really about. Boy was I surprised. if that was all it had, I’d probably be very happy. However – that was just the tip of the iceberg! It has quite a wide focus, so, in some cases, it was kind of dificult to know where the book is going.
However, The reader is somewhat warned right off the bat, that the book focuses mainly on the new features of ADO.Net 2.0, so prior knowledge of ADO.Net is expected, but I believe there is still a lot of text that covers a lot of the basics – just without a hand-held experience.
For those so inclined, there’s quite a bit of information concerning subjects like usinc CLR objects, TSQL Enhancements, Notification Services, Service Broker and Reporting Services, though it’s definitely not JUST about SQL Server. There is quite a bit on the popular open source databases like MySQL and PostgreSQL, along with a chapter on Oracle, just for good measure.
Many times, on different forums, I find questions concerning how to create a Database/table/etc, in code. Professional ADO.Net 2 has this plus a whole lot more about SQL Server server-side programming
Going into the book, I knew there were quite a few new features of ADO.Net, but I really had no idea concerning the extent of new features. This book contains 584 pages of great information. Though what I’d consider a bit wordy, at times, I’ll definitely keep this book around.
If all you do is ASP.Net web page development, maybe this isn’t the book for you – but if you do a lot more and really like ‘nuts and bolts’, and widening your experience, I think it’s a go!
Buy Professional ADO.NET 2: Programming with SQL Server 2005, Oracle, and MySQL now for only $ 24.18!
Find more mysql server products on Amazon!





























