SQL Books
Related Subjects: FAQs, Help, and Tutorials
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 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

Used price: $14.40

From a functional PeopleSoft user's standpointReview Date: 2003-03-08
Holy SmokesReview Date: 2002-04-26
Great !!Review Date: 2001-11-02
I have been working with SQR for five years. I have used examples and the SQR manuals to accomplish what I wanted. This work provided me with a lot of knowledge that I had never taken the time to pick up. Now even if I take the time off and need a refresher the sections are highlighted.
I have found this book very useful as both a reference and a knoweldge builder. Also, the writing style was good enough that rereading the portions that I was alread aware of was not too irksome. Interestingly, I could swear some of the interview questions I have been asked came right out of this book.
*The* standard reference on SQRReview Date: 2002-08-26
- It teaches good programming practices. Anyone who has developed in any procedural language (including scripting and query languages) can quickly learn SQR. Therein lies a problem that this book overcomes: the excellent advice given about program development and structure can offset bad habits picked up in other languages.
- It's a definitive resource for SQR developers. Although SQR is relatively easy to learn, it's also rich with features missing from most other languages, such as complete control over printed and screen output, built-in constructs for graphs and charts, and multiple output file formats. Using many of these features not easy for beginners or programmers more used to other languages, but this book shows by example how to exploit every feature SQR has to offer.
- It dispels the common notion that SQR is a PeopleSoft-only tool. In fact, PeopleSoft doesn't own the language, and SQR will work in any database environment. More important, the book shows how to develop application and database independent programs that will work in any environment. This is an awakening for those who are going down proprietary paths, such as standardizing on Oracle's PL/SQL. While PL/SQL itself a powerful language, but is limited to Oracle - migrating from Oracle to, say, DB2 requires that all PL/SQL programs be scrapped. Had the applications and reports been developed in SQR the only changes would be to tables referenced.
In addition to the above, this book also provides good practices for forming SQL queries and understanding how a poorly formed join can make the difference between a resource hog and an unintrusive application. Since SQL, like SQR, is easy to learn many developers take the path of least resistance and develop queries with no thought on their effect on production systems. This book gives sound advice for avoiding that mistake.
The section on PeopleSoft, while out of date with respect to version 8, still contains valuable information for the majority of SQR developers whose exposure to SQR is via PeopleSoft.
There is something for everyone in this book - beginners can learn SQR the right way, and seasoned developers will have a ready reference that covers almost every facet of SQR in practical terms. If your job is primarily SQR development I also recommend that you also get a copy of "SQR Programmer Reference" by Don Mellen (ISBN 0967773008) as a quick reference to the features and nuances of SQR.
There is no shortage of solid adviceReview Date: 2004-01-12

Used price: $3.99

very goodReview Date: 2006-05-05
Rich in content and poor in arrangement of the examplesReview Date: 2005-02-24
Lots of tips but not good follow along examplesReview Date: 2005-03-04
Having said that, if you've had some Reporting Services experience and are just looking to brush up on techniques and/or learn additional techniques, then this book will probably save you the tediousness of having to go through a step-by-step example that you have already done in the past.
5 Stars for a reasonReview Date: 2005-03-01
Teo's style is easy to read, and he makes it easy to see how you can apply his examples to your reporting needs.
If you need to get up to speed on Reporting Services in a hurry, and need a book you can refer to in the future, this is the one.
The Book That Saved The ProjectReview Date: 2005-07-14
The Microsoft Reporting Services 1.0 documentation is not very useful to the newcomer, and with 7 months' experience now, I can also say it's not very useful to the rising journeyman. The product is quirky, with surprising gaps and baroque security features. Without expert guidance from someone who has worked with the RS dev team I don't see how anybody would get much done with Reporting Services 1.0.
Teo Lachev worked intensively with the Microsoft dev team and the book shows it. Perhaps one of the reasons other reviews here gripe about the examples is that the most useful examples are the non-trivial ones in the second half of the book. Report authoring is the easy part! Delivering your reports to your users in the ways they demand is the hard part, and in my opinion this is where Teo's book shines.
It is no exaggeration to state that without Teo's book, and in particular his discussion of custom security extensions for Reporting Services, we would have failed to deliver the goods. But we succeeded... thanks Teo.

