Software and Tools Books
Related Subjects: Pools
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219

Used price: $0.52

Providing superior content, structure design, visual appealReview Date: 2002-07-08
Dated...Review Date: 2003-06-09
A highly recommended instruction and reference guideReview Date: 2001-02-24
Value for money and a great deal of help !Review Date: 1998-02-03
The best web book for web graphic desiner ever!!!Review Date: 1999-10-14

Used price: $19.00

Great Cookbook For Linux AdminsReview Date: 2008-05-30
Great book, great resource, easy recommendation
***** RECOMMENDED
Useful and specific.Review Date: 2008-05-05
Much Ado About NothingReview Date: 2008-03-30
computer users...".
Nothing can be further from the truth. In reality this is a very elementary
text on X window system that probably would not be worth of buying if not for the excellent Chapter 3 which does a great job in systematically explaining
structure of xorg.conf file. It is also the only book written in the past ten years entirely dedicated to X window system.
At the beginning of the chapter 6 the author brags about the
fact that he will discuss often ignored utility programs which ships with X window
system. That is quite an overstatement as after the reading of chapters 6, 7, and 8
one would not be able even to configure mice for a left-handed person.
The book in review is just a part of the general trend which can be summarized in the following observation:" As the use of computer technology has seen unprecedented
expansion in the past 20-30 years the computer literacy of an average computer user
has shrunk to zero". I can just add that above observation seems nowadays apply
to so called "power users" too.
At the end, I shell mentioned that the book is written by a GNU/Linux user but the
author made a genuine attempt to write in a fashion which would make the text useful
to Unix users. In an era of great ignorance by a large part of GNU/Linux
community about Unix the author's approach should be commended.
Finally X explainedReview Date: 2008-05-14
Great book except for modelines coverageReview Date: 2008-02-14
become knowledgeable about using KDE, less so about using X by itself.
This book filled in quite a few gaps in my knowledge of X, but it did not
provide me with the information I need to solve a problem making a new
monitor run at its rated maximum resolution.
I had been running with a 21" crt at 2048x1546, but the 9-year-old crt
was wearing out. So I bought a 19" ACER lcd display with maximum
resolution of 1440x900. The new display would not work at all with the
default xorg.conf generated by "X -configure". The problem turned out to
be the driver, which was specified as "ati". When I changed the driver
spec to "vesa", X came up at 1280x1024 and worked well. But I have so
far not been able to get the monitor to run in 1440x900.
The book does a pretty good job of explaining the xorg.conf file.
Modelines are mentioned briefly in the text, but not in the index. There
are no formulas given for computing modeline data to be included in the
xorg.conf file. No mention is made of the various values (eg ati, vesa)
that can be specified for X drivers. There is no list of validated modes
in the Xorg.0.log file. So after reading the book I still have not
figured out how to make my monitor run in 1440x900.
The book describes how to support keyboards for multiple countries, but
it was not clear to me after reading it how to display the corresponding
characters for (eg French,German,Russian) characters in addition to
English.
That said, I give the book a 4-star rating. There seems to be no other
current, up-to-date book on X. I'm glad I have a copy to study and write
notes in.

