|
|||||||||||||||||||||||||||||||||||
|
26 Reviews
|
Average Customer Review
Share your thoughts with other customers
Create your own review
|
|
Most Helpful First | Newest First
|
|
14 of 14 people found the following review helpful:
5.0 out of 5 stars
Essential Techniques to Master,
By john_netimpact@hotmail.com (Silicon Valley, USA) - See all my reviews
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
This book provides the definitive approach for the cross-tabulation/row positioning problem. The techniques presented in this book will stimulate new and innovative approaches to improve performance. This is not a How-To Cookbook. Every time I re-read this book, I find ideas and inspiration to help me solve today's programming challenge. If you develop stored procedures, you must have this book.
9 of 9 people found the following review helpful:
4.0 out of 5 stars
A different take on SQL,
By "dshastri" (Bridgewater, NJ) - See all my reviews
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
I have been developing SQL for quite a long time but never had looked at the "Characteristc" functions from the angle as this book depicts. The book is not for faint hearted, and even though it looks a very small book, it takes a lot longer to read and digest. Almost all the pivoting technics in the book are now made kinda obsolete because of the support of "CASE" statements, but still it's worth reading as it uses the normal functions like index to do something which you didn't expect. This is not a beginners book nor does it teach you how to optimize by tweaking SQLServer. The title of the book is not right as it talks about Transact-SQL, the technics are applicable in any RDBMS (I am using Teradata for instance).Give this book more than one try to understand what it is saying, then only you will appreciate it's value.
6 of 6 people found the following review helpful:
5.0 out of 5 stars
Anything Rozenshtein Writes I'll Read,
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
Read all the reviews. I've read all of the public articles that Rozenshtein wrote. Those of you who read the book and did not value the content, I wonder about you. "Impossible" "Skip this one" "Esoterica" Did you miss the most important point of the book? Think differently and you just might find a simple elegant solution to your data access problem.I can hear the groanings now, "cross table joins, elegant"? What you do not know is that when Rozenshtein proposed the solutions you read about, the companies he worked with set down expectations under which Rozenshtein worked. He was to find a one-pass method of solving the data access problems of a company who had poorly designed very large databases and a limited time to assemble the data needed for daily reporting. Rozenshtein only had enough time to make one-pass through all the databases at once to collect the data for these daily reports. What you read in this book is about brilliant problem solving that produces results businesses value. Rozenshtein is a mathmatician sought out by large companies to solve data access problems that their staff could not solve. This book is about data access problem solving to produce results. I believe most everyone could stand to improve their results.
11 of 13 people found the following review helpful:
1.0 out of 5 stars
Good ideas but not necessarily practical,
By A Customer
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
The idea of "characteristic function" (or more commonly know as delta function with function value equals to 1 at a specified input value and 0 elsewhere) is interesting. But with the new SQL "CASE" statement, one can do away with this delta function. The book also presented the "power of product join" where one can use self product join to achieve results (such as finding the median) with one SQL pass as opposed to traditional multiple passes approaches. While the idea is interesting and innovative, the implementation may not be practical for large tables. If fact, it is much more efficient to find the median by multiple passes than self product join realizing that product join creates N square temporary rows. Unless one have unlimited time and computer resources (or extremely small table), the implementation of proeuct join is just not practical.In sum, the book does present some interesting ideas. But a lot of the ideas may be either out of date or inpractical. On top of that, the book is over priced.
7 of 8 people found the following review helpful:
1.0 out of 5 stars
Anemic little magazine of a book,
By A Customer
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
This thing is really too small to be called a book. I noticed that before I bought it, but went ahead with the purchase because I thought that perhaps it would be REALLY concentrated. Much to my disappointment, that wasn't the case. This book is as bad as they come. First, the chapters are really just old magazine article reprints. Second, the techniques are obsolete -- why would I want to write a characteristic function when I can just use CASE? Self joins and cartesian products are also counter-intuitive, generally slow techniques. Maybe they work okay with 10 record tables, but what about 10,000? I think not. Don't be the fool that I was and waste your money on this book!
6 of 7 people found the following review helpful:
1.0 out of 5 stars
Slow Rube Goldberg techniques,
By J. B. Peters (the Left Coast) - See all my reviews
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
Using functions that are nearly impossible to read to do what CASE can do for you is pretty darn silly. I bought the book without realizing how old it is -- it's circa 1994. A lot has changed since then, including the support of ANSI SQL '92's CASE function by most of the major DBMS vendors. Also, the code in this book trades efficiency for code paucity. Who cares whether you do something with a single SELECT? Isn't the idea to use the database as efficiently as possible? Cartesian products don't add up to efficiency. They add up to code that appears to run well against small data sets, but that will choke badly when faced with real data.
8 of 10 people found the following review helpful:
5.0 out of 5 stars
Best book for Query Optimizing.,
By zero_sigma "jayomegal" (Rutherford, NJ United States) - See all my reviews
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
You don't have to read the whole book, just first three chapters of this book will more than pay for itself. It seems complicated in the beginning with new notations, and their notations hide the simplicity and elegance of characteristic functions. However, once you get the concept of characteristic functions, it can help you enormously. I can't say enough about how good this is, it is such a simple and elegant idea for set-based db-engine, wonder why nobody else had thought of it sooner. I find myself deriving different characteristic functions for all kinds of tasks, and that in it of itself is fun. A must read for anybody using set-based db-engine such as Sybase and MS-SQL server ( despite their claims to the contrary for their latest versions ). Not much help in using this concept in ORACLE, since ORACLE seems to create implicit cursors anyway. I have improved speed in stored procedures by more than ten-fold by using the characteristic functions. Hooorrray!!!!!!!!!!
3 of 3 people found the following review helpful:
5.0 out of 5 stars
Excellent Book,
By A Customer
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
Best of its kind. Understanding charecteristic functions made easy.
4 of 5 people found the following review helpful:
3.0 out of 5 stars
CASE can't do pivots!,
By A Customer
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
All of you who are saying that CASE makes characteristics obsolete: show me how to write a pivot query that does not use a temp table using the CASE function - and without having to hardcode the column headings! Avoiding a temp table can make a huge impact on the scalability of your application.To me - this was the only value of this book: the first three articles. The rest consisted of the esoterica described by the others.
4 of 5 people found the following review helpful:
1.0 out of 5 stars
Essoteric beyond belief,
By A Customer
This review is from: Optimizing Transact-SQL : Advanced Programming Techniques (Paperback)
The techniques presented in this book are little more than attempts at showing how smart the authors are. They are not practical techniques. Following them will produce unreadable code. "Characteristic functions" should be used very sparingly and only when a more readable technique is not available. One more thing: the authors didn't discover these "functions" -- people have been using them since the birth of SQL Server, albeit with a good dose of prudence. The ANSI-92 inclusion of CASE makes these types of nonsensical brain teasers all but obsolete. I regret wasting my money on this book.
|
|
Most Helpful First | Newest First
|
|
Optimizing Transact-SQL : Advanced Programming Techniques by David Rozenshtein (Paperback - Oct. 1997)
Used & New from: $12.84
| ||