Used price: $24.86

The K&R of Groovy programming booksReview Date: 2008-11-08
The book begins by introducing you to what you will need to compile and run Groovy as far as jar files and tools. Part one of the book is entirely dedicated to the language basics: syntax, grammar, and typical idioms. The language is presented via a combination of examples and discussion. The descriptions are detailed but are not overly academic. Chapter two is most important here, because that is where many of the examples lie that you will need to come back to later in the book.
Part 2, "Around the Groovy Library", explores how Groovy extends the Java Runtime Environment. Part one of the book demonstrated how Groovy makes commonly performed tasks easier. The second part shows how the same principle is applied in Groovy's libraries, using many of the advanced language features available to let you do more work with less code. Chapter 8 introduces the builder concept, which is one of Groovy's distinctive capabilities, because it can only be implemented in a general library class with a truly dynamic language. There are builders that come as part of the Groovy distribution, and you are also shown how to create your own builders. Chapter 9 covers the object/method pure GDK library capabilities. Chapter 10 goes covers Groovy's library support for dealing with relational database systems, providing great flexibility when necessary, and significant shortcuts when simple solutions will do. Chapter 11 presents various methods of making Java applications more dynamic by integrating them with Groovy. I found this to be one of the book's most useful chapters, but you need the first 10 for chapter 11 to make sense.
Part 3 supplies guidance on how to best apply your new Groovy knowledge to practical tasks. Chapter 13 reveals tricks of the trade - how to avoid common errors, using snippet collections, and command-line and automation support. Chapter 14 is about unit testing. I just skimmed this part since the subject doesn't appeal to me. Chapter 15 takes Java and Groovy to the Windows platform. It shows how to put Groovy's expressiveness into action for the automation of Windows controls and applications. Finally, chapter 16 looks at Grails and shows how it leverages J2EE, Hibernate, Spring, and Groovy to allow rapid application development.
This book is a great introduction to Groovy, and even at its rather advanced age for a programming book it is still the best of the Groovy introductory texts. However, I am a person who needs an extreme amount of examples to really get something. For that reason I also highly recommend Groovy Recipes: Greasing the Wheels of Java (Pragmatic Programmers). What this book lacks in examples that book has. What that book lacks in detailed explanation, this book has. Thus they go hand in hand extremely well.
Excellent resourceReview Date: 2008-10-30
Groovy is different. Get this book and learnReview Date: 2008-07-20
There are languages having very concise syntax but the code is not easy for human to read. There are languages and APIs require more strikings on keyboard than thinking. Groovy is different. You have all kinds of syntax sugar while the code still tells a literal story in your problem domain.
The only fields I think Groovy might not be suitable are the machine-level infrastructures and image/audio/video processing. C and assembly languages are not replaceable by Groovy. In most other application fields, using Groovy can dramatically boost programmers' productivity and reduce programming errors.
I started off by simply renaming all .java files in my test packages to .groovy files. Worked. Then tried out it's closures and curry calls. For me there are a lot more to explore. Haskel fans will like Groovy. Smalltalk fans will like Groovy. Python fans will like Groovy. Lisp fans maybe too. Java folks? I for one, have already been conquered. If you program at all, by all means do yourself a favour and have a look at Groovy.
Groovy in Action is an excellent book on Groovy and programming. Get this book and get the insight, you'll be glad you do.
Groovy In Action is an awesome Groovy book and reference.Review Date: 2008-04-07
I first heard about Groovy In Action (also known as GINA) during a Groovy presentation almost a year ago, the presenter was referring to Groovy In Action as one of the best references out at the time, After reading GINA, I was not disappointed. The roadmap given at the beginning of the book is a great guide to see how the book is organized out. As an added bonus, the book includes some great reference information at the end of the book. It contains Groovy Language information, a GDK API quick reference, and several great cheat sheets for items such as closures, lists, etc.
The book is full of great examples that you can use (some of the examples illustrate some of the finer points of the language).
In fact someone recently asked about where to find a complete specification of the Groovy Language. Guillaume Laforge, Groovy Program Manager and co-author of Groovy In Action, responded that the most current information can be found in Groovy In Action (source user@groovy.codehaus.org mailing list 3/16/2008).
Groovy in Action is one of the Groovy books that is a must have for anyone looking to get into Groovy Development.
awesomeReview Date: 2008-03-22