Just a reference, does not give you the wider picture.Review Date: 2005-10-29
For a wider picture and introduction, see Managing Projects With Make (I believe the newer editions only cover GNUMake, which is different than what BSD developers use).
Good referenceReview Date: 2001-07-22
After a brief overview of make in chapter 1, the authors move on to introduce makefiles in chapter 2 and 3. A general makefile consists of rules, with a target, dependencies, and commands. The authors do a great job of explaining makefiles and give a sample makefile explaining how an executable depends on object files, those depending themselves on C source files and header files. The use of 'make clean' is discussed also, along with the use of variables to simplify makefiles.
A more detailed discussion of rule writing is given in chapter 4, with the rule syntax outlined, and how to use wildcard characters in file names. The 'vpath' directive is discussed also. The authors show how to construct rules with multiple targets, and how to use dependencies that are not necessarily identical using static pattern rules. The chapter ends with a discussion of how to generate dependencies automatically.
The use of command echoing is explained in the next chapter on writing commands in rules, with the recursive use of 'make' as itself a command in a makefile. This is followed in chapter 6 by more details on the use of variables in makefiles. Readers knowing the shell very well will find this easy reading, but beginners will have to pay attention to the subtle uses of variable references and the difference between recursively expanded and simply expanded variables. The authors include an advanced section on variable reference for the more experienced reader. A detailed discussion on using conditional statements in makefiles is given.
The use of functions to do text processing is the subject of chapter 8 with the general syntax for function calls given. This is followed in chapter 9 by a discussion on how to actually execute a makefile.
The use of implicit rules to perform compilation in the usual way is discussed in chapter 10. This is my preference on how to use make and it is given a nice treatment here, with discussions on how to use implicit rules and introduces pattern rules.
Make can also update archive files, and this is discussed in chapter 11. The last chapters of the book give a list of features of GNU make as compared with other versions of make, and a list of incompatibilities of make with other versions. The conventions that must be respected in writing GNU make programs are discussed also.
Essential manual for a powerful toolReview Date: 2001-03-14
This book provides enough of an introduction to make that the newbie can immediately start crafting useful makefiles. For the consumate meddler, there is plenty of info on all kinds of features which allow make to be used to manage nearly every aspect of software and documentation creation.
Originally I downloaded the PDF and had it printed out at Kinkos. Having it in a book worked better. Do yourself a favor and get the book.
One Book which lets all others fadingReview Date: 2001-08-29
Clear and CompleteReview Date: 2003-02-09
I refer to this book (or the info version from within emacs) regularly. I have found it extremely helpful while trying to figure out how another Makefile works, while trying to figure out how to accomplish a particular task with 'make', and just for general knowledge about the tool. I found the sections on suffix rules and pattern rules to be particularly informative.
One final note: by purchasing this book you are helping to support free software, as the book is published by GNU Press, the publishing department of the Free Software Foundation.

Used price: $4.04

DisappointedReview Date: 2000-03-03
I would have liked concise comments that state invariants, pre-conditions, and post-conditions to illustrate the correctness of the program. These comments should be part of the program code, not some separate prose that is disconnected from the code. All too often have I had to support code without these comments, and without the accompanying prose to describe the code. This book seems to encourage writing such code.
And also the book is somewhat dated: some of the programs have functionality that made sense in the early days of FORTRAN programming, and are of little use to currentday C/C++ programmers.
Classic on software designReview Date: 2001-10-17
Brian Kernighan has co-authored three books almost essential to learning our craft, this volume, "Software Tools" and "The Unix Programming Environment". "Elements of Programming Style" spells out the fundamental rules, "Software Tools" shows you how to apply them to a number of simple projects and extends the rules to software design and finally "The Unix Programming Environment" shows you how to use them in an operating system designed to reward you for your effort.
It could be said that "Elements" teaches programming and "Software Tools" teaches software design. Rules such as "do just one thing, do it well" seem to seep in through the pores as you read and work through this book.
It presents a number of projects starting with a word count program and progressing through some filters to some fairly complex tasks culminating in a RatFor pre-processor for Fortran. All the examples are written in RatFor, a version of Fortran that adds some more structured elements to that early language.
Don't be put off by the use of RatFor, the language is easily understood and the style of programming so clear that the algorithms are easily understood. I've personally translated a fair number of them to both BASIC and C and the RatFor pre-processor design became the basis for an AppleSoft BASIC pre-processor written by a close friend.
I've relied on this book so much for the last ten years, after writing "Hello World" I drag it out and translate a couple of the tools into every new language I've learnt. I then spend a day or two thinking about and implementing a design optimised for the new language. After that I find I have a good handle on a language and how to design for it.
This volume is not for those who want a book that gives them pre-written tools, a fair number of the tools are standard issue on any Unix derivative and the code is only tersely commented, relying on the exaplanatory text. However I recommend this book to all software designers and programmers because as you work through these examples you will learn a great deal about honing your craft.
The Most Important Software Book I Ever Read.Review Date: 1998-04-01
Paradigm shifterReview Date: 2005-07-26
The first was ego-less programming. Sharing the code and encouraging feedback. We applied this in our group with amazing results. It is a valuable lesson because it is so tough to implement - because of our ego.
The big one was about not writing applications but tools. And creating applications from tools. This lesson kept haunting me whenever I wrote any program. It helped me write generic programs that could be re-used.
The Ratfor examples are a bit dated now. But they elegant and pure.
A must read for all aspire for excellence in coding software.
It's what's under the hoodReview Date: 2003-11-03
Kernighan and Plauger set out in this book to document what they used in their labs at the time it was written, and show how to build them. Ratfor was chosen because C was not as widespread then as it is now, and for those who didn't have it, a translator to standard Fortran '77 was one of the major parts of the book. A simplified version of the nroff text formatter and a version of ed are also included for text file processing (then as now one of the major uses for computers), the result being both a toolkit and a practical education in the ins and outs of applications development.
The environment given is not Unix-based inherently, but this book is a natural companion to Kernighan and Rob Pike's The Unix Programming Environment and John Lions' Commentary on Unix 6th Edition. It should be required reading for anyone who wants to do software development.


