Modeling
More Pages: Modeling Page 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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467

Used price: $3.00
Buy one from zShops for: $2.88

Is a new edition due soon?
Great starting point...This book takes you step by step (as the title implies) from designing your database (predominantly in Access although he explains how to connect to other databases) to getting it accessible through the web. The examples are great and they tend to build on each other. By the end of the book you should have a good foundation to design any type of data driven website you can imagine and password authenticate it as well.
If you are starting out and you are using Microsoft software, then this is a literal cookbook for web database success. Kudos to Jim Buyens for putting out an informative book that reads quickly.
A Cookbook with Good InsightMr. Buyens does a good job of introducing and overviewing database design/construction and VBScript considering these are part of the cookbook, but not the topic of it.
I wanted to build a Microsoft-driven database-driven Web site, and Mr. Buyens has provided the book I needed, in a format that is working very well for me: a cookbook with good insight (into the technologies involved).
The only other book I considered before buying this one was "Beginning ASP Databases." I sincerely doubt that it's as step-by-step as this book, and that's a feature I really wanted.

Used price: $4.99
Buy one from zShops for: $3.02
This book is part reference, offering full coverage of all objects in ADO, and part programming tutorial, describing every object, property, collection, method, and event in this library, including ADOX and JRO in an appendix. Instead of whole programs, the author uses short code excerpts written in Visual Basic to illustrate key points. Complete sample applications are available on the accompanying CD-ROM.
Throughout this text, Sceppa shows off his expert knowledge of ADO. Standout sections here include examples of connecting to databases effectively, different strategies for querying and updating databases, and a nice explanation of disconnected recordsets. The discussion of the various cursor types available in ADO is also a must-read for any serious ADO developer. (Choosing the right cursor type for your project, it turns out, is not as easy as it appears.) Each section ends with "Questions That Should Be Asked More Frequently" in which the author invites you to think carefully about the ways you use ADO.
Later sections here turn to the powerful ADO Cursor Engine and the newer Record and Stream classes, which allow programmers to "persist" recordsets to files (and even XML). There are plenty of tips for handling record conflicts within real-world, multi-user databases. Once again, although ADO looks easy, there is plenty to worry about when multiple users access records frequently. This book shows you how to write more robust database applications.
Filled with time-saving programming expertise, Programming ADO fills a valuable niche for any developer who wants to start working with ADO effectively. --Richard Dragan
Topics covered: ActiveX Data Objects (ADO) overview and tutorial; Data Access Objects (DAO) vs. ADO; the ADO object model and version 2.5 enhancements; Connection properties, collections, methods, and events; connection strings; connecting to OLE DB providers; Recordset properties, collections, methods, and events; Command and Parameter properties, collections, and methods; using ADO Record and Stream objects; ADO cursor types and performance hints; strategies for updating databases; programming with the ADO Cursor Engine (programming tips, concurrency issues); handling database conflicts; persisting recordsets; hierarchical recordsets and data shaping; introduction to COM; passing ADO recordsets between processes; the Remote Data Service (RDS); ADO Extensions (ADOX) for manipulating database structures; and the Jet Replication Object (JRO).

Very Disappointing: A rewrite of the ADO documentationAs an example, consider this: One of the trickiest things with ADO is dealing with CursorLocation, CursorType, and LockType, especially when you're not aware what OLEDB provider your code will be using. Sceppa writes: "...What's a database developer to do? With a little experience and a lot of reading, you'll develop a good feel for which combinations are possible and which aren't... [Y]ou'll probably explore different options and experiment with code, and along the way you'll inadvertently discover the answers to questions such as these." Well, Mr. Sceppa, I didn't buy the book to be told to "experiment" and hope for a discovery; these are the answers I had hoped the book would contain. If you'd spent fewer pages repeating the method and property lists, you might have been able to include some of this information.
goto msdn.microsoft.com
Required Reading for Professional ProgrammersHere is an example of David's insight, experience, and humor when it comes to dealing with ADO Cursors, "Back-end databases, OLE DB providers, ODBC drivers, CursorLocations, CursorType, LockType, CommandType, oh my! What's a database developer to do? With a little experience and a lot of reading, you'll develop a good feel for which combinations are possible and which aren't." This quote of from Chapter 7 Cursors, Foiled Again and the section is titled You Can't Always Get What You Want. In this chapter David does a great job of guiding us developers through what is known and what is not know about this part of ADO. It is this type of guidance and insight that I want the most when I am developing new ADO applications and when I am troubleshooting ADO code.
If you have any dealings with ADO then you simply must get this book.