Used price: $31.02

Great BookReview Date: 2007-09-18
Great Intermediate level PHP bookReview Date: 2008-11-12
I would call this an intermediate level PHP book. It goes beyond your beginning PHP books. Yes, it covers PHP and MySQL basics in the first two sections. And then, it gets into the meat of why your learning PHP and MySQL with major sections on "Planning Web Applications", "Implementing you Web Application, and three "Sample Projects."
What I thought this book added that the basic PHP books do not cover was a constant attention to web security. If security could be a problem in each section of the book, the security issue was explained, and the example showed you how to protect your application from the potential security problem. It also covered areas that are usually glossed over in beginning books, such as cookies & sessions, secure (encryped) layer, user authentication, error handling, form validation, and regular expressions.
You can hardly go wrong with this book, it will give you a solid foundation for whatever you want to do in web development. I highly recommend it.
Good materials to start off with but needs proof readingReview Date: 2008-02-13
The only thing that annoys me, is the amount of typos on the samples and sample codes. If you are a seasoned programmer like me, you will pick them up with no problem before testing them. But for the novice, it could give them extra time debugging.
Still I recommend this book.
A Must Have for PHP developerReview Date: 2007-07-14
I feel this is the one book you must have for web application development using PHP and mySQL, although frankly there are many good ones around too. I have seen many books and I strongly recommend this.
It has a comprehensive coverage. Many reviews have mentioned it so I am not going to repeat. I find that I learned something not covered in other books - about building robust, secured, and efficient codes. I have not seen people write that kind of codes for PHP. Marc has been most generous in shraring these with the readers. The 3 last projects were superb. It is well suited for the techie.
A more than plesant surpriseReview Date: 2007-10-27
I would recommend this book to anyone planning to write PHP.

Used price: $7.94