Front Page 2000 What Bad REP? FP2000 Rules !Review Date: 2000-03-27
One of the best features of this book is the chapters teaching how to work with databases using Frontpage 2000.
"One of the most important features of web developement is Databasing!"
This book covers it all. Setting up forms to update databases, creating ASP, active server pages, and more.
Frontpage has a bad rep, in the web developement industry, well not any more, many Designers now hype Frontpage2000, in this book you will find out all there is to know about Frontpage2000 and why it is a tool of choice for serious web masters.
I own several books by 'Que' publishing. I read several pages everyday. The CD has some great demos. I must have for all web masters/designers. Five Stars and by far the best written book on using Frontpage2000........A winner!
As with every QUE book I have owned - great referenceReview Date: 2001-12-02
Why Front Page has bed REPUTATION among Web Developer ?Review Date: 2001-04-28
Why Front Page has bed REPUTATION among Web Developer ?Review Date: 2001-04-28
A huge book, with not a lot of meatReview Date: 2001-08-30
The book is huge and heavy, and did not address several of the advanced areas I was looking for, and I thought there was a lot of writing and not a lot of meat. Too much verbose talk and not enough examples.
Also after reviewing the book, I have sent it back, and I have decided to move away from Front Page, and move to Dreamweaver. I have tried their trial program, and the program can do so much more, and is not dependant on MS extentions.
Overall I was not happy with the book, I have seen a much better presentation of information, easier to read, formatting, etc.
There was some good information in the book, but I think I just am more disillusioned with Front Page overall as it has become limiting to what I want to do with design.

Used price: $12.95