List price: $80.00 (that's 12% off!)
Used price: $59.00
Collectible price: $75.00
Buy one from zShops for: $63.29

Very academic in nature, more theory than realityThe help screens on the Data modeling tools are more advanced in explaining data modeling than this book.
Probably great for theorists - managers or teachers that don't know what they are doing! But the real modelers will seek help elsewhere.
Misleading or, if you want, wrongPoor, underdocumented examples. Oversimplification. Unfortunately at the time I had only the title to choose from. Good thing most books now have a table of contents.
Database modeling still doesn't have strong references as database theory does (Date's, Ramakrishnan's, Elmasri's only to cite three). There are excellent theoretical (Thalheim's "Entity-Relationship Modeling" is good) and philosophical approaches (finally they re-published Kent's opera-prima "Data and Reality", fabulous).
The picture is poor when it comes to hands-on modeling. Bruce's "Designing Quality Databases..." is an exception. Good and useful for someone who is developing modeling expertise. But I especially don't recommend Reingruber&Gregory's book.
Excellent book!
Used price: $33.95
Buy one from zShops for: $34.66
This text is remarkable with its comprehensive review of recent research on machine learning, all told in a very approachable style. (While there is plenty of math in some sections, the authors' explanations are always clear.) The book tours the nature of machine learning and how it can be used to find predictive patterns in data comprehensible to managers and developers alike. And they use sample data (for such topics as weather, contact lens prescriptions, and flowers) to illustrate key concepts.
After setting out to explain the types of machine learning models (like decision trees and classification rules), the book surveys algorithms used to implement them, plus strategies for improving performance and the reliability of results. Later the book turns to the authors' downloadable Weka (rhymes with "Mecca") Java class library, which lets you experiment with data mining hands-on and gets you started with this technology in custom applications. Final sections look at the bright prospects for data mining and machine learning on the Internet (for example, in Web search engines).
Precise but never pedantic, this admirably clear title delivers a real-world perspective on advantages of data mining and machine learning. Besides a programming how-to, it can be read profitably by any manager or developer who wants to see what leading-edge machine learning techniques can do for their software. --Richard Dragan
Topics covered: Data mining and machine learning basics, sample datasets and applications for data mining, machine learning vs. statistics, the ethics of data mining, generalization, concepts, attributes, missing values, decision tables and trees, classification rules, association rules, exceptions, numeric prediction, clustering, algorithms and implementations in Java, inferring rules, statistical modeling, covering algorithms, linear models, support vector machines, instance-based learning, credibility, cross-validation, probability, costs (lift charts and ROC curves), selecting attributes, data cleansing, combining multiple models (bagging, boosting, and stacking), Weka (reusable Java classes for machine learning), customizing Weka, visualizing machine learning, working with massive datasets, text mining, and e-mail and the Internet.

Data mining technology power on 400 pages.literature related to this theme.
On the one hand there are some books written for managers, on the other hand there are some pretty mathematical books for academics. But this book is the best mix. You get an introduction to data mining and learn step by step from the basics up to the hard algorithm stuff with nice examples.
There is a clear theme structure, and the deep technical sections are marked, so you can read what you are most interested in. The book describes not only one algorithm, but a lot of them and discusses plusses and minuses. Where it's necessary it uses simple diagrams to illustrate something, not so much that it looks like they want to fill the pages, like in other books. Best of all, the algorithms are implemented as an
open source java software named "weka". This is my state of the art data mining tool.
You can see the algorithms working and use the implementations for your ideas (like me). If you are hungry to learn more
about one or the other thing, the book provides a literature list.
For me this book was one of the best books in the last years, because it provides the best mix and gives you a fast but deep view in this theme.
Our most popular book
Stop searching for datamining: You've found it.As a result of this quest I found the WEKA data mining software on the Internet (you can find it on www.cs.waikato.ac.nz/~ml/weka/) and that nice piece of software leaded me to this book.
This book is EXCELLENT and I am giving 5 *five* stars to it as it helped me understanding the whole process of datamining: from loading the data to building the model.
I've read some reviews and I think some of them are not fair (particularly one that says that this book have "just words with no relation or sense at all").. THIS BOOK IS REALLY WELL WRITTEN but you have to read it slowly: As when you study something.
Buy this book (*don't forget to download the software*) and I am totally sure that you will be producing and using models in a week.
Can't imagine that some weeks ago
Cheers,

List price: $55.00 (that's 30% off!)
Used price: $33.35
Buy one from zShops for: $33.30

Reviews are pointlessMore often than once. That was the case with this book.
Lessons learned? Reading reviews online is a tricky affair. Usually, the attacks are personal. They may find the book hogwash but it might just be the right one for you. Others might even have a violent reaction to the book not because it was really a trashy book to begin with but only because the reviewer misses the whole point. Imagine a raffia hobbyist reacting to a book on Javascript for Rocket Scientists and Engineers.
So no matter how advanced information technology has become there is still no better substitute for fondling the physical diomensions of a book in your local bookstore and reading it at length to have a better grasp of its usability. I know it is hard but walking is such a great exercise it will strengthen your cardiac muscles and save you hours of writing acerbic reviews of books which did not meet your expectations.
May I also remind you this book is a rehash of an old material the author has written almost eight years ago. Nothing much has improved. The author obviously is finding a way to resell an old book by coming up with a new cover but the change is clearly a cosmetic one as the contents are still MEDIOCRE.
You are better off buying Jason Osipa's book. I have it and it is brilliant both for beginners and professionals.
And, please, stay away from all Bill Fleming books on modelling and texturing digital characters. His models look so plasticky. With CGI written all over its pixels. I bought them a few years ago when I was still a fresh-faced newbie. Now they are under my bed gathering molds with my old copies of National Geographic.
I hope I helped you save some money. Support your jobless but very talented friends with it.
5 stars all the way throught the text.I found that Mr. Ratner covers the most popular modeling techniques such as subdivision surface, NURBS, and
spline modeling. He has the reader start modeling simple objects and gradually builds up to humans. After learning how to model, he shows how to rig up humans for animation. Lighting and texturing is also covered.
Details such as making hair, teeth, eyes, etc. are also in the book and make it complete for the beginner and advanced illustrator to take note of his advice. He even includes an anatomy chapter. He must have been a med student at one time or had one of those plastic see through human figure models where you can take out individual organs. Another chapter tells how to make morph targets for facial expressions and dialogue. He tells readers which basic facial morphs are made (about 50) that lets them create thousands of others by blending variations of them. There is a lot of information about animation techniques and principles. The color insert has human model illustrations from well-known artist around the world. This book
has too much in it to do it justice in one little review.
Quite an accomplishment!
List price: $59.99 (that's 16% off!)
Used price: $25.50
Buy one from zShops for: $29.75
The book begins with a history of UML, from structured design methods of the '60s and '70s to the competing object-oriented design standards that were unified in 1997 to create UML. For the novice, the authors illustrate key diagram types such as class, use case, state machine, activity, and implementation. (Of course, learning these basic diagram types is what UML is all about. The authors use an easy-to-understand ticket-booking system for many of their examples.)
After a tour of basic document types, The Unified Modeling Language Reference Manual provides an alphabetical listing of more than 350 UML terms. Entries range from a sentence or two to several pages in length. (Class, operation, and use case are just a few of the important terms that are covered.) Though you will certainly need to be acquainted with software engineering principles, this reference will serve the working software developer well. As the authors note, this isn't UML for Dummies, but neither is it an arcane academic treatise. The authors succeed in delivering a readable reference that will answer any UML question, no matter how common or obscure. --Richard Dragan

Surely not a reference manual
Unusual, but good reference bookThe book attempts to cover all of the important topics. To get there, it takes an unusual approach. There are a few introduction chapters as might be expected. Part 2 of the book has one chapter per view. In each chapter, the view is covered both notation-wise and discussion-wise.
Part 3 was the biggest surprise for me. It is an "encyclopedia of terms." This section is worthwhile even if you are an OO person who doesn't care about diagramming with UML. It gives a definition for each term and frequently the Semantics, Notation and Discussion associated with it.
However, this book is a rough read. I opened the book randomly and found the following as an example: "Branch: An element in a state machine in which a single trigger leads to more than one possible outcome, each with its own guard condition." After reading it a second time carefully along with looking up what a "guard condition" was, I understood. The point though is that the definitions are rigorous, but hard to digest on a quick read.
The book is worth buying for your reference library for the encyclopedia section alone. I will personally be using it when I have a situation to model and know the term but not the UML syntax. The encyclopedia will lead me to the syntax.
Tip Top for the dedicated UML modelerThe Reference Manual and the Users Guide are generally sold as a pair. Quite frankly, if you have the Reference Manual, then you don't need the Users Guide.
If you are just learning UML and are already familiar with any formal design methodologies, then you can do just fine with the Reference Manual alone. However, if you are new to graphical modeling in general, you may want to buy "UML for Dummies" to serve as a useful introduction.

List price: $39.99 (that's 30% off!)
Used price: $6.50
Buy one from zShops for: $13.90
Written by Zope developers, this title is concise and to the point. It is aimed at people new to Zope as well as current users, although some existing knowledge of Web technology is necessary. The book is organized into three parts. The first part is introductory, outlining how Zope works and explaining basic DTML (Document Template Markup Language), a tag-based language for server-side scripting. The second, and longest, part tackles users and security, scripting with Python or Perl, using Zope's built-in search engine, and connecting to relational databases. Part three covers scaling and extending Zope, with a short chapter on ZEO and information on creating your own custom Zope classes. Reference material is contained in two appendices, one for DTML and the other for the core Zope API.
The Zope Book offers an excellent, high-level view supplemented by more detail for the most common development tasks. The authors refer you to Zope's documentation or other resources for the most advanced or specialist topics. The result is ideal for evaluating Zope, and also useful for getting started with Zope projects. --Tim Anderson, amazon.co.uk

Becoming dated, missing some key topicsI reduced the rating to three stars because of essential deployment topics that I wanted to see covered that were also completely missing. SSL, the zope.conf file, using Zope in conjunction with Apache, for example. There's probably more, but I just don't know yet that I don't know them.
So I give it three stars for being useful, but having significant flaws. You are better off going to Zope.org and getting the latest on-line docs from there.
A good intro to the leading open source Web CMSThe Zope Book was written by Zope developers and is targeted at Web developers and admins who have some experience with Web applications but possibly not content management technology.
Part 1, Introducing Zope, is designed to get the reader started with Zope, explaining how to download, install, and configure the software using the platform's graphical interface. The section describes what Zope can do, explains the basics of the Zope content object model, and introduces Zope's server-side templating environment, Document Template Markup Language (DTML).
Part 2, Creating Web Applications with Zope, gets into the meat of actually making Zope applications. The section talks about scripting with Python and Perl, user security searching, connecting to a variety of relational databases, metadata, and advanced DTML.
Part 3, Developing Advanced Web Applications with Zope, covers the Zope Enterprise Objects model, scaling and extending Zope, and Zope classes.
Appendixes include DTML and Zope API references and a guide to Zope resources, including mailing lists and Web sites.
The Zope Book is not the ultimate Zope refernce, and isn't meant to be.
Have a nice development daySharing ideas with hundred, millions of people (I mean creating a web presence!) involves at least 3 backend elements :
- a database,
- a server,
- a "gluing" language
Zope provides the three in the same application, perfectly integrated and quite easily deployed (respectively Zodb, Zserver, and Python)
What was needed for zope recognition as a good candidate for "out of the box", opensourced, and efficient development plateform, was a good book that would introduce the whole tool for newbies as well as experienced web developers. In short, anyone looking for something more innovative than the traditional solutions (php/apache/mysql on the opensource side / asp/IIS, sqlserver on the commercial side ...)
The book realy helps to "take a grip" at Zope. You'll quickly learn the benefits of a totally object oriented approach (look at the poor object oriented approach of other web scripting tools, such as php, asp or coldfusion), and more importantly, *how* to use the tool.
Chances are that this book won't suffice for realy complex implementations (like creating custom products), but imho Zope is more a "concept" than any other tools, and *understanding* the concept is the key to successfull implementations.
Beside the differents chapters (with each speaking about a particular domain of Zope), you'll find a complete reference of the Zope API, and it's templating language, DTML.
After the reading of this this book, I feel ready for more complex implementations of web applications. That's just what I was looking for. I'd say I'm quite pleased.
As usual, your comments are welcome!

Used price: $4.86
Collectible price: $14.87

Professional Model from EuropeThis book is worthless trash.
If you get only one book on this topic,...
A real opinion from a real person!
Used price: $0.15
Collectible price: $12.99
Buy one from zShops for: $1.06
Chief among these technologies is Microsoft Site Server 3, the capabilities of which (along with Site Server Commerce Edition and Microsoft Transaction Server) receive much attention in these pages. Readers get a rundown on how to operate the servers in a variety of situations. One particularly useful example walks readers through the creation of a Web storefront with a minimal amount of coding, while another sets up a sophisticated system for displaying banner ads on Web pages.
In addition to outlining what the server software can do, the various contributors get into the mechanics of writing server-side scripts in the form of Active Server Pages (ASP) with embedded JavaScript, JScript, and VBScript. The authors include enough explanatory and illustrative material on each language that even novice programmers will feel comfortable.
The publisher ought to put more effort into copyediting future editions, though--Microsoft Commerce Solutions has too many spelling and grammar goofs. But if you're looking for a comprehensive introduction to the technologies Microsoft has for processing and publishing information, this book's for you. --David Wall

Good overall pictureThis book explains how all the different microsoft technologies piece together and the functions each of them serve. There were certain things I didn't quite like about the book however. I thought the chapter covering asp and html was unnecessary as you cannot pack those two into a single chapter each. That would have dropped some weight and $$ off this book too.
If you are looking to learn about e-commerce infrastructures and also what it takes to set up a site using the microsoft dna, then this is THE book to refer to. You do not have to read this chapter by chapter (I didn't) as each chapter is self-contained.
And here's something else you might find useful too. If you are about to implement a site using the microsoft dna, then go the http://www.microsoft.com/seminar site too. Much of this book is covered by those free online seminars and you'll also get handy security and performance tuning tips (but still get the book, it's a good one to read on the bus/train).
Good Luck !
The Big PictureThis book explains how all the different microsoft technologies piece together and the functions each of them serve. There were certain things I didn't quite like about the book however. I thought the chapter covering asp and html was unnecessary as you cannot pack those two into a single chapter each. That would have dropped some weight and $$ off this book too.
If you are looking to learn about e-commerce infrastructures and also what it takes to set up a site using the microsoft dna, then this is THE book to refer to. You do not have to read this chapter by chapter (I didn't) as each chapter is self-contained.
And here's something else you might find useful too. Much of this book is covered by those free online seminars and you'll also get handy security and performance tuning tips (but still get the book, it's a good one to read on the bus/train).
Good Luck !
This book help me very much
List price: $49.99 (that's 30% off!)
Used price: $25.77
Buy one from zShops for: $25.75

Alotta stuff missing entirelyThis book lacks any detail on many subjects and omits critical ones entirely.
If you want a technical reference, how to book, this is not it.
Shame. Its currently the only one out there for 2003 clusters.
Semi-accurate technical content, extremely poor writing.I cannot believe a professional editor gave this book their stamp of approval. I have to take breaks every dozen or so pages, not because the concepts are too difficult, but because the author's akward sentences make my head ache.
Unfortunately, this seems to be the only book on the subject. I would stick to using whitepapers and web resources.
Outstanding Publication
I found his brief notes and tips to be useful advice- delivered from an experienced programmer to a beginning to intermediate coder. The majority of these were useful points. Authentiction and ADO stuff was good, but I needed more sources as well.
It took me some effort to find this MSPRESS edition. I do hope that MSPRESS hasn't discontinued this and that a new revision is in the works. Reccomended.