I learned a lot from this book.Review Date: 2008-09-02
Money very well spent.
This is also a great book for those just wanting to learn SQL. The examples are great.
A great book, easy to read, lots of information.Review Date: 2007-10-16
Unfortunately MySQL isn't the most mature database solution, but if it's good enough for your project, then this is a great resource.
clear concise and comprehensiveReview Date: 2008-09-26
I was familiar with databases having worked with MS Access, but I had never worked with SQL. This book hit the spot in showing me what I needed to know to get going. I am now using MySQL successfully with a Java/Struts front end. While I found a few small gaps in this book, it has helped tremendously in my learning journey in that it gets to the point with minimum emotional overhead and verbosity, unlike MySQL (4th Edition) (Developer's Library) which I have found to be pretty useless and weighty after reading Forta's book.
This book has clear, short, well labeled chapters to find what you need. Highly recommended.
Good for BeginnersReview Date: 2008-03-13
When I started to apply some of the techniques I learned to existing applications, I found out VERY quickly that this is insufficient as a reference. Each topic has enough hands-on examples to give you a start, but not nearly enough depth to use for looking things up.
I thought that Appendix B on creating the sample tables might have been a little abbreviated for the novice user. It refers to Chapter 2 to create a new datasource, but I think it was a little confusing jumping back and forth between the appendix and the chapter. This might be better as an exercise right in the chapter.
Overall, I would recommend this book as a starting point.
Great for databases in general, falls apart on administriviaReview Date: 2008-08-21

Review of SQL/400 GuideReview Date: 2006-08-28
Well written.
Most everything you need for SQL on the iSeriesReview Date: 2006-07-19
Good practical book to learn SQL on iSeriesReview Date: 2004-10-12
Used it the day I got itReview Date: 2001-09-25
It is a great learning tool and I'm very glad I bought it.
SQL for the 400/iSeries Cool!Review Date: 2001-05-09
Conte and Cravitz flood the text with real working examples that hit homeruns with the IBM midrange user. Yet, minus the sprinkling of RPG/ILE & Cobol code any DB2 user would find the text extremely helpful.
Keep this book at the ready since it's a "quick grab" when questions come up regarding triggers, UDF's or Database Modeling and design.
The Book is a great starting point for the AS400/iSeries guru looking to open their database to the outside world. With a solid SQL footing the JDBC mountain is a much easier climb.
Conte & Cravitz keep up the great work!

Used price: $17.54

SQL RS Beyond the basics (and some basics too)Review Date: 2006-09-23
I especially found the chapters on customized set up extremely helpful. The installation wizard doesn't offer a whole lot of options, and most of teh time you don't know fully how you want to configure it until you've tried it out. You'll get some good starters on rconfiguring your installation here.
You'll get enough basics to be ready to dive in, and then some tricks well enough beyond that to give you well on your way to devleoping customized solutions.
Excellent and surprisingly good.Review Date: 2006-03-24
The writing style is actually excellent for beginners, as I was terrified by the prospect of reading such a mammoth. But these guys make it fun and interesting to read (right down to the jokes and sidenotes) and really do touch on everything you need in a useful manner without boring you.
And excellent resource that now never leaves my desk. I can only hope these guys do a SQL Sever 2005 one. I cannot recommend this book enough for those starting on Reporting Services. It really is the book to read.
And if you are looking for a book on SQL Reportin 2005 - I would still recommend this book to give you the basics and introduction which is unbeatable thus far.
Good Book on Reporting servicesReview Date: 2005-10-01
Let's be realisticReview Date: 2005-10-14
In order to understand something new, we all must relate that which we're learning to that which we already know.
Pete and Bill have a difficult time transitioning from campy comedians to thoughtful educators. To this extent, their writing style lacks any useful analogies whatsoever which might bridge the gap between the known and the unknown.
The book is full of droll and distracting fantasy references which are completely irrelevant to the subject matter, and are prone to taking the unsuspecting reader off task.
The potential purchaser should also be forewarned that the authors tend towards another immature trait of attempting to impress the reader with their linguistic abilities. Yet, to be effective at teaching they should have remembered to never use a complicated word where a simple one will do.
Many examples are rambling and inconcise, where step-by-step quickly degrades into an ambiguous and vague path.
Not every developer can obtain DOMAIN Authority in order to issue SSL certificates and it's too bad that the authors don't allow for this type of scenario, especially when a reporting system is on a VPN.
All of the content is there, but it's up to the reader to filter and translate most of it from the pitfalls aforementioned into something more to the center of the bell curve.
Good for developersReview Date: 2005-12-14
Nevertheless, there is some depth on Reporting Services not to be found elsewhere that is quite handy.

Used price: $12.23

Review Garry Robinson book on MSAccess ProtectionReview Date: 2008-10-06
I found it to be a good rescouce of the various stages of MSAccess DB developing protection for a data base. The end user would also benefit by having a reliable data base.
Braxton Foist
Good to read even if you don't think you need securityReview Date: 2007-12-05
I have read some of the other (excellent in their own right) big books on MS Access, and there were a couple of "non-security" things in here that I did not find elsewhere (not to mention the security issues that were new to me). I highly recommend this book for anyone who may be creating a multi-user database.
Excellent ResourceReview Date: 2007-02-28
Real Security for AccessReview Date: 2007-01-04
MS Access Database Workgroup Security.Review Date: 2006-05-10
Mr. Robinsons' is the first technical book on Access I have ever read from cover to cover with a never ending want to turn the page to see what Mr. Robinson was going to teach me next. I'm going to begin a reread of his work and this time I'm going to use the examples with both Northwind and my own database to incorporate his methods; especially enjoying combining the OS and workgroup security to provide my data a secure base from my clients, friends and enemies.
His book provided me ample margin to take copious notes along with my read, it will prove helpful in preparing for deployment. Mr. Robinson is a professional database administrator and this book is written as from such, you will think like he does at the end of this read and be the better for it. Mr. Robinson is a wonderful dbase admin, author, and now teacher. Again many thanks for his efforts and a heartfelt appreciation for my newly gained knowledge. Should Mr. Robinson ever have a worldwide tour on the subject, sign me up.
All of the reviews are positive, I suggest a review of Mr. Robinsons' Table of Contents and more important, the wonderful Index. A review of these documents will give you better insight into the level of Access database security Mr. Robinson clearly and distinctly explains. Mr. Robinson has the world's attention on this security subject and rightfully deserves it.
The Table of Contents and Index may be found at:
View the table of contents (http://www.vb123.com/get/AccessSecurityBook_TOC.pdf)in PDF format.
View the index file (http://www.vb123.com/get/mapindex.pdf) in PDF format.
Tom Pickett
May 9, 2006
Berea, South Carolina USA

Used price: $0.81

An Outstanding Wealth of InformationReview Date: 1998-12-22
Excellent for beginnersReview Date: 2000-02-29
It is one of those very rare books that presents advanced concepts in a context understandable by users of all experience levels. The author often throws in tips about Oracle PL/SQL quirks to watch out for, as well as some very applicable information about how Oracle works internally.
I've since become more comfortable with PL/SQL, and the book also serves as a great reference. I highly encourage you to read this book straight through.
I recommend this well-written book to anybody wanting to learn PL/SQL, as well as anyone needing a great reference.
Well-Organized, Useful Examples, Easy to ReadReview Date: 1999-02-27
An Excellent BookReview Date: 1999-02-02
Good but outdatedReview Date: 1999-01-27

Used price: $1.61

The book has been marvelous!!!Review Date: 2004-09-02
Beginning SQL Server 2000 for Visual Basic DevelopersReview Date: 2003-06-27
OK for starters, but 33 percent irrelevantReview Date: 2003-08-27
Taught me everything I needed to know...Review Date: 2003-01-11
This book will make you feel that you not only know how to make Visual Basic talk to SQL Server, it will make you feel you know more than the basics of SQL Server itself. Previous to reading this book I had no idea what a stored procedure was, or how a query works in SQL Server (I had worked extensively with Microsoft Access, and these skills were not necessarily transferable to SQL Server, though many of the concepts are similar). Now I know my way around SQL Server 2000. This book fulfilled a dual purpose.
There are chapters on Database design, SQL Server installation, SQL Server security, Querying, Stored Procedures, the SQL language, IIS, and XML. Most of the book is taken up with what developers do everyday: the storage and manipulation of data. Over 300 pages of the book is dedicated to data in general, and how to get the most out of it using VB and SQL Server.
If you need to create a VB6 (there is no discussion of VB.NET since the book predates it) database application using SQL Server, this is the book to start with. Its bulk pays off.
Excellent introduction to SQL Server 2000 for VB DevelopersReview Date: 2002-10-11
Related Subjects: FAQs, Help, and Tutorials
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 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
In summary, if you are a pretty experienced functional person (I am a consultant), are motivated enough to invest the time to learn SQR, and have access to the tool, this may be a good choice. Certainly more information (understandably) than you can get from a five-day SQR class.