Great BookReview Date: 2001-12-18
I've become accustomed to a wide variety of lame backup and recovery books. A good example is Anil Desai's... long on planning, but short on how to actually do the work. In his book, backups don't actually start till chapter 6! Easily 2/3 of the book is fluff.
For example, Desai talks about log shipping-- 5 pages. McBath has a whole chapter on it in a how-to format. BOL doesn't cover it in depth, and where it does, it's wrong (ie. sp_change_primary_role example is wrong on fail over). SQL Server Resource Kit has a whole chapter on it, but not one example of how to implement. Long on theory, short on getting it done-- typical of MS Press books.
The book covers just about all the methods for backing up and recovery using standard tools. It also covers using DBCC to recovery data. Then it expands out into rebuilding your stuff from scratch and reloading it (ex. I lost my master database and here's what I got to do).
McBath's book tells you what breaks along the way and how to fix it. Anyone who's had to rebuild master and got in that infinite loop problem knows the hard way. McBath tells you about the problem *BEFORE* you hit it and how to work around it. The Desai book doesn't even tell you how to properly bring the SQL Server into single user.
This is also the only book out there... including Delaney's... that actually flow charts the sequence of events on how a backup and recovery actually work internally. LSN's, GAM Pages, etc... That way you get the theory as well as the practical I-got-to-get-my-job-done stuff.
The section on DBCCs is the first place I've seen where it's pretty much explained well. Delaney's book is also great here, but McBath put's it in context for recovery of data. The straight dope is here. It's dialed in right.
Another interesting point was he shows you the output of the scripts. That way you can see what it's supposed to do *BEFORE* you do it on your box. By doing this, he's also showing you that the scripts have been tested and run, too.
What I liked most was that it used the GUI and T-SQL scripts. This is great cause most people use a GUI which you can't script in SQL Agent, etc...
What's also cool is the Mohan/Narang paper as the appendix. Mohan outlined the ARIES Write Ahead Log (WAL) protocol recovery mechanism that SQL Server is premised upon. I wish there was more intro to it here. It's just tacked on the back. But this is just gold.
Stuff missing that would be cool: Covering third party tools like Legato. In a major data center, they are mandatory.
Finally a book for SQL Server that rivals Oracle Press's long standing tome on Backup and Recovery by Velpuri.
McBath's book is non-stop backup and recovery issues from beginning to end.
Buy This Book!Review Date: 2002-10-19
I could not say enough good things about this book...mainly becuase I still have a good job because of it.
If your database is important to your boss, this book is a MUST!!!!!!!!!!!
What every DBA should know...Review Date: 2002-05-22
Shallow and DisappointingReview Date: 2003-01-22
MANDATORY reading for any SQL-Server DBAReview Date: 2003-03-08
The Book shows some very cool tricks that make it possible to recover data that's lost due to media
failures. It also covers data recovery tricks by using indexes. It continues about explaining what
to do when you need to rebuild your machine from scratch. Common problems are discussed and workarounds
given. The book is full of examples and tips and tricks from REAL consulting, not rehashing a manual
or Books on line. These tips give the book even more value.
What I liked most was that it describes using the GUI and T-SQL scripts. A GUI is nice but to really
hit the nail one should automate this and script it.
This is THE Backup/Restore book each SQL-Server DBA must have in his bag. READ it BEFORE disasater
happens. One can never be preperaed enough for situations like this.
Last but not least there's an appendix with the Mohan/Narang paper This paper outlines
the ARIES Write Ahead Log protocol recovery mechanism that SQL Server uses.

Used price: $5.99

VERY VERY HIGHLY RECOMMENDED!!Review Date: 2006-07-08
Wallingford, begins by introducing you to some Internet based VoIP phone service providers who can help you replace your traditional phone line with a cost-saving, feature-rich VoIP line. Then, the author shows you how to customize and maximize productivity-enhancing telephony applications. He also introduces you to Skype and Skyping. Next, the author shows you how to install, configure, and hack Asterisk, an open source PBX. Then, he continues by showing you how to add hardware hacks to your VoIP setup--and how to customize them. The author also explains how you can monitor VoIP and troubleshoot it using traditional admin tools. Finally, the author shows you how to use hard-core voice.
In this most excellent practical guide, the author provides dozens of hands-on projects for building a VoIP network. More importantly, he shows you how to tweak and customize hardware and software to get the job done.
Nothing Short of GeniusReview Date: 2007-02-09
This is a very good book. If you are a VoIP systems integrator or do anything with Asterisk, this book is a must have. There are major problems with the current state of the VoIP industry. The two biggest problems are security and the unavailability of a decent broadband connection with QoS and an SLA below $400 per MegaBit. Yes $400, but we're talking guaranteed availability and less than 0.5% packet loss,and 50mS or less latency with real penalties for not meeting the SLA.
Before reading this book I would not have considered putting an IP-PBX on an ADSL link. The author's idea of putting a Sangoma ADLS modem in the Linux box with PPPoE client software and controlling the modem queue is nothing short of genius. Then to top it off with the AstShape QoS scripts and the QoS monitoring tools, this book is an absolute bargain. With these tools I'll not only know if the ADSL connection is capable of supporting VoIP service, but I'll know exactly why. Much better than cutting over to the VoIP system and later discovering the problems. The whole book is just full of great ideas. There is something in this book for everybody from the Skype user to a single VoIP phone owner, Asterisk, or enterprise PBX administrators. Just check out the Table of Contents. Amazon does not have the Table of Contents available but it is on the O'Reilly website oreilly D0T C0M.
While the book is an asset for seasoned VoIP integrators, it is also a very good resource for someone completely unfamiliar with VoIP with a desire to learn. You can start out with free software for a Windows PC, progress to purchasing a single VoIP phone, then to a Linux PC. If you are leary of Linux, either get over it or you should probably stay out of VoIP altogether.
VOIP : for the serious home user or enterprise deploymentReview Date: 2006-07-26
Of course, other VoIP solutions are explored. Skype, is mentioned and basic features are explored, although the detail provided on Skype is not as detailed as those of other solutions, which maybe due to the coverage for Skype under the Skype Hacks book. However, the coverage for building your own VoIP via Asterisk is quite detailed and in-depth. Options that explored for this approach, are call forwarding, hold music, voice mail applications and distinctive ring as well as basic advice on setting up and compiling the application. The process appears to be able to easy to implement, but alas was not tried due to this reviewers use of Skype for his VoIP needs.
Also in the closing chapters of the book, issues of improving QoS are addressed as is the legacy signalling protocol that H.323 is since the adoption of SIP. Since QoS is vital to ensuring that VoIP traffic receives the bandwidth that it needs Ted gives us some basic commands to find out if there is jitter [dropped datagrams] and some ways to fix this issue. However, it should be noted that this chapter, as with most of the later half of the book is more in line for larger scale operations that use Linux/Unix and building their own office VoIP solutions.
To summarize, VoIP hacks does offer something for everyone, although the hacks provided in the latter chapters are geared to the enterprise level deployment of VoIP. That's not to say that the information is not relevant or even eye opening, just the average home user will find little to apply this to.
Both fun and informativeReview Date: 2006-03-08
Fun Read For VoIP GeeksReview Date: 2006-02-09
If you enjoy learning about VoIP and you want to learn how to do more with it, this book is for you. Going beyond the regular setup "tricks", VoIP lists out plenty of fun and interesting things to do with your VoIP connection. Whether it's downloading little applications to track your usage or learning how to control the lights in your home with your IP phone, this book will please all the geeks out there in the world who need to go past simply using their connection, needing to get into the guts of how it all works.
If you want to learn more about VoIP and some of the fun things you can do with it, this is a fun book to add to your collection.
**** RECOMMENDED

Used price: $25.00

many new featuresReview Date: 2007-02-23
The emphasis is not on implementing abstractions like object oriented programming. Rather, it uses the reader's background in coding VBA and in MS Word and Excel. Nor are you expected to be proficient in database design or the intricacies of SQL Server. Much of the text is about front end material. Like using the conveniences of the VSTO user interface, with its many widgets and menus, to easily code.
Many new features are available, compared to what you previously had under VBA. The most striking example is now the nifty ability to have a data island. Imagine an Excel spreadsheet on one machine. That loads from a database on another. If the first machine is your laptop, and you take it somewhere isolated from the network, what happens to your data? Well, there is now a means of copying that data, while you're still connected, into a data cache on the laptop. Without having to go to the extent of running a full database on the laptop.
VSTO is excelent for .net programmers as well as vba programmersReview Date: 2007-05-21
I met a problem early on in my use of the book, communicated with the author, and got the help I needed to overcome the problem.
An excellent book on the subject.
Just getting into it...Review Date: 2007-01-22
Perfect for moving from VBA to VSTOReview Date: 2007-04-28
In the first chapters, the authors explain what is VSTO and what features are available for developers. Chapter 2 and 3 introduce the Visual Studio development environment and managed code. Seasoned .NET developers will skip these chapters but they are essential for people who never used Visual Studio before. The next chapters cover everything VSTO from Word, Excel and Outlook development to Smart Tags and database development. A full chapter is devoted to new features of VSTO 2005 SE and Office 2007.
If you're a VBA developer that wants to jump into .NET development using VSTO, look no further, this is the book for you. Experienced .NET will also find this book interesting but will skip a couple of .NET introduction chapters.
Great Book!!Review Date: 2007-03-07

Used price: $9.49

You need this bookReview Date: 2008-07-18
I hope there's a second volume someday.
Buy this along with Word Annoyances and you'll be all set to do deep stuff with Word, right up to the VBA/serious macros borderline.
Excellent resource for Word and COM programmers...Review Date: 2005-02-15
Chapter list: Word Under the Hood; The Word Workspace; Formatting, Printing, and Table Hacks; Editing Power Tools; Templates and Outlines; Housekeeping; Macro Hacks; Forms and Fields; Advanced Word Hacks; Word 2003 XML Hacks; Index
For those unfamiliar with the Hacks format... It consists of 100 tips, tricks, or unique ways of doing things with the subject at hand (like Word, Excel, etc.). The hacks are normally not things that you would find intuitively obvious, or even things that you thought were just flat-out impossible to do. In Word Hacks, the author (along with a number of contributors) takes you on a trip into the inner world of Word and uncovers a multitude of tricks you've probably never seen...
Wonder how to get IE to launch Word documents in Word? That's hack # 8. Need dummy text to fill out content in a document but you don't want to just type random characters? Check out #14. How about using Word as a Windows backup utility? Yes, you can do that, and hack #81 shows you how.
The thing I like most about this book is the profusion of VBA code to be found. For non-programmers, this might be a hindrance in that a lot of the hacks involve using the VBA code they supply. I can think of a number of potential readers who would be totally lost there. But for developers who use COM to manipulate Word from other software packages, this is a treasure trove of ideas. An excellent "R&D" resource... "Rob & Duplicate"! :-)
If you're an average user of Word or a power user who doesn't want to play with code, you'll get some value here. If you're a techno-geek who wants to program everything, this is your book. Highly recommended...
Concentrates on macro programmingReview Date: 2004-12-07
The hacks deal mostly with problems for which macro programming is needed. It's not about situations where the answer is some obscure manual sequence of steps you must do within MS Word. Nor are the large reference books on MS Word likely to be of help. They do explain macro programming, and give examples. But that consists only of a fraction of their coverage. Whereas, you have here a book focused on macros.
You don't necessarily have to already be programming macros to get something out of this book; though it would help. If a given hack addresses your situation, you can just copy vebatim the hack's solution code into a macro.
Finally, A Practical Book on VBA and WordReview Date: 2008-07-24
This book is NOT like that at all. This is an adventure in programmatic praxiology. It is very well written and very well presented. I learned a ton of ways to actually use VBA with Word.
Break into the world of Word macrosReview Date: 2005-01-08
Haven't ventured into macros, or at least not much? Get a crash course on how to create and run macros so you can use those included in the book and venture on your own. Savikas explains the basics at the 30-foot level while guiding the reader through the steps of creating and running a simple macro. Many of the hacks use macros.
When clicking on a link to a .doc file from within a Web site, the file opens within the browser and editing it is difficult because many of Word's tool bars are not there for your use. Hack #8 puts an end to this nuisance. In "Building a Better MRU" (most recently used), take the MRU file feature up a notch and pump it up with a form.
According to the book, most of the hacks work with Word 2000, 2002 (also known as Word XP), and 2003. It mentions some of the hacks work with the old Word 97, but the book focuses on 2000, 2002, and 2003. The last chapter, "Word 2003 XML Hacks," begins on page 319 and is the only one specific to the newest version of Word.
The book follows the Hack series model making it easy to use as a reference. All the tips offered are listed in the table of contents. If you like what you find there and want something heavily focused on macros, the book will satisfy your needs. Those looking for a manual with help for getting around Word and discovering some of its power are better off with a different book.
Anyone who is comfy with Word and likes to fiddle with something a little more advanced will get just that. Try a couple of hacks at a time to build up your Word knowledge. Soon you'll be creating your own macros. Those who are macro pros might not glean much from the book. The book's publisher's Web site includes five sample hacks

Used price: $1.67

Innovative practical guide to visual data mining methodsReview Date: 1998-10-26
A practical resource to read before you start data mining.Review Date: 1999-02-09
For the ordinary person, a book such as this is a good place to start data mining. To achieve anything useful with data mining, you first need to get an idea of what you are trying to achieve and how you are going to achieve it. Without this background knowledge you are more than likely going to waste a lot of valuable time and quite a lot of money on the expensive tools that service the market.
Data Mining Solutions will help you get on the right path as it has a good blend of academic detail, software overviews and most importantly it gives practical details as to why you might want to use data mining in the first place. There are also some quite interesting insights into issues like fraud, which add some drama to the computer-related discussions.
The usual approach taken in computing is to first purchase the product and then learn the science. For data mining, this purchase should be preceded by some practical background reading from a resource such as this. I highly recommend this book as a place to start your voyages of data mining discovery.
Good intro to data visualization for novices.Review Date: 1999-02-03
A good introduction to data miningReview Date: 1999-03-02
Things I particularly liked in the book:
· Excellent introduction to the topic. I have tried other sources on data mining and this book is by far the most comprehensive and easy to understand.
· An extremely good blend of theory and practice. Authors seem to be very experienced in dealing with various data mining issues. Solutions and examples from telecommunications, fraud detection and other areas show how the theoretical background can be applied to real life problems.
· Authors cover not only the processes of data preparation and analysis but also explain the ways of presenting the results which I think is crucial thing to one's success.
· Authors try not to over-emphasize the power of various data mining techniques. You will find explanations of pros & cons for each of the techniques and suggestions on when to use them with the most success.
· The book includes a good coverage of data mining tools (software) that will help you once you decide to apply data mining techniques to real world problems.
Things that you might miss:
· Sometimes figures lack description so it takes some time to understand what authors have meant.
· Sometimes you might want deeper description of topics covered.
Overall, I think this is a really good book on data mining, especially for newcomers. The book gives a broad understanding of various data mining areas and it definitely can serve as a good starting point for gaining more benefit out of the existing databases in your business. I give five stars out of five.
Related Subjects: Pools
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219