├── .dockerignore ├── .gitignore ├── Dockerfile-logstash ├── LICENSE ├── README.md ├── data ├── books.sql ├── books_journal.sql └── new_arrival.sql ├── docker-compose.yaml ├── docs ├── sync-elasticsearch-mysql.drawio └── sync-elasticsearch-mysql.png └── volumes ├── elasticsearch └── .gitignore └── logstash ├── config ├── logstash.yml ├── pipelines.yml └── queries │ ├── from-scratch.sql │ └── incremental.sql └── pipeline ├── from-scratch.conf └── incremental.conf /.dockerignore: -------------------------------------------------------------------------------- 1 | README.md 2 | LICENSE 3 | data/ 4 | volumes/elasticsearch 5 | volumes/mysql -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | volumes/elasticsearch/* -------------------------------------------------------------------------------- /Dockerfile-logstash: -------------------------------------------------------------------------------- 1 | FROM docker.elastic.co/logstash/logstash:7.9.3 2 | 3 | # Download JDBC connector for Logstash 4 | RUN curl -L --output "mysql-connector-java-8.0.22.tar.gz" "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-8.0.22.tar.gz" \ 5 | && tar -xf "mysql-connector-java-8.0.22.tar.gz" "mysql-connector-java-8.0.22/mysql-connector-java-8.0.22.jar" \ 6 | && mv "mysql-connector-java-8.0.22/mysql-connector-java-8.0.22.jar" "mysql-connector-java-8.0.22.jar" \ 7 | && rm -r "mysql-connector-java-8.0.22" "mysql-connector-java-8.0.22.tar.gz" 8 | 9 | ENTRYPOINT ["/usr/local/bin/docker-entrypoint"] 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Redouane Achouri 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sync-elasticsearch-mysql 2 | Using Logstash to synchronize an Elasticsearch index with MySQL data 3 | 4 | > This project is described in details in this article: [How to synchronize Elasticsearch with MySQL](https://towardsdatascience.com/how-to-synchronize-elasticsearch-with-mysql-ed32fc57b339) 5 | 6 | ## Introduction 7 | 8 | This project is a working example demonstrating how to use Logstash to link Elasticsearch to a MySQL database in order to: 9 | - Build an Elasticsearch index from scratch 10 | - Continuously monitor changes on the database records and replicate any of those changes to Elasticsearch (`create`, `update`, `delete`) 11 | 12 | It uses: 13 | - MySQL as the main database of a given business architecture (version 8.0) 14 | - Elasticsearch as a text search engine (version 7.9.3) 15 | - Logstash as a connector or data pipe from MySQL to Elasticsearch (version 7.9.3) 16 | - Kibana for monitoring, data visualization, and debuging tool (version 7.9.3) 17 | 18 | ![Architecture of this project](./docs/sync-elasticsearch-mysql.png) 19 | 20 | This repo is a valid prototype and works as it is, however it is not suitable for a production environment. Please refer to the official documentation of each of the above technologies for instructions on how to go live in your production environment. 21 | 22 | ## Deployment 23 | On your development/local environment, run the following commands on a terminal: 24 | 25 | > Note: Make sure to install [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/) 26 | 27 | ```bash 28 | # Clone this project and cd into it 29 | git clone https://github.com/redouane-dev/sync-elasticsearch-mysql.git && cd sync-elasticsearch-mysql 30 | 31 | # Start the whole architecture 32 | docker-compose up # add -d for detached mode 33 | 34 | # To keep an eye on the logs 35 | docker-compose logs -f --tail 111 36 | ``` 37 | 38 | To start services separately or in a different order, you can run: 39 | ```bash 40 | docker-compose up -d mysql 41 | docker-compose up -d elasticsearch kibana 42 | docker-compose up logstash 43 | ``` 44 | 45 | ## Testing 46 | Please refer to the above article for testing steps. 47 | 48 | ## Resources 49 | - Inspiration by [How to keep Elasticsearch synchronized with a relational database using Logstash and JDBC](https://www.elastic.co/blog/how-to-keep-elasticsearch-synchronized-with-a-relational-database-using-logstash). However the article does not deal with indexing from scratch and deleted records. 50 | - Data used for this project is available in the Kaggle dataset [Goodreads-books](https://www.kaggle.com/jealousleopard/goodreadsbooks) 51 | - [Logstash JDBC input plugin](https://www.elastic.co/guide/en/logstash/current/plugins-inputs-jdbc.html) 52 | - [Logstash Mutate filter plugin](https://www.elastic.co/guide/en/logstash/current/plugins-filters-mutate.html) 53 | - [Logstash Elasticsearch output plugin](https://www.elastic.co/guide/en/logstash/current/plugins-outputs-elasticsearch.html) 54 | -------------------------------------------------------------------------------- /data/books.sql: -------------------------------------------------------------------------------- 1 | -- MySQL dump 10.13 Distrib 8.0.22, for Linux (x86_64) 2 | -- 3 | -- Host: localhost Database: books 4 | -- ------------------------------------------------------ 5 | -- Server version 8.0.22 6 | 7 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 8 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 9 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 10 | /*!50503 SET NAMES utf8mb4 */; 11 | /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; 12 | /*!40103 SET TIME_ZONE='+00:00' */; 13 | /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; 14 | /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; 15 | /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; 16 | /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; 17 | 18 | -- 19 | -- Table structure for table `books` 20 | -- 21 | 22 | DROP TABLE IF EXISTS `books`; 23 | /*!40101 SET @saved_cs_client = @@character_set_client */; 24 | /*!50503 SET character_set_client = utf8mb4 */; 25 | CREATE TABLE `books` ( 26 | `isbn` varchar(15) NOT NULL, 27 | `title` varchar(1023) DEFAULT NULL, 28 | `authors` varchar(1023) DEFAULT NULL, 29 | `publication_date` date DEFAULT NULL, 30 | PRIMARY KEY (`isbn`) 31 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; 32 | /*!40101 SET character_set_client = @saved_cs_client */; 33 | 34 | -- 35 | -- Dumping data for table `books` 36 | -- 37 | 38 | LOCK TABLES `books` WRITE; 39 | /*!40000 ALTER TABLE `books` DISABLE KEYS */; 40 | INSERT INTO `books` VALUES ('9780001000391','The Prophet','Kahlil Gibran/جبران خليل جبران/Jihad El','2010-01-01'),('9780006482079','Warhost of Vastmark (Wars of Light & Shadow #3; Arc 2 - The Ships of Merior #2)','Janny Wurts','2009-07-01'),('9780006496908','Scandalous Risks','Susan Howatch','2009-07-22'),('9780006498865','The Mad Ship (Liveship Traders #2)','Robin Hobb','2008-02-04'),('9780006499268','The Reverse of the Medal (Aubrey & Maturin #11)','Patrick O\'Brian','2010-04-01'),('9780007102228','Grand Conspiracy (Wars of Light & Shadow #5; Arc 3 - Alliance of Light #2)','Janny Wurts','2007-11-05'),('9780007121076','Dead Man\'s Folly (Hercule Poirot #33)','Agatha Christie','2008-07-01'),('9780007126903','The Metaphysical Club','Louis Menand','2010-02-01'),('9780007149827','The Yiddish Policemen\'s Union','Michael Chabon','2007-05-01'),('9780007153589','How to Be Alone','Jonathan Franzen','2007-07-02'),('9780007179817','Microserfs','Douglas Coupland','2008-01-01'),('9780060090371','Lucy Sullivan Is Getting Married','Marian Keyes','2007-01-23'),('9780060090388','Rachel\'s Holiday (Walsh Family #2)','Marian Keyes','2007-01-23'),('9780060094423','End Game (Dreamland #8)','Dale Brown/Jim DeFelice','2006-10-31'),('9780060245603','Today I Feel Silly Other Moods That Make My Day','Jamie Lee Curtis/Laura Cornell','2007-07-31'),('9780060511135','Whirlpool','Elizabeth Lowell/Ann Maxwell','2006-10-31'),('9780060519599','Blue Noon (Midnighters #3)','Scott Westerfeld','2007-02-06'),('9780060525125','Size 14 Is Not Fat Either (Heather Wells #2)','Meg Cabot','2006-11-28'),('9780060541439','13 Little Blue Envelopes (Little Blue Envelope #1)','Maureen Johnson','2010-12-21'),('9780060561185','The Prince Kidnaps a Bride (Lost Princesses #3)','Christina Dodd','2006-11-28'),('9780060564780','The Kindness of Strangers','Katrina Kittle','2007-01-02'),('9780060567231','Lord of Light','Roger Zelazny','2010-03-30'),('9780060590291','You Suck (A Love Story #2)','Christopher Moore','2007-01-16'),('9780060593247','Every Book Its Reader: The Power of the Printed Word to Stir the World','Nicholas A. Basbanes','2006-12-12'),('9780060598808','Thanksgiving','Janet Evanovich','2006-10-31'),('9780060622138','Shadow of the Almighty: The Life and Testament of Jim Elliot','Elisabeth Elliot','2009-09-29'),('9780060723934','Crooked Little Vein','Warren Ellis','2007-07-24'),('9780060724290','The Collected Poetry 1968-1998','Nikki Giovanni/Virginia C. Fowler','2007-01-23'),('9780060734015','Bridge to Terabithia','Katherine Paterson/Donna Diamond','2008-07-01'),('9780060744878','The Pursuit of Happyness','Chris Gardner','2006-10-24'),('9780060757083','Letters of E.B. White','E.B. White/Dorothy Lobrano Guth/Martha White/John Updike','2006-11-28'),('9780060758769','The Dead Beat: Lost Souls Lucky Stiffs and the Perverse Pleasures of Obituaries','Marilyn Johnson','2007-01-30'),('9780060761356','Michael Tolliver Lives (Tales of the City #7)','Armistead Maupin','2007-06-12'),('9780060774127','Bite Me If You Can (Argeneau #6)','Lynsay Sands','2007-01-30'),('9780060775858','Goodnight Moon','Margaret Wise Brown/Clement Hurd','2007-01-23'),('9780060777050','Reading Like a Writer: A Guide for People Who Love Books and for Those Who Want to Write Them','Francine Prose','2007-04-10'),('9780060786731','A False Mirror (Inspector Ian Rutledge #9)','Charles Todd','2007-01-09'),('9780060788384','For a Few Demons More (The Hollows #5)','Kim Harrison','2007-03-20'),('9780060792800','Into a Dark Realm (The Darkwar Saga #2)','Raymond E. Feist','2007-03-27'),('9780060819224','The Collected Letters of C.S. Lewis Volume 3: Narnia Cambridge and Joy 1950 - 1963','C.S. Lewis/Walter Hooper','2007-01-09'),('9780060833251','Warrior Angel','Margaret Weis/Lizz Weis','2007-02-27'),('9780060841867','The Curtain: An Essay in Seven Parts','Milan Kundera/Linda Asher','2007-01-30'),('9780060847180','Valentine Princess (The Princess Diaries #7.75)','Meg Cabot','2006-12-12'),('9780060852559','Animal Vegetable Miracle: A Year of Food Life','Barbara Kingsolver/Steven L. Hopp/Camille Kingsolver/Richard A. Houser','2007-05-01'),('9780060853976','Good Omens: The Nice and Accurate Prophecies of Agnes Nutter Witch','Terry Pratchett/Neil Gaiman','2007-08-07'),('9780060854942','Continental Drift','Russell Banks','2007-03-13'),('9780060872793','The Burglar Who Thought He Was Bogart (Bernie Rhodenbarr #7)','Lawrence Block','2006-10-31'),('9780060872984','Next','Michael Crichton','2006-11-28'),('9780060874308','Missing You (1-800-Where-R-You #5)','Meg Cabot','2006-12-26'),('9780060878825','Poor People','William T. Vollmann','2007-02-27'),('9780060882600','The Annotated Charlotte\'s Web','E.B. White/Garth Williams/Peter F. Neumeyer','2006-10-31'),('9780060882617','Charlotte\'s Web','E.B. White/Garth Williams/Kate DiCamillo','2006-10-31'),('9780060882624','A Little Bit Wicked (Last Man Standing #1)','Victoria Alexander','2006-12-26'),('9780060882815','Charlotte\'s Web: Wilbur Finds a Friend','Jennifer Frantz/E.B. White/Aleksey Ivanov/Olga Ivanov','2006-10-31'),('9780060885373','Little House in the Big Woods (Little House #1)','Laura Ingalls Wilder/Garth Williams','2007-01-01'),('9780060885380','Farmer Boy (Little House #2)','Laura Ingalls Wilder/Garth Williams','2007-01-01'),('9780060885397','Little House on the Prairie (Little House #3)','Laura Ingalls Wilder/Garth Williams','2007-01-01'),('9780060885427','The Long Winter (Little House #6)','Laura Ingalls Wilder/Garth Williams','2007-01-01'),('9780060885434','Little Town on the Prairie (Little House #7)','Laura Ingalls Wilder/Garth Williams','2007-01-01'),('9780060885458','The First Four Years (Little House #9)','Laura Ingalls Wilder/Garth Williams','2007-01-02'),('9780060885526','Laura Ingalls Wilder: A Biography','William Anderson','2007-01-02'),('9780060885731','Dumpy\'s Valentine','Julie Andrews Edwards/Emma Walton Hamilton/Tony Walton/Ruby Randig','2006-12-12'),('9780060890391','Mariel Hemingway\'s Healthy Living from the Inside Out: Every Woman\'s Guide to Real Beauty Renewed Energy and a Radiant Life','Mariel Hemingway','2006-12-26'),('9780060898724','Pacto Con un Demonio','Kim Harrison','2008-07-01'),('9780060899226','Kitchen Confidential: Adventures in the Culinary Underbelly','Anthony Bourdain','2007-01-09'),('9780060923310','Edgar A. Poe: Mournful and Never-ending Remembrance','Kenneth Silverman','2008-12-23'),('9780060925772','The Wit & Wisdom of Winston Churchill','James C. Humes/Richard M. Nixon','2007-12-26'),('9780060932664','Collected Novellas','Gabriel García Márquez/Gregory Rabassa/J.S. Bernstein','2008-01-08'),('9780060932688','Collected Stories','Gabriel García Márquez/Gregory Rabassa/J.S. Bernstein','2008-05-13'),('9780061122187','Alphabet Weekends','Elizabeth Noble','2007-01-23'),('9780061125935','Goodnight Moon 123: A Counting Book (Over the Moon)','Margaret Wise Brown/Clement Hurd','2007-07-01'),('9780061127762','Charlotte\'s Web','E.B. White/Garth Williams/Rosemary Wells','2006-10-31'),('9780061127915','By Myself and Then Some','Lauren Bacall','2006-10-31'),('9780061130359','Sacred Games (Sacred Games)','Vikram Chandra','2007-01-09'),('9780061136955','Sugarplums and Scandal (Love at Stake #2.5; Bed-and-Breakfast Mysteries #22.5)','Lori Avocato/Dana Cameron/Mary Dahiem/Suzanne Macpherson/Cait London/Kerrelyn Sparks/Mary Daheim','2006-10-31'),('9780061137037','The Spider\'s House','Paul Bowles/Francine Prose','2006-10-31'),('9780061139635','Points in Time','Paul Bowles','2006-10-31'),('9780061140501','At the Edge (Psychic Triplet Trilogy #1)','Cait London','2007-05-29'),('9780061140532','Remind Me Again Why I Need A Man','Claudia Carroll','2007-05-01'),('9780061145391','The Gabriel Hounds','Mary Stewart','2006-11-28'),('9780061152559','The OK Book','Amy Krouse Rosenthal/Tom Lichtenheld','2007-04-24'),('9780061161537','Inés of My Soul','Isabel Allende/Margaret Sayers Peden','2006-11-07'),('9780061161575','Ines of My Soul','Isabel Allende/Margaret Sayers Peden','2006-11-07'),('9780061176104','The Power of Art','Simon Schama','2006-11-10'),('9780061196676','Smithsonian Intimate Guide to Human Origins','Carl Zimmer','2007-02-06'),('9780061196683','My Secret: A PostSecret Book','Frank Warren','2006-10-24'),('9780061198755','The Secret Lives of Men and Women: A PostSecret Book','Frank Warren','2007-01-09'),('9780061199004','Las Crónicas de Narnia','C.S. Lewis/Margarita E. Valdes/Gemma Gallart/Pauline Baynes','2006-11-07'),('9780061208492','The Complete C.S. Lewis Signature Classics','C.S. Lewis','2007-02-06'),('9780061214608','Five Quarters of the Orange','Joanne Harris','2007-01-02'),('9780061214967','The Roald Dahl Audio Collection','Roald Dahl','2007-02-20'),('9780061228742','Charlotte\'s Web','E.B. White/Garth Williams','2006-11-01'),('9780061232053','Men Are from Mars Women Are from Venus','John Gray','2007-04-03'),('9780061236822','The Gravedigger\'s Daughter','Joyce Carol Oates','2007-05-29'),('9780061238222','Marley & Me: Life and Love with the World\'s Worst Dog','John Grogan','2006-10-31'),('9780061238239','The End of Days (The Earth Chronicles #7)','Zecharia Sitchin','2007-04-03'),('9780061239533','The Maytrees','Annie Dillard','2007-06-12'),('9780061241895','Influence: The Psychology of Persuasion','Robert B. Cialdini','2006-12-26'),('9780061245138','Freakonomics: A Rogue Economist Explores the Hidden Side of Everything','Steven D. Levitt/Stephen J. Dubner','2006-12-08'),('9780061284380','El príncipe de la niebla (Trilogía de la Niebla #1)','Carlos Ruiz Zafón','2006-11-21'),('9780061351341','El Alquimista: Edicion Illustrada: Edicion Illustrada','Paulo Coelho','2007-04-10'),('9780061351396','Wicked: Memorias de una bruja mala (Los años malvados #1)','Gregory Maguire/Claudia Conde','2007-05-01'),('9780062507549','Owning Your Own Shadow: Understanding the Dark Side of the Psyche','Robert A. Johnson','2009-06-09'),('9780064400961','Betsy-Tacy (Betsy-Tacy #1)','Maud Hart Lovelace/Lois Lenski','2007-08-14'),('9780064401487','Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle #1)','Betty MacDonald/Alexandra Boiger','2007-08-14'),('9780064401494','Hello Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle #4)','Betty MacDonald/Alexandra Boiger','2007-08-14'),('9780064401517','Mrs. Piggle-Wiggle\'s Magic (Mrs. Piggle Wiggle #2)','Betty MacDonald/Alexandra Boiger','2007-08-14'),('9780064472685','The Chronicles of Chrestomanci Vol. 1 (Chrestomanci #1-2)','Diana Wynne Jones','2007-04-10'),('9780099173311','Surely You\'re Joking Mr. Feynman!','Richard P. Feynman','2006-12-17'),('9780099448570','South of the Border West of the Sun','Haruki Murakami/Philip Gabriel','2006-12-01'),('9780099498643','The Lilac Bus','Maeve Binchy','2007-01-12'),('9780132221863','A World of Art','Henry M. Sayre','2006-12-22'),('9780132382458','Social Psychology','Elliot Aronson/Robin M. Akert/Timothy D. Wilson','2006-12-06'),('9780140289237','For Lust of Knowing: The Orientalists and Their Enemies','Robert Irwin','2007-01-25'),('9780140296617','The Periodic Table','Primo Levi','2009-01-01'),('9780140442243','Home of the Gentry','Ivan Turgenev/Richard Freeborn','2007-12-06'),('9780140445503','Gargantua and Pantagruel','François Rabelais/M.A. Screech','2006-10-26'),('9780140447477','Critique of Pure Reason','Immanuel Kant/Marcus Weigelt/F. Max Müller','2007-11-29'),('9780140620122','Wuthering Heights','Emily Brontë','2007-01-13'),('9780140621594','Tales from Shakespeare','Charles Lamb/Mary Lamb/Arthur Rackham','2007-10-26'),('9780141007472','Under the Duvet','Marian Keyes','2009-07-28'),('9780141184890','The Subterraneans','Jack Kerouac','2007-09-06'),('9780142406984','Gilda Joyce: Psychic Investigator (Gilda Joyce #1)','Jennifer Allison','2006-11-23'),('9780142407455','Prom Anonymous','Blake Nelson','2007-02-15'),('9780142407578','Heat','Mike Lupica','2007-03-01'),('9780142407912','James and the Giant Peach: a Play','Richard R. George/Roald Dahl','2007-02-01'),('9780142407929','The BFG: A Set of Plays','Roald Dahl/David Wood','2007-02-01'),('9780143038184','The Book of Other People','Zadie Smith/David Mitchell/George Saunders/Colm Tóibín/Aleksandar Hemon/Nick Hornby/Hari Kunzru/Toby Litt/Chris Ware','2008-01-02'),('9780143038313','The Bar on the Seine','Georges Simenon/David Watson','2006-12-26'),('9780143038412','Eat Pray Love','Elizabeth Gilbert','2007-02-01'),('9780143038825','The White Man\'s Burden: Why the West\'s Efforts to Aid the Rest Have Done So Much Ill and So Little Good','William Easterly','2007-03-01'),('9780143039488','The Winter of Our Discontent','John Steinbeck/Susan Shillinglaw','2008-08-26'),('9780143039600','The Dharma Bums','Jack Kerouac/Ann Douglas','2007-04-05'),('9780143039655','Malgudi Days','R.K. Narayan/Jhumpa Lahiri','2006-11-02'),('9780143039846','Rashōmon and Seventeen Other Stories','Ryūnosuke Akutagawa/Jay Rubin/Haruki Murakami/Yoshihiro Tatsumi','2006-10-31'),('9780143039945','Gravity\'s Rainbow','Thomas Pynchon','2006-10-31'),('9780143039952','The Odyssey','Homer/Robert Fagles/Bernard Knox','2006-11-30'),('9780143039969','Twenty Love Poems and a Song of Despair','Pablo Neruda/W.S. Merwin/Cristina García','2006-12-26'),('9780143039990','War and Peace','Leo Tolstoy/Orlando Figes/Anthony Briggs','2006-12-01'),('9780143104827','Life Is a Dream','Pedro Calderón de la Barca/Gregary Racz','2006-12-26'),('9780143104889','A Princess of Mars (Barsoom #1)','Edgar Rice Burroughs/John Seelye','2007-01-30'),('9780143104902','Black Lamb and Grey Falcon','Rebecca West/Christopher Hitchens','2007-01-30'),('9780143104933','Shahnameh: The Persian Book of Kings','Abolqasem Ferdowsi/Dick Davis/Azar Nafisi','2007-03-01'),('9780151012978','Landing','Emma Donoghue','2007-05-07'),('9780151015313','The Museum of Dr. Moses: Tales of Mystery and Suspense','Joyce Carol Oates','2007-08-06'),('9780152054472','Patience Princess Catherine (Young Royals #4)','Carolyn Meyer','2009-01-01'),('9780156030274','The Female of the Species: Tales of Mystery and Suspense','Joyce Carol Oates','2007-01-15'),('9780156030939','Rose of No Man\'s Land','Michelle Tea','2007-02-05'),('9780156032117','The People of Paper','Salvador Plascencia','2006-11-13'),('9780156032292','Virginia Woolf: An Inner Life','Julia Briggs','2006-11-06'),('9780156032483','The Wall of the Sky the Wall of the Eye','Jonathan Lethem','2007-03-05'),('9780156032612','Touchy Subjects','Emma Donoghue','2007-05-07'),('9780156032971','Foucault\'s Pendulum','Umberto Eco/William Weaver','2007-03-05'),('9780192806949','A Christmas Carol and Other Christmas Books','Charles Dickens/Robert Douglas-Fairhurst','2007-11-01'),('9780192807298','The Picture of Dorian Gray','Oscar Wilde/Joseph Bristow','2006-11-01'),('9780192836021','The Ladies\' Paradise','Émile Zola/Robin Buss/Brian Nelson','2008-09-01'),('9780195135794','Manic-Depressive Illness: Bipolar Disorders and Recurrent Depression','Frederick K. Goodwin/Kay Redfield Jamison','2007-03-01'),('9780195143102','Antigone','Sophocles/Reginald Gibbons/Charles Segal','2007-09-01'),('9780195325928','The Oxford Handbook of Philosophy of Mathematics and Logic','Stewart Shapiro','2007-03-01'),('9780198752721','Ancient Philosophy','Anthony Kenny','2006-11-30'),('9780199203611','The Major Works','Alexander Pope/Pat Rogers','2006-11-06'),('9780199205646','Power Sex Suicide: Mitochondria and the Meaning of Life','Nick Lane','2006-12-01'),('9780199210701','The Meaning of Life','Terry Eagleton','2007-05-01'),('9780226505367','The Erotic Phenomenon','Jean-Luc Marion/Stephen E. Lewis','2006-11-15'),('9780261103283','The Hobbit','J.R.R. Tolkien','2007-09-17'),('9780275991166','C. S. Lewis: Life Works and Legacy','Bruce L. Edwards/Diana Pavlac Glyer','2007-04-30'),('9780300115864','Saul Steinberg: Illuminations','Saul Steinberg/Joel Smith/Charles Simic','2006-11-01'),('9780300116182','Eva Hesse Drawing','Catherine de Zegher/Elisabeth Sussman','2006-12-28'),('9780307262998','Nature Girl','Carl Hiaasen','2006-11-14'),('9780307264220','On Truth','Harry G. Frankfurt/Baruch Spinoza','2006-10-31'),('9780307265784','Whitethorn Woods','Maeve Binchy','2007-03-06'),('9780307265838','After Dark','Haruki Murakami/Jay Rubin','2007-05-08'),('9780307266613','The Best of Wodehouse: An Anthology','P.G. Wodehouse/John Mortimer','2007-06-19'),('9780307275561','Death Match','Lincoln Child','2006-10-31'),('9780307275639','Tuesdays with Morrie','Mitch Albom','2007-06-29'),('9780307278364','The Sunset Limited','Cormac McCarthy','2006-10-24'),('9780307278586','Exile and the Kingdom','Albert Camus/Carol Cosman/Orhan Pamuk','2007-02-13'),('9780307279460','A Walk in the Woods: Rediscovering America on the Appalachian Trail','Bill Bryson','2006-12-26'),('9780307335852','The Alchemist\'s Daughter','Katharine McMahon','2006-10-24'),('9780307337931','Small Bites Big Nights: Seductive Little Plates for Intimate Occasions and Lavish Parties','Govind Armstrong/Lisa Romerein/Tyler Florence','2007-04-10'),('9780307338464','Sliver of Truth (Ridley Jones #2)','Lisa Unger','2007-01-02'),('9780307346582','Everyday Pasta','Giada De Laurentiis/Victoria Pearson','2007-04-03'),('9780307376640','La Ciudad Perdida (NUMA Files #5)','Clive Cussler/Paul Kemprecos','2006-11-07'),('9780307383419','Dreams from My Father: A Story of Race and Inheritance','Barack Obama','2007-01-09'),('9780310247562','Ever After (Lost Love #2)','Karen Kingsbury','2007-01-01'),('9780310257868','Becoming a Contagious Christian Leader\'s Guide: Communicating Your Faith in a Style That Fits You','Mark Mittelberg/Lee Strobel','2007-02-12'),('9780310272663','A Search for What Makes Sense: Finding Faith','Brian D. McLaren/Steve Chalke','2007-02-11'),('9780312306342','Plum Lovin\' (Stephanie Plum #12.5)','Janet Evanovich','2007-01-09'),('9780312333799','Spider Mountain (Cam Richter #2)','P.T. Deutermann','2006-12-26'),('9780312342340','Be Happy or I\'ll Scream!: My Deranged Quest for the Perfect Husband Family and Life','Sheri Lynch','2007-02-06'),('9780312354602','The Ravenscar Dynasty (Ravenscar #1)','Barbara Taylor Bradford','2006-12-26'),('9780312360115','The Mystery Method: How to Get Beautiful Women Into Bed','Mystery/Neil Strauss','2007-02-06'),('9780312360269','Marked (House of Night #1)','P.C. Cast/Kristin Cast','2007-05-01'),('9780312360863','Let\'s Go Australia on a Budget','Let\'s Go Inc.','2006-11-28'),('9780312362966','More Plums in One (Stephanie Plum #4-6)','Janet Evanovich','2007-04-03'),('9780312364526','James Herriot\'s Dog Stories','James Herriot/Victor G. Ambrus','2006-11-14'),('9780312369347','Beatrix Potter: A Life in Nature','Linda Lear','2007-01-09'),('9780312425944','The Last of Her Kind','Sigrid Nunez','2006-12-12'),('9780312426439','The Echo Maker','Richard Powers','2007-08-21'),('9780312426453','Limitations (Kindle County Legal Thriller #7)','Scott Turow','2006-11-14'),('9780312426606','The World Made Straight','Ron Rash','2007-03-20'),('9780312427290','The Red Tent','Anita Diamant','2007-08-21'),('9780312872793','Lurulu','Jack Vance','2007-02-06'),('9780312934439','The Damned (Vampire Huntress #6)','L.A. Banks','2007-01-02'),('9780312935757','The Cursed One (Wild Wulfs of London #3)','Ronda Thompson','2006-11-28'),('9780312936600','Sorrow\'s Anthem (Lincoln Perry #2)','Michael Koryta','2007-01-02'),('9780312940683','A Sparrow Falls (Courtney #3)','Wilbur Smith','2007-01-02'),('9780312940980','The Unfortunate Miss Fortunes','Jennifer Crusie/Eileen Dreyer/Anne Stuart','2007-09-10'),('9780312941468','Hot Stuff (Cate Madigan #1)','Janet Evanovich/Leanne Banks','2007-04-03'),('9780312948962','Two for the Dough (Stephanie Plum #2)','Janet Evanovich','2007-06-29'),('9780312990695','The Ambler Warning','Robert Ludlum','2006-11-01'),('9780316000956','Trials of Death (Cirque Du Freak #5)','Darren Shan','2008-01-18'),('9780316010665','Blink: The Power of Thinking Without Thinking','Malcolm Gladwell','2007-04-03'),('9780316013277','The Diviners','Rick Moody','2007-01-02'),('9780316013307','The Truth of the Matter','Robb Forman Dew','2006-11-03'),('9780316013345','Philosophy Made Simple','Robert Hellenga','2007-03-01'),('9780316013949','Step on a Crack (Michael Bennett #1)','James Patterson/Michael Ledwidge','2007-02-06'),('9780316014502','You\'ve Been Warned','James Patterson/Howard Roughan','2007-09-10'),('9780316014533','Story of a Girl','Sara Zarr','2007-01-10'),('9780316014793','The 6th Target (Women\'s Murder Club #6)','James Patterson/Maxine Paetro','2007-05-08'),('9780316017442','The Terror','Dan Simmons','2007-01-08'),('9780316058780','Skylight Confessions','Alice Hoffman','2007-01-01'),('9780316059855','Body Surfing','Anita Shreve','2007-04-24'),('9780316066143','Hollywood Station (Hollywood Station #1)','Joseph Wambaugh','2007-01-03'),('9780316117364','The Quickie','James Patterson/Michael Ledwidge','2007-07-02'),('9780316155601','Saving the World and Other Extreme Sports (Maximum Ride #3)','James Patterson','2007-05-29'),('9780316159791','Cross (Alex Cross #12)','James Patterson','2006-11-13'),('9780316166348','Right Livelihoods: Three Novellas','Rick Moody','2007-06-01'),('9780316640169','A Song Of Stone','Iain Banks','2009-01-01'),('9780321182746','Henry IV Parts I & II','William Shakespeare/Ronald K. Levao','2006-12-01'),('9780321468932','Absolute C++','Walter J. Savitch','2007-03-01'),('9780330312561','Blood Meridian','Cormac McCarthy','2007-08-03'),('9780330397810','Absolutely Normal Chaos','Sharon Creech','2007-09-07'),('9780330442558','The Dolls\' House','Rumer Godden/Christian Birmingham','2006-11-03'),('9780330484770','American Psycho','Bret Easton Ellis','2010-04-21'),('9780340734018','The Stone Monkey (Lincoln Rhyme #4)','Jeffery Deaver','2006-11-01'),('9780340770535','\'Salem\'s Lot','Stephen King','2010-10-06'),('9780340878750','Nightingale\'s Song','Kate Pennington','2006-10-19'),('9780345416261','Pope Joan','Donna Woolfolk Cross','2009-06-09'),('9780345436832','Out of Egypt (Christ the Lord #1)','Anne Rice','2006-10-31'),('9780345443588','Mistral\'s Kiss (Merry Gentry #5)','Laurell K. Hamilton','2006-12-12'),('9780345443601','A Stroke of Midnight (Merry Gentry #4)','Laurell K. Hamilton','2006-11-28'),('9780345453860','Shadow Dance (Buchanan-Renard #6)','Julie Garwood','2006-12-26'),('9780345461414','The Rising Tide (World War II: 1939-1945 #1)','Jeff Shaara','2006-11-07'),('9780345461469','In the Shadow of the Warlock Lord (The Sword of Shannara #1)','Terry Brooks','2009-08-05'),('9780345461612','Running from the Deity (Pip & Flinx #11)','Alan Dean Foster','2006-11-28'),('9780345461674','Judas Unchained (Commonwealth Saga #2)','Peter F. Hamilton','2007-03-27'),('9780345468390','The Chronicles of Riddick','Alan Dean Foster','2007-12-18'),('9780345470034','Changelings','Anne McCaffrey/Elizabeth Ann Scarborough','2006-12-26'),('9780345470041','Maelstrom','Anne McCaffrey/Elizabeth Ann Scarborough','2007-01-31'),('9780345477019','Shield of Thunder (Troy #2)','David Gemmell','2007-03-27'),('9780345477385','Allegiance (Star Wars)','Timothy Zahn','2007-01-30'),('9780345477521','Tempest (Star Wars: Legacy of the Force #3)','Troy Denning','2006-11-28'),('9780345477606','Star Wars: The New Essential Guide to Alien Species','Ann Margaret Lewis/Helen Keier/Chris Trevas/William O\'Connor','2006-10-31'),('9780345478207','Murder at The Washington Tribune (Capital Crimes #21)','Margaret Truman','2006-10-31'),('9780345478252','No Dominion (Joe Pitt #2)','Charlie Huston','2006-12-26'),('9780345479457','Batman: Inferno','Alexander C. Irvine','2006-10-31'),('9780345483195','Queen of the Underworld','Gail Godwin','2007-01-30'),('9780345485281','Tsubasa: RESERVoir CHRoNiCLE Vol. 11','CLAMP/William Flanagan','2006-10-31'),('9780345485328','Tsubasa: RESERVoir CHRoNiCLE Vol. 12','CLAMP/William Flanagan','2007-01-30'),('9780345486585','Drop Dead Gorgeous (Blair Mallory #2)','Linda Howard','2006-11-28'),('9780345487421','Feel the Fear . . . and Do It Anyway','Susan Jeffers','2006-12-26'),('9780345487629','The Devilish Pleasures of a Duke (Boscastle #6)','Jillian Hunter','2007-07-31'),('9780345492791','Air Gear Vol. 2 (Air Gear #2)','Oh! Great/大暮 維人','2006-10-31'),('9780345492807','Air Gear Vol. 3 (Air Gear #3)','Oh! Great/大暮 維人','2007-01-30'),('9780345492814','Air Gear Vol. 4 (Air Gear #4)','Oh! Great/大暮 維人','2007-05-01'),('9780345492869','The Voyage of the Jerle Shannara Trilogy (Voyage of the Jerle Shannara #1-3)','Terry Brooks','2006-11-14'),('9780345494023','The Plague Dogs','Richard Adams','2006-11-28'),('9780345494764','The Making of Star Wars (Star Wars: The Making of #1)','J.W. Rinzler/Peter Jackson','2007-04-24'),('9780373247950','Sierra\'s Homecoming (McKettricks #5)','Linda Lael Miller','2006-11-21'),('9780373285389','First Impressions','Nora Roberts','2006-10-24'),('9780373285433','Rebellion (The MacGregors #0.1)','Nora Roberts','2006-11-21'),('9780373638529','Hydra\'s Ring (Outlanders #39)','James Axler','2006-11-01'),('9780373771370','A Lady At Last (deWarenne Dynasty #7)','Brenda Joyce','2006-11-21'),('9780373771387','Anyone But You','Jennifer Crusie','2006-11-21'),('9780373771660','Venetia','Georgette Heyer','2006-10-24'),('9780373772513','Manhunting','Jennifer Crusie','2007-01-30'),('9780373772520','Reckless Love (MacKenzie-Blackthorn #1)','Elizabeth Lowell','2006-12-26'),('9780373793181','Take on Me (Secret Lives of Daytime Divas #1)','Sarah Mayberry','2007-02-27'),('9780373793242','All Over You (Secret Lives of Daytime Divas #2)','Sarah Mayberry','2007-03-27'),('9780373802517','Divine By Choice (Partholon #2)','P.C. Cast','2006-11-21'),('9780373802661','Fortune\'s Fool (Five Hundred Kingdoms #3)','Mercedes Lackey','2007-02-27'),('9780373802722','Coyote Dreams (Walker Papers #3)','C.E. Murphy','2007-04-24'),('9780374105235','A Long Way Gone: Memoirs of a Boy Soldier','Ishmael Beah','2007-02-13'),('9780374146351','The Echo Maker','Richard Powers','2006-10-17'),('9780374271077','Sylvia','Leonard Michaels/Diane Johnson','2007-05-29'),('9780374530495','Palm-of-the-Hand Stories','Yasunari Kawabata/Lane Dunlop/J. Martin Holman','2006-11-14'),('9780374530716','Sophie\'s World','Jostein Gaarder/Paulette Møller','2007-03-20'),('9780375404931','The Ministry of Special Cases','Nathan Englander','2007-04-24'),('9780375408274','Ralph Ellison: A Biography','Arnold Rampersad','2007-04-24'),('9780375422737','The Good Husband of Zebra Drive (No. 1 Ladies\' Detective Agency #8)','Alexander McCall Smith','2007-04-17'),('9780375507151','Cliffs of Despair: A Journey to Suicide\'s Edge','Tom Hunt','2007-12-18'),('9780375707285','Half a Life','V.S. Naipaul','2009-04-23'),('9780375719011','The Double and The Gambler','Fyodor Dostoyevsky/Richard Pevear/Larissa Volokhonsky','2007-01-16'),('9780375757990','The Basic Works of Aristotle','Aristotle/Richard Peter McKeon/C.D.C. Reeve','2009-08-19'),('9780375759864','The Lost Painting','Jonathan Harr','2006-11-07'),('9780375813757','Love Stargirl (Stargirl #2)','Jerry Spinelli','2007-08-14'),('9780375814686','Terrier (Beka Cooper #1)','Tamora Pierce','2006-10-24'),('9780375829635','Young Warriors: Stories of Strength','Tamora Pierce/Josepha Sherman/Margaret Mahy/Lesley McBain/Mike Resnick/Bruce Rogers/Pamela F. Service/Jan Stirling/Holly Black/Doranna Durgin/India Edghill/Rosemary Edghill/Esther M. Friesner/Laura Anne Gilman/Janis Ian/Brett Hartinge','2006-10-24'),('9780375832215','Tsunamis and Other Natural Disasters (Magic Tree House Research Guide #15)','Mary Pope Osborne/Natalie Pope Boyce/Salvatore Murdocca','2007-02-27'),('9780375833649','Wildwood Dancing (Wildwood #1)','Juliet Marillier','2007-01-23'),('9780375839375','Mayflower Treasure Hunt (A to Z Mysteries: Super Edition #2)','Ron Roy/John Steven Gurney','2007-08-28'),('9780375839566','Are We There Yet?','David Levithan','2008-12-24'),('9780375846724','The Subtle Knife (His Dark Materials #2)','Philip Pullman/Ian Beck','2007-09-01'),('9780375846731','The Amber Spyglass (His Dark Materials #3)','Philip Pullman/Ian Beck','2007-09-01'),('9780375847226','His Dark Materials (His Dark Materials #1-3)','Philip Pullman','2007-04-10'),('9780375947223','His Dark Materials Omnibus (His Dark Materials)','Philip Pullman','2007-04-10'),('9780385333139','Black and Blue','Anna Quindlen','2010-08-25'),('9780385333764','King Rat (Asian Saga #4)','James Clavell','2009-05-19'),('9780385336109','Intuition','Allegra Goodman','2007-03-13'),('9780385337496','Lord John and the Brotherhood of the Blade (Lord John Grey #2)','Diana Gabaldon','2007-08-28'),('9780385338707','Shopaholic & Baby (Shopaholic #5)','Sophie Kinsella','2007-02-27'),('9780385339087','The Client','John Grisham','2010-03-16'),('9780385339476','Beyond Reach (Grant County #6)','Karin Slaughter','2007-07-31'),('9780385340229','Sisters','Danielle Steel','2007-02-13'),('9780385340359','The Glass Books of the Dream Eaters (Miss Temple Doctor Svenson and Cardinal Chang #1)','Gordon Dahlquist','2006-12-15'),('9780385503846','Moral Disorder and Other Stories','Margaret Atwood','2006-10-17'),('9780385509848','Love and Louis XIV: The Women in the Life of the Sun King','Antonia Fraser','2007-03-20'),('9780385512183','You Don\'t Love Me Yet','Jonathan Lethem','2007-05-29'),('9780385515504','Deep Storm (Jeremy Logan #1)','Lincoln Child','2007-03-15'),('9780385517218','Point to Point Navigation','Gore Vidal','2006-11-07'),('9780385517874','Rant','Chuck Palahniuk','2007-05-01'),('9780385609487','The Lollipop Shoes (Chocolat #2)','Joanne Harris','2007-05-02'),('9780385663557','A Short History of Nearly Everything (Illustrated Edition)','Bill Bryson','2010-10-05'),('9780385729369','Forever in Blue: The Fourth Summer of the Sisterhood (Sisterhood #4)','Ann Brashares','2007-01-09'),('9780385733205','Anatomy of a Boyfriend (Anatomy #1)','Daria Snadowsky','2007-01-09'),('9780385733878','Spells & Sleeping Bags (Magic in Manhattan #3)','Sarah Mlynowski','2007-06-26'),('9780385734073','BFF*: Just As Long As We\'re Together / Here\'s to You Rachel Robinson (*Best Friends Forever)','Judy Blume','2007-03-27'),('9780393058260','Power Faith and Fantasy: America in the Middle East 1776 to the Present','Michael B. Oren','2007-01-16'),('9780393058475','Six Frigates: The Epic History of the Founding of the U. S. Navy','Ian W. Toll','2006-10-17'),('9780393061062','Will Eisner\'s New York: Life in the Big City (The New York Tetralogy #1-4)','Will Eisner/Neil Gaiman','2006-10-17'),('9780393061635','The Making of the Fittest: DNA and the Ultimate Forensic Record of Evolution','Sean B. Carroll/Jamie W. Carroll/Leanne M. Olds','2006-10-17'),('9780393062243','Death by Black Hole: And Other Cosmic Quandaries','Neil deGrasse Tyson','2007-01-17'),('9780393062687','Saxons Vikings and Celts: The Genetic Roots of Britain and Ireland','Bryan Sykes','2006-12-17'),('9780393064988','The Richness of Life: The Essential Stephen Jay Gould','Stephen Jay Gould/Paul McGarr/Oliver Sacks/Steven Rose','2007-05-17'),('9780393329292','Identity and Violence: The Illusion of Destiny','Amartya Sen/Λία Βουτσοπούλου','2007-02-17'),('9780393924916','Keats\'s Poetry and Prose','John Keats/Jeffrey N. Cox','2008-08-01'),('9780393926798','A Portrait of the Artist As a Young Man','James Joyce/Walter Hettche/Hans Walter Gabler/John Paul Riquelme/John Mitchel/Michael Davitt/Canon Doyle/Pádraic Pearse/Ignatius of Loyola/Giovanni Pietro Pinamont/Walter Pater/Oscar Wilde/Douglas Hyde/Kenneth Burke/Umberto Eco/Hugh Kenner/Hélène Cixous/Karen Lawrence/Maud Ellmann/Bonnie Kime Scott/Joseph Valente/Marian Eide/Pericles Lewis/Jonathan Mulrooney/J.M. Synge','2007-05-01'),('9780393979169','Passing','Nella Larsen/Carla Kaplan','2007-08-01'),('9780394536491','The Castle in the Forest','Norman Mailer','2007-01-23'),('9780399153693','Treasure of Khan (Dirk Pitt #19)','Clive Cussler/Dirk Cussler','2006-11-28'),('9780399153730','White Lies (Arcane Society #2)','Jayne Ann Krentz','2007-02-01'),('9780399153891','John\'s Story: The Last Eyewitness (The Jesus Chronicles #1)','Tim LaHaye/Jerry B. Jenkins','2006-12-01'),('9780399153938','Book of the Dead (Kay Scarpetta #15)','Patricia Cornwell','2007-11-01'),('9780399154096','The Friday Night Knitting Club (Friday Night Knitting Club #1)','Kate Jacobs','2007-01-18'),('9780399154195','The Navigator (NUMA Files #7)','Clive Cussler/Paul Kemprecos','2007-06-05'),('9780399154249','Double Take (FBI Thriller #11)','Catherine Coulter','2007-06-12'),('9780399154300','Spook Country (Blue Ant #2)','William Gibson','2007-08-07'),('9780399242137','The Eternal Flame (Merlin #11)','T.A. Barron/David Elliot','2006-10-19'),('9780399532979','The Insomnia Answer: A Personalized Program for Identifying and Overcoming the Three Types of Insomnia','Paul Glovinsky/Art Spielman','2006-12-05'),('9780413712004','Boys\' Life & Search and Destroy','Howard Korder','2006-12-01'),('9780413772428','Jesus\' Son','Denis Johnson','2007-01-23'),('9780425201398','Circus of the Damned (Anita Blake Vampire Hunter #3)','Laurell K. Hamilton','2007-01-02'),('9780425210383','Steamed (A Gourmet Girl Mystery #1)','Jessica Conant-Park/Susan Conant','2007-02-06'),('9780425212103','Stake That (Blood Coven Vampire #2)','Mari Mancusi','2006-12-05'),('9780425212592','Prince of Ice (Tale of the Demon World #3)','Emma Holly','2006-11-07'),('9780425212783','Checkmate (Tom Clancy\'s Splinter Cell #3)','David Michaels/Tom Clancy','2006-11-07'),('9780425213100','Shakespeare\'s Champion (Lily Bard #2)','Charlaine Harris','2006-12-05'),('9780425213384','Cause of Death (Kay Scarpetta #7)','Patricia Cornwell/C.J. Critt','2007-01-02'),('9780425213438','Over The Moon (Mageverse #3.5)','Angela Knight/MaryJanice Davidson/Virginia Kantra/Sunny','2007-01-02'),('9780425213476','Demon Angel (The Guardians #1)','Meljean Brook','2008-01-02'),('9780425213612','Wicked Ties (Wicked Lovers #1)','Shayla Black','2007-01-02'),('9780425213650','A Killing in Comics (Jack & Maggie Starr #1)','Max Allan Collins/Terry Beatty','2007-05-01'),('9780425213919','The Good Ghouls\' Guide to Getting Even (Beth Frasier #1)','Julie Kenner','2007-04-03'),('9780425213971','Labyrinth (Languedoc #1)','Kate Mosse','2007-02-06'),('9780425214244','Master of Dragons (Mageverse #5)','Angela Knight','2007-06-05'),('9780425214435','Eyes of Prey (Lucas Davenport #3)','John Sandford','2007-03-06'),('9780425214596','Darkfall','Dean Koontz','2007-02-06'),('9780425214763','At Risk (Winston Garano #1)','Patricia Cornwell','2007-04-03'),('9780425214923','Fox Evil','Minette Walters','2006-11-07'),('9780425215289','Goddess of Love (Goddess Summoning #5)','P.C. Cast','2007-06-05'),('9780425215388','Demons Are Forever (Demon-Hunting Soccer Mom #3)','Julie Kenner','2007-07-03'),('9780425216026','New Moon (Moon #6)','Rebecca York','2007-03-06'),('9780425217245','The Harlequin (Anita Blake Vampire Hunter #15)','Laurell K. Hamilton','2007-06-05'),('9780435122218','Danny the Champion of the World','Roald Dahl','2009-09-01'),('9780435124090','The Handmaid\'s Tale','Margaret Atwood','2009-09-01'),('9780439023313','Shipwreck (Island I)','Gordon Korman/Holter Graham','2007-02-01'),('9780439700887','Lady Friday (The Keys to the Kingdom #5)','Garth Nix','2007-03-01'),('9780439862691','Ghosthunters and the Muddy Monster of Doom! (Ghosthunters #4)','Cornelia Funke/Helena Ragg-Kirkby','2007-04-01'),('9780439872461','The Trouble With Violet','Anne Mazer/Bill Brown','2007-07-01'),('9780439872478','Violet Makes A Splash (Sister Magic)','Anne Mazer/Bill Brown','2007-07-01'),('9780439890281','This Is Push: New Stories from the Edge','David Levithan/Patricia McCormick/Matthue Roth/Kevin Waltman/Samantha Schutz/Coe Booth/Eddie de Oliveira/Tanuja Desai Hidier/Kevin Brooks/Chris Wooding/Markus Zusak/Brian James/Kristen Kemp/Eireann Corrigan/Christopher Krovatin/Billy Merrell','2007-02-01'),('9780439896184','The Case Of The Kidnapped Candy (Jigsaw Jones Mystery #30)','James Preller/R.W. Alley/Jamie Smith','2007-01-01'),('9780439933384','Awakening (Chasing Yesterday #1)','Robin Wasserman','2007-05-01'),('9780439933414','Betrayal (Chasing Yesterday #2)','Robin Wasserman','2007-07-01'),('9780439944397','Hello! Is That Grandma?','Ian Whybrow/Deborah Allwright','2007-05-07'),('9780440184621','Tai-Pan (Asian Saga #2)','James Clavell','2009-09-01'),('9780440236702','Tell No One','Harlan Coben','2009-08-25'),('9780440241911','Shopaholic and Sister (Shopaholic #4)','Sophie Kinsella','2006-11-28'),('9780440243069','The Gilded Web (Web #1)','Mary Balogh','2006-11-28'),('9780440243250','Blessings','Belva Plain','2010-09-15'),('9780441013722','Dragon\'s Eye (Stonefort #1)','James A. Hetley','2006-10-31'),('9780441014347','Cursor\'s Fury (Codex Alera #3)','Jim Butcher','2006-12-05'),('9780441014439','Harrowing the Dragon','Patricia A. McKillip','2006-11-07'),('9780441014651','Solstice Wood (Winter Rose #2)','Patricia A. McKillip','2007-01-02'),('9780441014835','Cygnet (Cygnet #1-2)','Patricia A. McKillip','2007-03-06'),('9780441014897','Magic Bites (Kate Daniels #1)','Ilona Andrews','2007-03-27'),('9780441014996','The Accidental Time Machine','Joe Haldeman','2007-08-07'),('9780446500036','Kushiel\'s Justice (Imriel\'s Trilogy #2)','Jacqueline Carey','2007-06-14'),('9780446526418','In the Royal Manner : Expert Advice on Etiquette and Entertaining from the Former Butler to Diana Princess of Wales','Paul Burrell','2008-12-14'),('9780446528054','Dear John','Nicholas Sparks','2006-10-30'),('9780446531092','The Collectors (Camel Club #2)','David Baldacci','2006-10-18'),('9780446532433','True Believer','Nicholas Sparks','2009-07-01'),('9780446579674','Wild Fire (John Corey #4)','Nelson DeMille','2006-11-06'),('9780446580281','The Wheel of Darkness (Pendergast #8)','Douglas Preston/Lincoln Child','2007-08-28'),('9780446613323','The Younger Gods (The Dreamers #4)','David Eddings/Leigh Eddings','2007-03-01'),('9780446613378','Honeymoon (Honeymoon #1)','James Patterson/Howard Roughan','2007-01-01'),('9780446617673','Must Love Dragons (Immortally Sexy #2)','Stephanie Rowe','2006-11-01'),('9780446618472','The Raven Prince (Princes Trilogy #1)','Elizabeth Hoyt','2006-11-01'),('9780446618670','The Alibi','Sandra Brown','2006-11-01'),('9780446618748','Kitty Takes a Holiday (Kitty Norville #3)','Carrie Vaughn','2007-04-01'),('9780446618762','The 36-Hour Day: A Family Guide to Caring for Persons with Alzheimer Disease Related Dementing Illnesses and Memory Loss in Later Life','Nancy L. Mace/Peter V. Rabins','2006-11-01'),('9780446697385','The Lost Blogs: From Jesus to Jim Morrison--The Historically Inaccurate and Totally Fictitious Cyber Diaries of Everyone Worth Knowing','Paul Davidson','2009-11-29'),('9780446699006','The Coming Economic Collapse: How You Can Thrive When Oil Costs $200 a Barrel','Stephen Leeb/Glen C. Strathy','2007-02-01'),('9780446699075','The Arctic Event (Covert-One #7)','James H. Cobb/Robert Ludlum','2007-09-26'),('9780448439044','Who Was William Shakespeare?','Celeste Davidson Mannis/John O\'Brien','2006-12-28'),('9780448444826','Who Was Anne Frank?','Ann Abramson/Nancy Harrison','2007-01-18'),('9780451205360','The Richest Man in Babylon','George S. Clason','2008-02-01'),('9780451219244','Promise Me (Myron Bolitar #8)','Harlan Coben','2007-03-27'),('9780451219596','Jackdaws','Ken Follett','2006-12-05'),('9780451220721','The Old Wine Shades (Richard Jury #20)','Martha Grimes','2007-03-06'),('9780451221254','Bright Lights Big Ass','Jen Lancaster','2007-05-01'),('9780451412331','A Garden Of Vipers (Carson Ryder #3)','Jack Kerley','2007-02-06'),('9780451412355','Lover Revealed (Black Dagger Brotherhood #4)','J.R. Ward','2007-03-06'),('9780451461636','Thin Air (Weather Warden #6)','Rachel Caine','2007-08-07'),('9780451530172','Of Human Bondage','W. Somerset Maugham/Benjamin DeMott/Maeve Binchy','2007-01-02'),('9780451530301','The Rainbow','D.H. Lawrence/Daphne Merkin','2009-05-05'),('9780451530370','The Major Plays','Anton Chekhov/Ann Dunnigan/Rosamund Bartlett/Robert Brustein','2006-12-05'),('9780451530387','The Autobiography of Andrew Carnegie and the Gospel of Wealth','Andrew Carnegie/Gordon Hutner','2006-11-07'),('9780451530462','Howards End','E.M. Forster/Benjamin DeMott/Regina Marler','2007-11-06'),('9780452287655','The Black Book of Hollywood Beauty Secrets','Kym Douglas/Cindy Pearlman','2006-12-01'),('9780452287983','Purity of Blood (Adventures of Captain Alatriste #2)','Arturo Pérez-Reverte/Margaret Sayers Peden','2006-11-28'),('9780452288195','War and Peace and War: The Rise and Fall of Empires','Peter Turchin','2007-02-27'),('9780465002603','Basic Economics: A Common Sense Guide to the Economy','Thomas Sowell','2007-04-03'),('9780465016907','The Drama of the Gifted Child: The Search for the True Self','Alice Miller/Ruth Ward','2008-07-22'),('9780470043608','Crash Proof: How to Profit from the Coming Economic Collapse','Peter D. Schiff/John Downes','2007-02-01'),('9780470045299','eBay for Dummies','Marsha Collier','2006-10-30'),('9780470055540','Fundamentals of Heat and Mass Transfer [with IHT/FEHT 3.0 CD with User Guide Set]','Frank P. Incropera/David P. DeWitt','2006-10-30'),('9780470096000','PHP & MySQL For Dummies','Janet Valade','2006-12-01'),('9780471782476','The Science of Stephen King: From \'Carrie\' to \'Cell \' The Terrifying Truth Behind the Horror Master\'s Fiction','Lois H. Gresh/Robert E. Weinberg','2007-08-01'),('9780486452357','Diary of a Madman and Other Stories','Nikolai Gogol','2006-12-29'),('9780486455594','Eight Cousins (Eight Cousins #1)','Louisa May Alcott','2007-02-27'),('9780505525154','Call of the Moon','Ronda Thompson','2009-01-01'),('9780515141672','Valley Of Silence (Circle Trilogy #3)','Nora Roberts','2006-11-01'),('9780515142211','Carpe Demon (Demon-Hunting Soccer Mom #1)','Julie Kenner','2006-10-31'),('9780520251090','Storming the Gates of Paradise: Landscapes for Politics','Rebecca Solnit','2007-06-18'),('9780520251748','Gardening with a Wild Heart: Restoring California\'s Native Landscapes at Home','Judith Larner Lowry','2007-03-19'),('9780521293730','The Winter\'s Tale','William Shakespeare/Susan Snyder/Deborah T. Curren-Aquino','2007-03-01'),('9780521402408','All the Sad Young Men (Works of F. Scott Fitzgerald)','F. Scott Fitzgerald/James L.W. West III','2007-01-29'),('9780521674935','Language and Mind','Noam Chomsky','2006-12-01'),('9780525949770','The Deception of the Emerald Ring (Pink Carnation #3)','Lauren Willig','2006-12-01'),('9780525949787','Burning Bright','Tracy Chevalier','2007-03-20'),('9780552152112','Never Go Back','Robert Goddard','2006-10-23'),('9780553011807','The Martian Chronicles','Ray Bradbury/Ian Miller','2006-12-01'),('9780553210590','The Turn of the Screw and Other Short Fiction','Henry James/R.W.B. Lewis','2008-11-01'),('9780553213553','Maggie: A Girl of the Streets and Other Short Fiction','Stephen Crane/Jayne Anne Phillips','2006-11-01'),('9780553297607','The Gap Into Vision: Forbidden Knowledge (Gap #2)','Stephen R. Donaldson','2010-07-21'),('9780553297836','A Whole New Light','Sandra Brown','2008-08-26'),('9780553562606','The Gap Into Power: A Dark and Hungry God Arises (Gap #3)','Stephen R. Donaldson','2009-10-21'),('9780553578171','Jane and the Wandering Eye (Jane Austen Mysteries #3)','Stephanie Barron','2009-11-03'),('9780553585810','Fifty Degrees Below (Science in the Capital #2)','Kim Stanley Robinson','2007-01-30'),('9780553586077','The Secret on Ararat (Babylon Rising #2)','Tim LaHaye/Bob Phillips','2006-11-28'),('9780553588118','Prince of the Blood (Krondor\'s Sons #1)','Raymond E. Feist','2007-12-18'),('9780553588194','Exit Strategy (Nadia Stafford #1)','Kelley Armstrong','2007-06-26'),('9780553588262','Forever Odd (Odd Thomas #2)','Dean Koontz','2006-10-31'),('9780553803136','Sixty Days and Counting (Science in the Capital #3)','Kim Stanley Robinson','2007-02-27'),('9780553804089','Temperatures Rising','Sandra Brown','2006-11-28'),('9780553804324','Hide (Detective D.D. Warren #2)','Lisa Gardner','2007-01-30'),('9780553804805','Brother Odd (Odd Thomas #3)','Dean Koontz','2006-11-28'),('9780553804812','The Good Guy','Dean Koontz','2007-05-29'),('9780563486497','Doctor Who: The Inside Story','Gary Russell','2006-10-26'),('9780571224388','The Unbearable Lightness of Being','Milan Kundera/Michael Henry Heim','2009-10-27'),('9780571225408','When We Were Orphans','Kazuo Ishiguro','2007-12-01'),('9780573014673','The Unexpected Guest: A Play In Two Acts','Agatha Christie','2010-11-12'),('9780573051333','Fantastic Mr Fox','David Wood/Roald Dahl','2011-01-05'),('9780573650963','The Phantom Tollbooth: A Children\'s Play in Two Acts','Susan Nanus/Norton Juster','2011-01-12'),('9780575073432','The Dream Master','Roger Zelazny','2010-12-31'),('9780586210697','The Curse of the Mistwraith (Wars of Light and Shadow #1)','Janny Wurts','2009-05-01'),('9780590396431','Street Magic (The Circle Opens #2)','Tamora Pierce','2006-11-15'),('9780596527082','MySQL Cookbook','Paul DuBois','2006-12-04'),('9780596527310','Rails Cookbook: Recipes for Rapid Web Development with Ruby','Rob Orsini','2007-01-01'),('9780596527334','CSS: The Definitive Guide','Eric A. Meyer','2006-11-01'),('9780596527419','CSS Cookbook','Christopher Schmitt','2006-10-24'),('9780618391011','The J.R.R. Tolkien Companion and Guide Volume 2: Reader\'s Guide','Wayne G. Hammond/Wayne G. Hammond','2006-11-02'),('9780618391028','The J.R.R. Tolkien Companion and Guide Volume 1: Chronology','Christina Scull/Wayne G. Hammond','2006-11-02'),('9780618391134','The J.R.R. Tolkien Companion and Guide','Christina Scull/Wayne G. Hammond','2006-11-02'),('9780618433254','William James: In the Maelstrom of American Modernism','Robert D. Richardson Jr.','2006-11-09'),('9780618680009','The God Delusion','Richard Dawkins','2006-10-18'),('9780618772452','The Elements of Visual Style: The Basics of Print Design for Every PC and Mac User','Robert W. Harris','2007-05-01'),('9780618894642','The Children of Húrin','J.R.R. Tolkien/Christopher Tolkien/Alan Lee','2007-04-17'),('9780670037865','Dust (Richard Jury #21)','Martha Grimes','2007-02-01'),('9780670038039','The Aeneid','Virgil/Robert Fagles/Bernard Knox','2006-11-02'),('9780670038169','Paula Spencer','Roddy Doyle','2007-01-01'),('9780670038381','The Mistress\'s Daughter','A.M. Homes','2007-04-05'),('9780670038718','First Among Sequels (Thursday Next #5)','Jasper Fforde','2007-07-24'),('9780671728205','Night of the Fox (Dougal Munro and Jack Carter #1)','Jack Higgins','2008-01-25'),('9780674022874','The Writer of Modern Life: Essays on Charles Baudelaire','Walter Benjamin/Michael W. Jennings/Rodney Livingstone/Edmund F.N. Jephcott/Harry Zohn/Howard Eiland','2006-11-01'),('9780674996236','The Shield. Catalogue of Women. Other Fragments. (Hesiod II)','Hesiod/Glenn W. Most','2007-03-01'),('9780679454687','The Lay of the Land','Richard Ford','2006-10-24'),('9780679643524','Darkness Visible: A Memoir of Madness','William Styron','2007-01-23'),('9780679729969','Einstein\'s Monsters','Martin Amis/Erroll McDonald','2011-01-05'),('9780679746324','Mao: The Unknown Story','Jung Chang/Jon Halliday','2006-11-14'),('9780679776314','The Road to Reality: A Complete Guide to the Laws of the Universe','Roger Penrose','2007-01-09'),('9780679781493','Less Than Zero','Bret Easton Ellis','2010-06-09'),('9780679890546','The Empty Envelope (A to Z Mysteries #5)','Ron Roy/John Steven Gurney','2009-09-09'),('9780679890706','Earthquake in the Early Morning (Magic Tree House #24)','Mary Pope Osborne/Salvatore Murdocca','2010-06-15'),('9780689869037','Invisible','Pete Hautman','2006-11-28'),('9780689870163','Michael\'s Golden Rules','Deloris Jordan/Roslyn M. Jordan/Michael Jordan/Kadir Nelson','2007-01-23'),('9780689871313','The Nixie\'s Song (Beyond the Spiderwick Chronicles #1)','Tony DiTerlizzi/Holly Black','2007-09-18'),('9780689877995','If: A Father\'s Advice to His Son','Rudyard Kipling/Charles R. Smith Jr.','2007-03-27'),('9780691096100','The Essential John Nash','John F. Nash/Harold William Kuhn/Sylvia Nasar','2007-03-18'),('9780701176082','The Middle Sea: A History of the Mediterranean','John Julius Norwich','2006-10-31'),('9780716799566','Economics','Paul Krugman/Robin Wells','2007-04-06'),('9780723258056','Beatrix Potter\'s Journal','Beatrix Potter','2006-10-19'),('9780723258735','The Tale of Peter Rabbit','Beatrix Potter','2006-12-28'),('9780727891600','Touchy and Feely (Sissy Sawyer #1)','Graham Masterton','2007-02-01'),('9780727891624','The Prodigal Son (Roger the Chapman #15)','Kate Sedley','2007-02-01'),('9780736402385','Walt Disney\'s Peter Pan (A Little Golden Book)','Walt Disney Company/Al Dempster','2007-01-23'),('9780738543390','Cypress Gardens (Images of America: Florida)','Mary M. Flekke/Sarah E. MacDonald/Randall M. MacDonald','2006-11-27'),('9780738544922','Center City Philadelphia in the 19th Century (Images of America: Pennsylvania)','Library Company of Philadelphia','2006-10-23'),('9780738546780','Selections from the Oakland Tribune Archives (Images of America: California)','Annalee Allen','2006-10-30'),('9780738709123','June Bug (Murder-by-Month Mystery #2)','Jess Lourey/J.H. Lourey/Jessica Lourey','2007-03-08'),('9780739318652','Hundred-Dollar Baby (Spenser #34)','Robert B. Parker/Joe Mantegna','2006-10-24'),('9780739332931','The Good Guy','Dean Koontz/Richard Ferrrone','2007-05-29'),('9780739340677','Bad Luck and Trouble (Jack Reacher #11)','Lee Child','2007-05-15'),('9780739341414','Icebound','David Axton/Dean Koontz/Paul Michael','2007-03-06'),('9780739344248','Point Of Impact (Bob Lee Swagger #1)','Stephen Hunter/Beau Bridges','2007-01-09'),('9780739474792','Enchantment: The Life of Audrey Hepburn','Donald Spoto','2007-04-02'),('9780743231534','Shampoo Planet','Douglas Coupland','2008-03-01'),('9780743247788','The Used World','Haven Kimmel','2007-09-18'),('9780743252218','Sea of Thunder: Four Commanders and the Last Great Naval Campaign 1941-1945','Evan Thomas','2006-11-07'),('9780743260220','The Quilter\'s Homecoming (Elm Creek Quilts #10)','Jennifer Chiaverini','2007-04-10'),('9780743260947','The Sleeping Doll (Kathryn Dance #1)','Jeffery Deaver','2007-06-05'),('9780743264730','Einstein: His Life and Universe','Walter Isaacson','2007-04-10'),('9780743264914','I Heard That Song Before','Mary Higgins Clark','2007-04-03'),('9780743272070','The Secret Life of Houdini: The Making of America\'s First Superhero','William Kalush/Larry Sloman','2006-10-31'),('9780743272506','The Boleyn Inheritance (The Plantagenet and Tudor Novels #10)','Philippa Gregory','2006-12-05'),('9780743285001','She Got Up Off the Couch: And Other Heroic Acts from Mooreland Indiana','Haven Kimmel','2007-02-01'),('9780743285025','Palestine: Peace Not Apartheid','Jimmy Carter','2006-11-30'),('9780743287968','Perfect Girls Starving Daughters: The Frightening New Normalcy of Hating Your Body','Courtney E. Martin','2007-04-17'),('9780743289351','Play Dirty','Sandra Brown','2007-08-14'),('9780743289412','Lisey\'s Story','Stephen King','2006-10-24'),('9780743292436','Love Smart: Find the One You Want--Fix the One You Got','Phillip C. McGraw','2006-12-26'),('9780743292498','True Evil','Greg Iles','2006-12-12'),('9780743292542','You: On a Diet: The Owner\'s Manual for Waist Management','Michael F. Roizen/Mehmet C. Oz','2006-10-31'),('9780743292641','It\'s All Too Much: An Easy Plan for Living a Richer Life with Less Stuff','Peter Walsh','2007-01-01'),('9780743296168','The Good House','Tananarive Due','2006-12-01'),('9780743299633','Lincoln at Gettysburg: The Words That Remade America','Garry Wills','2006-11-14'),('9780743471237','Scales of the Serpent (Diablo: The Sin War #2)','Richard A. Knaak','2007-03-27'),('9780743487696','My Antonia (Great Plains trilogy #3)','Willa Cather/Alyssa Harad','2009-03-04'),('9780743491693','Spock: The Fire and the Rose (Star Trek: Crucible #2)','David R. George III','2006-11-28'),('9780743491709','Kirk: The Star to Every Wandering (Star Trek: Crucible #3)','David R. George III','2007-02-27'),('9780743496711','The Tenth Circle','Jodi Picoult','2006-10-24'),('9780743496728','Nineteen Minutes','Jodi Picoult','2007-03-05'),('9780743499484','The Dead Yard (Michael Forsythe #2)','Adrian McKinty','2006-12-26'),('9780743518369','Pimsleur German Level 1 CD: [Lessons 1-30]','Pimsleur Language Programs','2010-04-01'),('9780747553564','How it Ended','Jay McInerney','2009-08-06'),('9780747559047','Riddley Walker','Russell Hoban','2010-02-01'),('9780747573623','Harry Potter and the Prisoner of Azkaban (Harry Potter #3)','J.K. Rowling','2008-07-01'),('9780747573647','The Little Friend','Donna Tartt','2007-06-01'),('9780751515572','The Calvin And Hobbes: Tenth Anniversary Book','Bill Watterson','2008-02-01'),('9780751531244','Spencerville','Nelson DeMille','2008-03-01'),('9780751533453','The White Road (Morland Dynasty #28)','Cynthia Harrod-Eagles','2006-11-01'),('9780751533934','The Shrouded Walls','Susan Howatch','2010-12-31'),('9780752817002','Lullaby Town (Elvis Cole #3)','Robert Crais','2008-04-01'),('9780752849195','Darkest Fear (Myron Bolitar #7)','Harlan Coben','2008-11-08'),('9780752861746','The Postman Always Rings Twice','James M. Cain','2010-09-09'),('9780753821862','Razor\'s Edge: The Unofficial History of the Falklands War','Hugh Bicheno/Richard Holmes','2007-03-01'),('9780755321384','After the Mourning (Francis Hancock #2)','Barbara Nadel','2006-12-28'),('9780756403584','Shadowplay (Shadowmarch #2)','Tad Williams','2007-03-06'),('9780756404055','Time Twisters','Jean Rabe/Martin H. Greenberg/Stephen Leigh/Gene DeWeese/Joe Masdon/Donald J. Bingle/Skip Williams/Penny Williams/Pierce Askegren/Nancy Virginia Varian/Wes Nicholson/John Helfers/Chris Pierson/Harry Turtledove/Kevin J. Anderson/Robert E. Vardeman/Jackie Cassada/James M. Ward/Jon L. Breen/Linda P. Baker','2007-01-02'),('9780756404062','Crown of Stars (Crown of Stars #7)','Kate Elliott','2007-01-02'),('9780756404321','Feast of Souls (The Magister Trilogy #1)','C.S. Friedman','2007-01-02'),('9780756623432','You Can Draw: Star Wars','Bonnie Burton/Matt Busch/Tom Hodges','2007-01-15'),('9780756630522','Star Wars: The Ultimate Visual Guide','Daniel Wallace/Ryder Windham','2007-03-19'),('9780757305450','Read for Your Life: 11 Ways to Better Yourself Through Books','Pat Williams/Peggy Matthews Rose','2007-06-01'),('9780758202956','Cherry Cheesecake Murder (Hannah Swensen #8)','Joanne Fluke','2007-02-01'),('9780758210180','Key Lime Pie Murder (Hannah Swensen #9)','Joanne Fluke','2007-07-31'),('9780760328248','Jimmy Stewart: Bomber Pilot','Starr Smith/Walter Cronkite','2006-11-15'),('9780760329634','The John Deere Two-Cylinder Tractor Encyclopedia: The Complete Model-by-Model History','Don Macmillan/Wayne G. Broehl Jr.','2007-05-15'),('9780761143697','How to Spell Like a Champ','Barrie Trinkle/Paige Kimble/Carolyn Andrews','2006-11-16'),('9780761555483','The Elder Scrolls IV: Oblivion -- Revised & Expanded (Xbox360 PC) (Prima Official Game Guide)','Peter Olafson','2007-09-10'),('9780761555520','Eragon: Prima Official Game Guide','Prima Publishing','2006-11-14'),('9780763625290','The Tale of Despereaux','Kate DiCamillo/Timothy Basil Ering','2008-09-09'),('9780763628000','Judy Moody Declares Independence (Judy Moody #6)','Megan McDonald/Peter H. Reynolds','2010-01-26'),('9780763628109','The Dragon\'s Eye (Dragonology Chronicles #1)','Dugald A. Steer/Douglas Carrel','2006-11-14'),('9780763630140','Mercy Watson: Princess in Disguise','Kate DiCamillo/Chris Van Dusen','2007-07-10'),('9780763631604','Beauty and the Beast','Max Eilenberg/Angela Barrett','2006-11-14'),('9780763632069','Beowulf','Michael Morpurgo/Michael Foreman','2006-10-24'),('9780764134289','American Sign Language The Easy Way','David A. Stewart/Jessalyn Little/Elizabeth Stewart','2006-11-01'),('9780764136313','The Night at the Museum','Milan Trenc','2006-11-01'),('9780765304094','Stork Naked (Xanth #30)','Piers Anthony','2006-10-31'),('9780765309969','Blade of Fortriu (The Bridei Chronicles #2)','Juliet Marillier','2006-10-31'),('9780765311801','Glass Soup (Vincent Ettrich #2)','Jonathan Carroll','2006-11-28'),('9780765312938','Sandworms of Dune (Dune Chronicles #8)','Brian Herbert/Kevin J. Anderson','2007-08-07'),('9780765314239','They Came from Below','Blake Nelson','2007-06-26'),('9780765316110','Empire (Empire #1)','Orson Scott Card','2006-11-28'),('9780765316646','Soldier of Sidon (Latro #3)','Gene Wolfe','2006-10-31'),('9780765316929','Voices From the Street','Philip K. Dick','2007-01-23'),('9780765348753','The Dark Mirror (The Bridei Chronicles #1)','Juliet Marillier','2007-03-06'),('9780765357663','Hidden Talents (Talents #1)','David Lubar','2007-02-06'),('9780767906289','The Hunt for Zero Point: Inside the Classified World of Antigravity Technology','Nick Cook','2007-12-18'),('9780767919371','The Life and Times of the Thunderbolt Kid: A Memoir','Bill Bryson','2007-09-25'),('9780767923064','Leonardo\'s Swans','Karen Essex','2007-01-09'),('9780771065262','The View From Castle Rock','Alice Munro','2008-11-19'),('9780778323563','Cold As Ice (Ice #2)','Anne Stuart','2006-10-24'),('9780778324317','Two Alone','Erin St. Claire/Sandra Brown','2007-02-27'),('9780778324782','Ice Blue (Ice #3)','Anne Stuart','2007-03-27'),('9780785100492','Marvels','Kurt Busiek/Alex Ross','2007-01-10'),('9780785110675','New X-Men Volume 4: Riot at Xavier\'s','Grant Morrison/Frank Quitely','2006-11-15'),('9780785113454','New X-Men Volume 7: Here Comes Tomorrow','Grant Morrison/Marc Silvestri','2006-11-15'),('9780785113799','Runaways Vol. 1: Pride and Joy','Brian K. Vaughan/Adrian Alphona','2006-12-06'),('9780785116776','Astonishing X-Men Volume 2: Dangerous','Joss Whedon/John Cassaday','2007-06-27'),('9780785117599','Astonishing X-Men Volume 3: Torn','Joss Whedon/John Cassaday','2007-02-14'),('9780785122586','Iron Man: Extremis','Warren Ellis/Adi Granov','2007-02-14'),('9780785123262','New X-Men: Omnibus','Grant Morrison/Marc Silvestri/Chris Bachalo/John Paul Leon/Frank Quitely/Leinil Francis Yu/Igor Kordey/Ethan Van Sciver/Keron Grant/Tom Derenick/Phil Jimenez','2006-12-06'),('9780785123712','Ultimate Annuals Volume 2','Charlie Huston/Mike Carey/Brian Michael Bendis/Robert Kirkman/Mike Deodato/Ryan Sook/Stuart Immonen/Frazier Irving','2007-02-07'),('9780785124979','Spider-Man: Saga of the Sandman','Stan Lee/Roy Thomas/Tom DeFalco/Kurt Busiek/Steve Ditko/Jack Kirby/Herb Trimpe/Ross Andru','2007-03-21'),('9780785127222','Magician: Apprentice Volume 1 (Raymond E. Feist\'s Magician: Apprentice #1)','Raymond E. Feist/Michael Avon Oeming/Bryan J.L. Glass/Ryan Stegman','2007-05-30'),('9780785127239','Laurell K. Hamilton\'s Anita Blake Vampire Hunter: Guilty Pleasures vol 1','Laurell K. Hamilton/Stacie Ritchie/Jessica Ruffner/Brett Booth','2007-07-18'),('9780785814535','Complete Tales and Poems','Edgar Allan Poe','2009-11-29'),('9780785821083','Winchester Shotguns','Dennis Adler/R.L. Wilson','2008-05-15'),('9780786160440','A World Lit Only by Fire','William Manchester/Barrett Whitener','2007-03-01'),('9780786168477','Howards End','E.M. Forster/Nadia May','2007-06-01'),('9780786718610','Lover of Unreason: Assia Wevill Sylvia Plath\'s Rival and Ted Hughes\' Doomed Love','Yehuda Koren/Eilat Negev','2006-12-26'),('9780786719051','The Mammoth Book of Golden Age Science Fiction: Ten Classic Stories from the Birth of Modern Science Fiction Writing','Isaac Asimov/Charles G. Waugh','2007-01-24'),('9780786849604','Half Moon Investigations','Eoin Colfer','2007-04-01'),('9780786855032','Legend of the Worst Boy in the World','Eoin Colfer/Glenn McCoy','2007-05-01'),('9780786893966','Lipstick Jungle','Candace Bushnell','2007-04-01'),('9780786940752','Road of the Patriarch (Forgotten Realms: The Sellswords #3)','R.A. Salvatore','2006-12-20'),('9780786942701','Night of Long Shadows (Eberron: Inquisitives #2)','Paul Crilley','2007-05-08'),('9780786942886','The Best of the Realms: The Stories of Elaine Cunningham (Forgotten Realms: The Best of the Realms #3)','Elaine Cunningham','2007-05-08'),('9780786943333','Dragons of the Highlord Skies (Dragonlance: The Lost Chronicles #2)','Margaret Weis/Tracy Hickman','2007-10-23'),('9780787982379','Killing the Imposter God: Philip Pullman\'s Spiritual Imagination in His Dark Materials','Donna Freitas/Jason Edward King','2007-09-01'),('9780792253143','National Geographic Field Guide to the Birds of North America','National Geographic Society/Jon L. Dunn/Jonathan Alderfer','2006-11-23'),('9780792270324','Park Profiles: Grand Canyon Country (Park Profiles)','National Geographic Society','2010-01-19'),('9780794503291','Gulliver\'s Travels','Gill Harvey/Jonathan Swift','2008-01-29'),('9780802143075','Rock \'n\' Roll','Tom Stoppard','2007-05-10'),('9780802829665','A Time to Embrace: Same-Gender Relationships in Religion Law and Politics','William Stacy Johnson','2006-11-01'),('9780805081459','Travels in the Scriptorium','Paul Auster','2007-01-23'),('9780805209068','Diaries 1910-1923','Franz Kafka/Max Brod/Joseph Kresh/Martin Greenberg','2009-01-21'),('9780805212075','The Zürau Aphorisms','Franz Kafka/Michael Hofmann/Geoffrey Brock/Roberto Calasso','2006-12-26'),('9780807085738','When the Rivers Run Dry: Water - The Defining Crisis of the Twenty-first Century','Fred Pearce','2007-03-15'),('9780807831090','Jasmine and Stars: Reading More Than Lolita in Tehran','Fatemeh Keshavarz','2007-03-05'),('9780808553038','The Egypt Game','Zilpha Keatley Snyder','2009-07-07'),('9780809095049','Malcolm X: A Graphic Biography','Andrew Helfer/Randy DuBurke','2006-11-14'),('9780810111134','Billy Budd Sailor and Other Uncompleted Writings','Herman Melville','2007-12-15'),('9780811201353','Safe Conduct: An Autobiography and Other Writings','Boris Pasternak/B. Deutsch','2009-04-14'),('9780811833462','Stylepedia: A Guide to Graphic Design Mannerisms Quirks and Conceits','Steven Heller/Louise Fili','2006-11-09'),('9780811855266','Edie: Girl on Fire','David Weisman/Melissa Painter','2006-11-02'),('9780811856980','San Francisco Ballet at Seventy-Five','Janice Ross/Allan Ulrich/Brigitte Lefevre','2007-11-12'),('9780812696066','The Beatles and Philosophy: Nothing You Can Think that Can\'t Be Thunk','Michael Baur/Steven Baur/James S. Spiegel','2006-10-25'),('9780812696110','Bullshit and Philosophy','Gary L. Hardcastle/George A. Reisch','2006-10-25'),('9780812972528','The Family That Couldn\'t Sleep: A Medical Mystery','D.T. Max','2007-09-11'),('9780812976144','The Alienist (Dr. Laszlo Kreizler #1)','Caleb Carr','2006-10-24'),('9780812977363','A Man Without a Country','Kurt Vonnegut Jr./Daniel Simon','2007-01-16'),('9780820328072','A Gravity\'s Rainbow Companion: Sources and Contexts for Pynchon\'s Novel','Steven Weisenburger','2006-11-01'),('9780821778067','This Christmas','Jane Green/Jennifer Coburn/Liz Ireland','2009-10-01'),('9780821780572','My Wicked Pirate','Rona Sharon','2006-11-01'),('9780823006571','Classical Drawing Atelier: A Contemporary Guide to Traditional Studio Practice','Juliette Aristides','2006-11-01'),('9780826418975','Beyond the Chains of Illusion: My Encounter with Marx and Freud','Erich Fromm/Rainer Funk','2006-12-17'),('9780826493958','Culture of Fear Revisited','Frank Furedi','2006-12-26'),('9780830743070','Let Justice Roll Down','John M. Perkins/Shane Claiborne','2006-12-06'),('9780830828265','The Hermeneutical Spiral: A Comprehensive Introduction to Biblical Interpretation','Grant R. Osborne','2006-12-01'),('9780842360616','Kingdom Come: The Final Victory (Left Behind #13)','Tim LaHaye/Jerry B. Jenkins','2007-04-03'),('9780843121315','Little Miss Birthday','Roger Hargreaves/Adam Hargreaves','2007-01-11'),('9780843124927','Mr. Jelly and the Pirates','Roger Hargreaves/Adam Hargreaves','2007-05-10'),('9780847826698','Tom Ford','Graydon Carter/Tom Ford/Anna Wintour/Bridget Foley','2008-11-04'),('9780849911880','The Grace Awakening: Believing in Grace Is One Thing. Living it Is Another','Charles R. Swindoll','2006-11-19'),('9780849918728','Lead Like Jesus: Lessons from the Greatest Leadership Role Model of All Time','Kenneth H. Blanchard/Phil Hodges','2007-03-01'),('9780859653725','Dissecting Marilyn Manson','Gavin Baddeley','2007-10-01'),('9780871139603','Suffer the Little Children (Commissario Brunetti #16)','Donna Leon','2007-05-10'),('9780871401540','Selected Poems','E.E. Cummings/Richard S. Kennedy','2007-08-17'),('9780872208209','Apollodorus\' Library and Hyginus\' Myths: Two Handbooks of Greek Mythology','Apollodorus/Hyginus/R. Scott Smith/Stephen M. Trzaskoma','2007-03-01'),('9780872864757','A Power Governments Cannot Suppress','Howard Zinn','2006-12-01'),('9780875011066','Eugene Onegin','Alexander Pushkin/Walter W. Arndt','2009-01-16'),('9780878937202','Essentials of Conservation Biology','Richard B. Primack','2007-06-21'),('9780890093894','The Treasured Writings of Kahlil Gibran','Kahlil Gibran','2009-10-06'),('9780896892934','Standard Catalog of Smith & Wesson','Jim Supica/Richard Nahas','2007-01-01'),('9780907129073','Birth Of A Tragedy: Kashmir 1947','Alastair Lamb','2008-03-14'),('9780938045557','The Naked Warrior: Master the Secrets of the Super-Strong - Using Bodyweight Exercises Only','Pavel Tsatsouline','2010-01-01'),('9780939682041','Situationist International Anthology: Revised and Expanded Edition','Ken Knabb','2007-03-01'),('9780961392178','Beautiful Evidence','Edward R. Tufte','2006-11-07'),('9780964366565','Lo único que no podrás hacer en el cielo','Mark Cahill','2007-03-01'),('9780966264920','The Beatles\' Story on Capitol Records Part Two: The Albums','Bruce Spizer','2010-01-01'),('9780971500761','Discovery of the Presence of God: Devotional Nonduality','David R. Hawkins','2007-06-28'),('9780976631156','Clown Girl','Monica Drake/Chuck Palahniuk','2007-01-04'),('9780977312795','Pictures Showing What Happens on Each Page of Thomas Pynchon\'s Novel Gravity\'s Rainbow','Zak Smith/Steve Erickson','2006-11-30'),('9780977698943','Tin House: Evil (Volume 8 no. 3)','Chris Adrian/Nick Flynn/Francine Prose/Josip Novakovich/Moonshine','2007-04-06'),('9780977795306','Dr. Mary\'s Monkey: How the Unsolved Murder of a Doctor a Secret Laboratory in New Orleans and Cancer-Causing Monkey Viruses are Linked to Lee Harvey Oswald the JFK Assassination and Emerging Global Epidemics','Edward T. Haslam/Jim Marrs','2007-04-01'),('9781400031771','Eating Stone: Imagination and the Loss of the Wild','Ellen Meloy','2006-10-17'),('9781400034697','Strange Pilgrims','Gabriel García Márquez','2006-11-14'),('9781400034949','Doce cuentos peregrinos','Gabriel García Márquez','2006-11-14'),('9781400040360','Lidia\'s Italy','Lidia Matticchio Bastianich/Tanya Bastianich Manuali/David Nussbaum/Christopher Hirsheimer','2007-04-10'),('9781400040667','Frost','Thomas Bernhard/Michael Hofmann','2006-10-17'),('9781400042821','The View from Castle Rock','Alice Munro','2006-11-07'),('9781400043361','Boeing Versus Airbus: The Inside Story of the Greatest International Competition in Business','John Newhouse','2007-01-16'),('9781400044559','House of Meetings','Martin Amis','2007-01-16'),('9781400052219','Jimmy Stewart: A Biography','Marc Eliot','2006-11-06'),('9781400064663','Peony in Love','Lisa See','2007-06-26'),('9781400064892','The Wild Trees: A Story of Passion and Daring','Richard Preston','2007-08-23'),('9781400065011','There\'s a (Slight) Chance I Might Be Going to Hell: A Novel of Sewer Pipes Pageant Queens and Big Trouble','Laurie Notaro','2007-05-29'),('9781400065875','Ariel Sharon: A Life','Nir Hefez/Gadi Bloom/Mitch Ginsburg','2006-10-24'),('9781400066100','Celebrations: Rituals of Peace and Prayer','Maya Angelou','2006-10-24'),('9781400073474','I Sold My Soul on Ebay: Viewing Faith Through an Atheist\'s Eyes','Hemant Mehta/Rob Bell','2007-04-17'),('9781400075713','Blue Shoes and Happiness (No. 1 Ladies\' Detective Agency #7)','Alexander McCall Smith','2007-03-13'),('9781400075980','Shakespeare: The Biography','Peter Ackroyd','2006-11-14'),('9781400076581','Collected Poems','Chinua Achebe','2009-01-16'),('9781400078431','The Year of Magical Thinking','Joan Didion','2007-02-13'),('9781400078776','Never Let Me Go','Kazuo Ishiguro','2010-08-31'),('9781400079377','Company','Max Barry','2007-03-13'),('9781400080663','Thunderstruck','Erik Larson','2006-10-24'),('9781400095957','The Brief History of the Dead','Kevin Brockmeier','2007-01-09'),('9781400096084','Blind Willow Sleeping Woman','Haruki Murakami/Jay Rubin/Philip Gabriel','2007-09-01'),('9781400096466','Flashman on the March (The Flashman Papers #12)','George MacDonald Fraser','2006-11-14'),('9781400097036','Arthur & George','Julian Barnes','2007-01-09'),('9781401203672','Fables: 1001 Nights of Snowfall','Bill Willingham/Esao Andrews/John Bolton/Mark Buckingham/James Jean/Derek Kirk Kim/Tara McPherson/Jill Thompson/Mark Wheatley/Michael Wm. Kaluta/Charles Vess/Brian Bolland','2006-10-18'),('9781401210014','Fables Vol. 8: Wolves','Bill Willingham/Mark Buckingham/Steve Leialoha/Shawn McManus/Andrew Pepoy','2006-12-20'),('9781401210076','Neil Gaiman\'s Neverwhere','Mike Carey/Glenn Fabry/Neil Gaiman','2007-02-14'),('9781401210502','Sachs & Violens','Peter David/George Pérez','2006-12-06'),('9781401210823','The Absolute Sandman Volume One','Neil Gaiman/Mike Dringenberg/Chris Bachalo/Michael Zulli/Kelly Jones/Charles Vess/Colleen Doran/Malcolm Jones III/Steve Parkhouse/Daniel Vozzo/Lee Loughridge/Steve Oliff/Todd Klein/Dave McKean/Sam Kieth','2006-11-01'),('9781401211950','Outsiders Vol. 5: The Good Fight','Judd Winick/Matthew Clark/Art Thibert/Pop Mhan/Ron Randall','2007-01-03'),('9781401211981','Manhunter Vol. 2: Trial by Fire','Marc Andreyko/Javier Pina/Jesus Saiz/Brad Walker','2007-01-03'),('9781401212025','Doom Patrol Vol. 5: Magic Bus','Grant Morrison/Richard Case/Ken Steacy/Stan Woch/Philip Bond/Mark McKenna/Scott Hanna','2007-04-01'),('9781401212223','Jack of Fables Vol. 1: The (Nearly) Great Escape','Bill Willingham/Matthew Sturges/Tony Akins/Andrew Pepoy','2007-02-28'),('9781401212353','American Splendor: Another Day','Harvey Pekar/Ty Templeton/Eddie Campbell/Hilary Barta','2007-04-07'),('9781401212483','Sgt. Rock: The Prophecy','Joe Kubert','2007-04-07'),('9781401212636','Superman: Back in Action','Kurt Busiek/Fabian Nicieiza/Len Wein/Gerry Conway/Pete Woods/José Luis García-López','2007-01-31'),('9781401301880','There\'s No Place Like Here','Cecelia Ahern','2007-09-04'),('9781401301958','Jamie\'s Italy','Jamie Oliver/David Loftus/Chris Terry','2006-11-14'),('9781401917173','The Power of Infinite Love & Gratitude: An Evolutionary Journey to Awakening Your Spirit','Darren R. Weissman','2007-02-01'),('9781402726002','The Adventures of Huckleberry Finn','Mark Twain/Scott McKowen/Arthur Pober','2006-10-28'),('9781402736957','The Three Musketeers (Classic Starts)','Oliver Ho/Jamel Akib/Alexandre Dumas/Arthur Pober','2007-02-01'),('9781405151412','How to Read a Poem','Terry Eagleton','2006-10-20'),('9781405153607','Christian Theology: An Introduction','Alister E. McGrath','2006-11-13'),('9781405161602','South Park and Philosophy: You Know I Learned Something Today','Robert Arp','2006-11-22'),('9781405228183','Den of Thieves (Cat Royal #3)','Julia Golding','2007-01-31'),('9781406904833','Right Ho Jeeves (Jeeves #6)','P.G. Wodehouse','2006-11-03'),('9781406929980','The Clicking of Cuthbert','P.G. Wodehouse','2006-11-03'),('9781406942354','Anne\'s House Of Dreams','L.M. Montgomery','2006-11-03'),('9781406947199','Thus Spake Zarathustra: A Book for All and None','Friedrich Nietzsche','2006-11-03'),('9781406953213','A Damsel in Distress','P.G. Wodehouse','2006-11-03'),('9781406955811','The Admirable Crichton','J.M. Barrie','2006-11-03'),('9781414305813','The Rapture: In the Twinkling of an Eye (Before They Were Left Behind #3)','Tim LaHaye/Jerry B. Jenkins','2007-02-01'),('9781414307640','Forever (Firstborn #5)','Karen Kingsbury','2007-02-22'),('9781414309354','Divine','Karen Kingsbury','2007-05-17'),('9781416500186','The Good Earth (House of Earth #1)','Pearl S. Buck','2009-03-04'),('9781416507680','Prayers for the Assassin (Assassin Trilogy #1)','Robert Ferrigno','2006-10-31'),('9781416520399','Midnight Brunch (Casa Dracula #2)','Marta Acosta','2007-04-24'),('9781416520863','Oath of Swords (War God #1)','David Weber','2006-12-26'),('9781416521075','By Slanderous Tongues (Doubled Edge #3)','Mercedes Lackey/Roberta Gellis','2007-02-06'),('9781416521105','Bedlam\'s Edge (Bedlam\'s Bard #8)','Mercedes Lackey/Rosemary Edghill','2007-01-30'),('9781416525516','A Wicked Gentleman (Cavendish Square #1)','Jane Feather','2007-03-20'),('9781416530817','Scattered Leaves (Early Spring #2)','V.C. Andrews','2007-02-27'),('9781416531043','Everything I Needed to Know about Being a Girl I Learned from Judy Blume','Jennifer O\'Connell/Meg Cabot/Megan McCafferty/Melissa Senate/Diana Peterfreund/Stephanie Lessing/Laura Ruby/Erica Orloff/Stacey Ballis/Julie Kenner/Kristin Harmel/Jennifer Coburn/Elise Juska/Kyra Davis/Beth Kendrick/Berta Platas/Lynda Curnyn/Kayla Perrin/Cara Lockwood/Alison Pace/Megan Crane/Lara Deloza/Laura Caldwell/Shanna Swendson','2007-06-05'),('9781416532354','Ricochet','Sandra Brown','2007-01-02'),('9781416535522','Santa Cruise: A Holiday Mystery at Sea','Mary Higgins Clark/Carol Higgins Clark','2006-11-14'),('9781416537809','Dragon (Dirk Pitt #10)','Clive Cussler','2006-10-31'),('9781416541189','More Twisted: Collected Stories Vol. II','Jeffery Deaver','2007-01-01'),('9781416542261','Act of Treason (Mitch Rapp #9)','Vince Flynn','2007-08-28'),('9781416543008','Everyone Worth Knowing','Lauren Weisberger','2006-12-26'),('9781416546023','Falling Man','Don DeLillo','2007-05-15'),('9781416927839','Misty of Chincoteague (Misty #1)','Marguerite Henry/Wesley Dennis','2006-12-26'),('9781416933960','Jennifer Hecate Macbeth William McKinley and Me Elizabeth','E.L. Konigsburg','2007-02-27'),('9781416935148','Ghost Ship: A Cape Cod Story','Mary Higgins Clark/Wendell Minor','2007-04-03'),('9781416939214','Z for Zachariah','Robert C. O\'Brien','2007-07-10'),('9781416939610','Crazy Hot (The Au Pairs #4)','Melissa de la Cruz','2007-05-08'),('9781416947400','He\'s Just Not That Into You: The No-Excuses Truth to Understanding Guys','Greg Behrendt/Liz Tuccillo','2006-12-26'),('9781419317262','The Curious Incident of the Dog in the Night-Time','Mark Haddon','2006-12-01'),('9781419542206','The Scarlet Letter','Nathaniel Hawthorne','2006-11-01'),('9781419542244','Frankenstein','Mary Wollstonecraft Shelley','2006-10-30'),('9781419953965','Wicked Sacrifice (Bound Hearts #4-5)','Lora Leigh','2006-11-30'),('9781421504612','Fullmetal Alchemist Vol. 10','Hiromu Arakawa/Akira Watanabe','2006-11-21'),('9781421505077','Ranma 1/2 Vol. 36 (Ranma ½ (US 2nd) #36)','Rumiko Takahashi','2006-11-01'),('9781421505404','From Far Away Vol. 13','Kyoko Hikawa/Yuko Sawada/Freeman Wong','2006-11-14'),('9781421505411','From Far Away Vol. 14','Kyoko Hikawa/Yuko Sawada/Freeman Wong','2007-01-09'),('9781421505480','Kare First Love Vol. 10 (Kare First Love #10)','Kaho Miyasaka','2006-12-12'),('9781421505572','Red River Vol. 15 (Red River #15)','Chie Shinohara','2006-11-01'),('9781421505589','Red River Vol. 16 (Red River #16)','Chie Shinohara','2007-01-01'),('9781421505626','Sensual Phrase Vol. 17','Mayu Shinjō','2006-12-01'),('9781421506142','Bleach Volume 16','Tite Kubo','2006-12-05'),('9781421506296','Death Note Vol. 8: Target (Death Note #8)','Tsugumi Ohba/Takeshi Obata/Tetsuichiro Miyaki','2006-11-07'),('9781421506302','Death Note Vol. 9: Contact (Death Note #9)','Tsugumi Ohba/Takeshi Obata/Tetsuichiro Miyaki','2007-01-02'),('9781421506425','Hikaru no Go Vol. 8: The Pro Test Preliminaries: Day Four (Hikaru no Go #8)','Yumi Hotta/Takeshi Obata','2006-11-07'),('9781421506555','JoJo\'s Bizarre Adventure Vol. 6 (Stardust Crusaders #6)','Hirohiko Araki','2006-12-05'),('9781421507200','Yakitate!! Japan Volume 2','Takashi Hashiguchi','2006-11-14'),('9781421507217','Yakitate!! Japan Volume 3','Takashi Hashiguchi','2007-01-09'),('9781421508382','Fullmetal Alchemist Vol. 11 (Fullmetal Alchemist #11)','Hiromu Arakawa/Akira Watanabe','2007-01-16'),('9781421508399','Fullmetal Alchemist Vol. 12 (Fullmetal Alchemist #12)','Hiromu Arakawa/Akira Watanabe','2007-03-20'),('9781421508504','Train_man Volume 3 (Train_man)','Hidenori Hara/Hitori Nakano','2007-02-13'),('9781421508658','Battle Angel Alita - Last Order : Angel\'s Vision Vol. 08','Yukito Kishiro','2006-12-12'),('9781421509211','Yakitate!! Japan Volume 4','Takashi Hashiguchi','2007-03-13'),('9781421509228','Yakitate!! Japan Volume 5','Takashi Hashiguchi','2007-05-08'),('9781421509235','Yakitate!! Japan Volume 6','Takashi Hashiguchi','2007-07-10'),('9781421509242','Yakitate!! Japan Volume 7','Takashi Hashiguchi','2007-09-11'),('9781421509563','The Drifting Classroom Vol. 4 (Drifting Classroom)','Kazuo Umezu','2007-02-20'),('9781421509570','The Drifting Classroom Vol. 5 (Drifting Classroom)','Kazuo Umezu','2007-04-17'),('9781421509587','The Drifting Classroom Vol. 6 (The Drifting Classroom)','Kazuo Umezu','2007-06-19'),('9781421509594','The Drifting Classroom Vol. 7 (The Drifting Classroom)','Kazuo Umezu','2007-08-21'),('9781421509976','Red River Vol. 17 (Red River #17)','Chie Shinohara','2007-04-10'),('9781421510415','Bleach Volume 17','Tite Kubo','2007-02-06'),('9781421510422','Bleach Volume 18','Tite Kubo','2007-04-03'),('9781421510439','Bleach Volume 19','Tite Kubo','2007-06-05'),('9781421510446','Bleach Volume 20','Tite Kubo','2007-08-07'),('9781421510668','Hikaru no Go Vol. 9: The Pro Test Begins (Hikaru no Go #9)','Yumi Hotta/Takeshi Obata/Yukari Umezawa','2007-04-03'),('9781421510675','Hikaru no Go Vol. 10: Lifeline (Hikaru no Go #10)','Yumi Hotta/Takeshi Obata','2007-08-07'),('9781421510781','JoJo\'s Bizarre Adventure Vol. 7 (Stardust Crusaders #7)','Hirohiko Araki','2007-04-03'),('9781421510798','JoJo\'s Bizarre Adventure Vol. 8 (Stardust Crusaders #8)','Hirohiko Araki','2007-08-07'),('9781421511559','Death Note Vol. 10: Deletion (Death Note #10)','Tsugumi Ohba/Takeshi Obata/Tetsuichiro Miyaki','2007-03-06'),('9781421513683','Pretty Face Vol. 1','Yasuhiro Kano','2007-08-07'),('9781421513799','Fullmetal Alchemist Vol. 14 (Fullmetal Alchemist #14)','Hiromu Arakawa/Akira Watanabe','2007-08-14'),('9781421513942','Ghost in the Shell 2: Innocence: After The Long Goodbye','Masaki Yamada/Yuji Oniki/Carl Gustav Horn/Daigo Shinma/Keita Saeki/Mamoru Oshii/Shinji Maki','2007-07-17'),('9781423101451','The Titan\'s Curse (Percy Jackson and the Olympians #3)','Rick Riordan','2007-05-05'),('9781423101680','The Age of Bronze (Pirates of the Caribbean: Jack Sparrow #5)','Rob Kidd/Walt Disney Company','2006-12-01'),('9781423103349','The Sea of Monsters (Percy Jackson and the Olympians #2)','Rick Riordan','2007-04-01'),('9781423319528','Echo Burning (Jack Reacher #5)','Lee Child','2007-02-28'),('9781423319610','The Enemy (Jack Reacher #8)','Lee Child','2007-04-28'),('9781423323259','The Black Echo (Harry Bosch #1; Harry Bosch Universe #1)','Michael Connelly/Dick Hill','2006-11-25'),('9781423323389','Trunk Music (Harry Bosch #5; Harry Bosch Universe #6)','Michael Connelly/Dick Hill','2006-11-28'),('9781423330417','Relic (Pendergast #1)','Douglas Preston/Lincoln Child','2007-02-25'),('9781423601746','Kokopelli: The Magic Mirth and Mischief of an Ancient Symbol','Dennis Slifer/R. Carlos Nakai','2007-04-05'),('9781426423703','The Adventures of Sally','P.G. Wodehouse','2008-05-29'),('9781427802118','Sgt. Frog Vol. 13 (Sgt. Frog #13)','Mine Yoshizaki','2007-06-01'),('9781550546002','Why I Hate Canadians','Will Ferguson','2007-02-19'),('9781555837235','Stir-Fry','Emma Donoghue','2006-12-29'),('9781555916220','The Gonzo Way: A Celebration of Dr. Hunter S. Thompson','Anita Thompson','2007-07-01'),('9781556612008','Mandie and the Jumping Juniper (Mandie #18)','Lois Gladys Leppard','2008-02-02'),('9781557047410','The Namesake: A Portrait of the Film Based on the Novel by Jhumpa Lahiri','Mira Nair/Jhumpa Lahiri','2006-12-01'),('9781560258018','Freaks of the Storm: From Flying Cows to Stealing Thunder: The World\'s Strangest True Weather Stories','Randy Cerveny','2006-12-29'),('9781560978008','Big Baby','Charles Burns','2007-02-17'),('9781561840564','Prometheus Rising','Robert Anton Wilson/Israel Regardie','2010-09-01'),('9781562926168','The Quiet Little Woman: A Christmas Story','Louisa May Alcott/C. Michael Dudash/Stephen W. Hines','2009-04-21'),('9781563899652','Green Arrow Vol. 1: Quiver','Kevin Smith/Phil Hester/Ande Parks','2008-12-16'),('9781565125605','Water for Elephants','Sara Gruen','2007-05-01'),('9781565847859','The Darker Nations: A People\'s History of the Third World','Vijay Prashad/Howard Zinn','2007-02-19'),('9781567921571','Things: A Story of the Sixties; A Man Asleep','Georges Perec/David Bellos/Andrew Leak','2010-07-16'),('9781567921588','W or the Memory of Childhood','Georges Perec/David Bellos','2010-07-01'),('9781568821573','H. P. Lovecraft\'s Dreamlands (Call of Cthulhu RPG)','Chris Williams/Sandy Petersen','2008-02-02'),('9781569708125','Can\'t Win With You 1','Satosumi Takaguchi/Yukine Honami','2007-08-15'),('9781569708842','Only the Ring Finger Knows: The Ring Finger Falls Silent (Only the Ring Finger Knows #3)','Satoru Kannagi/Hotaru Odagiri','2006-10-26'),('9781569709054','Little Butterfly Volume 03','Hinako Takanaga','2006-12-06'),('9781569755662','Dirty Italian: Everyday Slang from \"What\'s Up?\" to \"F*%# Off!','Gabrielle Ann Euvino/Lindsay Mack','2006-10-28'),('9781569755839','Mugglenet.Com\'s What Will Happen in Harry Potter 7: Who Lives Who Dies Who Falls in Love and How Will the Adventure Finally End?','Ben Schoen/Andy Gordon/Gretchen Stull/Emerson Spartz/Jamie Lawrence','2006-10-19'),('9781572705647','Hickory Dickory Dock (Hercule Poirot #32)','Agatha Christie/Hugh Fraser','2006-12-07'),('9781578067596','Tim Burton: Interviews','Kristian Fraga','2010-01-22'),('9781579126896','Death on the Nile (Hercule Poirot #17)','Agatha Christie','2007-03-30'),('9781579126957','The Mystery of the Blue Train (Hercule Poirot #6)','Agatha Christie','2007-03-30'),('9781580051880','Homelands: Women’s Journeys Across Race Place and Time','Patricia Justine Tumang/Edwidge Danticat/Jenesha de Rivera','2006-12-21'),('9781580801423','Shattered Air: A True Account of Catastrophe and Courage on Yosemite\'s Half Dome','Bob Madgic/William L. Crary/Adrian Esteban','2007-02-06'),('9781580931779','New York 2000: Architecture and Urbanism Between the Bicentennial and the Millennium','Robert A.M. Stern/David Fishman/Jacob Tilove','2006-11-01'),('9781580931861','Glass House','Philip Johnson/Toshio Nakamura','2007-05-10'),('9781581348767','When the Darkness Will Not Lift: Doing What We Can While We Wait for God—And Joy','John Piper','2006-12-14'),('9781582346816','Harry Potter and the Philosopher\'s Stone (Harry Potter #1)','J.K. Rowling','2010-07-01'),('9781582406121','The Walking Dead Vol. 5: The Best Defense','Robert Kirkman/Charlie Adlard/Cliff Rathburn','2009-04-21'),('9781582406190','The Walking Dead Book One (The Walking Dead #1-12)','Robert Kirkman/Tony Moore/Charlie Adlard/Cliff Rathburn','2010-10-05'),('9781582406930','Fell','Warren Ellis/Ben Templesmith','2007-06-05'),('9781584655800','Oliver Wendell Holmes in Paris: Medicine Theology and the Autocrat of the Breakfast Table','William C. Dowling','2007-02-28'),('9781585425495','Any Woman\'s Blues','Erica Jong','2007-01-01'),('9781585425549','What Do Women Want?: Essays by Erica Jong','Erica Jong','2007-05-10'),('9781585479009','Act of Treason (Mitch Rapp #9)','Vince Flynn','2007-01-01'),('9781585678365','Full Moon (Blandings Castle #7)','P.G. Wodehouse','2006-11-23'),('9781585678761','The Various Haunts of Men (Simon Serrailler #1)','Susan Hill','2007-04-19'),('9781585678839','The Thousandfold Thought (The Prince of Nothing #3)','R. Scott Bakker','2007-01-30'),('9781586857028','Essence and Alchemy: A Natural History of Perfume','Mandy Aftel','2007-01-31'),('9781587671401','The Secretary of Dreams Volume One','Stephen King/Glenn Chadbourne','2006-10-30'),('9781589880290','Rocky Stories: Tales of Love Hope and Happiness at America\'s Most Famous Steps','Michael Vitez/Tom Gralish/Sylvester Stallone','2006-11-01'),('9781589943070','The Art of H.P. Lovecraft\'s the Cthulhu Mythos','Pat Harrigan/Brian Wood/Jeremy McHugh','2006-10-31'),('9781589971288','Creative Correction: Extraordinary Ideas For Everyday Discipline','Lisa Whelchel/Stormie Omartian','2010-03-31'),('9781590171943','The Strangers in the House','Georges Simenon/P.D. James/Geoffrey Sainsbury/David Watson','2006-10-24'),('9781590172193','Dante: Poet of the Secular World','Erich Auerbach/Ralph Manheim/Michael Dirda','2007-01-16'),('9781590172285','The Engagement','Georges Simenon/Anna Moschovakis/John N. Gray','2007-03-06'),('9781590302088','Making a Change for Good: A Guide to Compassionate Self-Discipline','Cheri Huber','2007-03-13'),('9781590526873','Reluctant Runaway (To Catch a Thief #2)','Jill Elizabeth Nelson','2007-03-20'),('9781590529621','His Princess Devotional: A Royal Encounter With Your King','Sheri Rose Shepherd','2007-10-16'),('9781590583425','Effigies (Faye Longchamp #3)','Mary Anna Evans','2007-01-15'),('9781591024507','Slaughterhouse: The Shocking Story of Greed Neglect And Inhumane Treatment Inside the U.S. Meat Industry','Gail A. Eisnitz','2006-11-01'),('9781591583660','In Web Design for Libraries','Charles P. Rubenstein','2006-12-01'),('9781592401821','Candy Girl: A Year in the Life of an Unlikely Stripper','Diablo Cody','2007-01-02'),('9781592402687','Game of Shadows: Barry Bonds BALCO and the Steroids Scandal that Rocked Professional Sports','Mark Fainaru-Wada/Lance Williams','2007-03-01'),('9781592402694','Here There and Everywhere: My Life Recording the Music of the Beatles','Geoff Emerick/Howard Massey/Elvis Costello','2007-03-01'),('9781593076191','Star Wars Omnibus: X-Wing Rogue Squadron Vol. 2','Michael A. Stackpole/Jan Strnad/Ryder Windham/Jordi Ensign/John Nadeau/Gary Erskine','2006-10-24'),('9781593076276','Star Wars: Empire Volume 6: In the Shadows of Their Fathers','Thomas Andrews/Scott Allie','2006-11-07'),('9781593076399','Museum of Terror Vol. 3: The Long Hair in the Attic','Junji Ito/伊藤潤二','2006-11-21'),('9781593076405','Star Wars: Knights of the Old Republic Vol. 1: Commencement (Star Wars: Knights of the Old Republic #1)','John Jackson Miller/Travis Charest/Michael Atiyeh/Brian Ching/Travel Foreman','2006-12-05'),('9781593076672','The Facts in the Case of the Departure of Miss Finch','Neil Gaiman/Michael Zulli','2008-04-01'),('9781593077099','Star Wars: Empire Volume 7: The Wrong Side of the War','Welles Hartley/Davide Fabbri/Christian Dalla Vecchia','2007-01-30'),('9781593077112','Star Wars: Rebellion Vol. 1: My Brother My Enemy','Rob Williams/Michel Lacombe','2007-02-27'),('9781593077365','Grendel: Devil by the Deed','Matt Wagner/Rich Rankin/Chris Pitzer/Diana Schutz','2007-03-27'),('9781593154417','Scavenger (Frank Balenger #2)','David Morrell','2007-03-13'),('9781593761226','The Soloist','Nicholas Christopher','2006-11-27'),('9781593854461','Teaching Reading Comprehension to Students with Learning Difficulties','Janette K. Klingner/Sharon R. Vaughn/Alison Boardman','2007-04-12'),('9781593979744','The Power of Truth: A Leading with Emotional Intelligence Conversation with Warren Bennis','Daniel Goleman/Warren Bennis','2006-11-14'),('9781594201042','Andrew Carnegie','David Nasaw','2006-10-24'),('9781594201202','Against the Day','Thomas Pynchon','2006-11-21'),('9781594489259','The Ghost Map: The Story of London\'s Most Terrifying Epidemic—and How It Changed Science Cities and the Modern World','Steven Johnson','2006-11-01'),('9781594836114','Pop Goes the Weasel','James Patterson/Roger Rees/Keith David','2006-11-13'),('9781594839412','The Wheel of Darkness (Pendergast #8)','Douglas Preston/Lincoln Child','2007-08-28'),('9781595328403','Blame! Vol. 7','Tsutomu Nihei','2007-02-01'),('9781595328410','Blame! Vol. 8','Tsutomu Nihei','2007-05-01'),('9781595542328','A Time to Embrace (Timeless Love #2)','Karen Kingsbury','2006-10-29'),('9781595820617','Coffin: The Art of Vampire Hunter D','Yoshitaka Amano','2006-11-01'),('9781595821065','Vampire Hunter D Volume 06: Pilgrimage of the Sacred and the Profane','Hideyuki Kikuchi/Yoshitaka Amano','2006-11-22'),('9781595821072','Vampire Hunter D Volume 07: Mysterious Journey to the North Sea - Part One','Hideyuki Kikuchi/Yoshitaka Amano','2007-05-07'),('9781596590939','The Botany of Desire: A Plant\'s-Eye View of the World','Michael Pollan/Scott Brick','2007-05-21'),('9781596912311','Medicus (Gaius Petreius Ruso #1)','Ruth Downie','2007-03-06'),('9781596913233','Paris: The Secret History','Andrew Hussey','2006-11-28'),('9781598160147','Love Mode Vol. 5','Yuki Shimizu','2007-05-01'),('9781598160154','Love Mode Vol. 6','Yuki Shimizu','2007-08-01'),('9781598161984','Tramps Like Us Volume 11','Yayoi Ogawa','2007-02-01'),('9781598161991','Tramps Like Us Volume 12','Yayoi Ogawa','2007-06-01'),('9781598163186','Shout Out Loud! 3','Satosumi Takaguchi','2006-12-12'),('9781598163209','Shout Out Loud! 5','Satosumi Takaguchi','2007-10-01'),('9781598165760','Crest of the Stars 2: A Modest War (Seikai no Monshou #2)','Hiroyuki Morioka','2007-01-01'),('9781598165777','Crest of the Stars 3: Return to a Strange World (Seikai no Monshou #3)','Hiroyuki Morioka','2007-05-01'),('9781598169461','The Twelve Kingdoms: Sea of Shadow (The Twelve Kingdoms #1)','Fuyumi Ono/小野 不由美/Akihiro Yamada/山田 章博/Elye J. Alexander/Alexander O. Smith','2007-03-13'),('9781598530018','Writings and Selected Narratives of the Exploration and Settlement of Virginia','John Smith','2007-03-22'),('9781598530025','Novels 1956–1964: Seize the Day / Henderson the Rain King / Herzog','Saul Bellow/James Wood','2007-01-11'),('9781598530094','Four Novels of the 1960s: The Man in the High Castle / The Three Stigmata of Palmer Eldritch / Do Androids Dream of Electric Sheep? / Ubik','Philip K. Dick/Jonathan Lethem','2007-05-10'),('9781599900056','The Drift House: The First Voyage','Dale Peck','2006-11-01'),('9781599900674','Harrius Potter et Camera Secretorum','J.K. Rowling/Peter Needham','2006-12-26'),('9781600100291','The Complete Clive Barker\'s The Great And Secret Show','Chris Ryall/Gabriel Rodríguez/Clive Barker','2006-11-08'),('9781600430015','Vegas Bites: A Werewolf Romance Anthology','L.A. Banks/J.M. Jeffries/Seressie Glass/Natalie Dunbar','2006-11-15'),('9781600961502','The Lost Continent','Edgar Rice Burroughs','2008-07-30'),('9781600962202','House of Mirth','Edith Wharton','2008-07-30'),('9781741045918','Europe on a Shoestring','Sarah Johnstone/Aaron Anderson/Sarah Andrews/Lonely Planet','2007-03-01'),('9781841155043','When Genius Failed: The Rise And Fall Of Long Term Capital Management','Roger Lowenstein','2009-06-01'),('9781841157498','Strong Motion','Jonathan Franzen','2007-06-01'),('9781841581224','The Nightmare Years: 1930-40 (20th Century Journey #2)','William L. Shirer','2008-03-05'),('9781841932514','Milton\'s Paradise Lost','John Milton/Gustave Doré','2008-08-14'),('9781842991244','Before Night Falls','Keith Gray','2007-09-01'),('9781843541677','Carpenter\'s Gothic','William Gaddis','2010-02-01'),('9781843544852','Running with Scissors','Augusten Burroughs','2006-11-04'),('9781844080380','Rebecca','Daphne du Maurier/Sally Beauman','2007-12-01'),('9781844164035','The Ultramarines Omnibus (Ultramarines #1-3)','Graham McNeill','2008-12-19'),('9781844164110','Outlander','Matt Keefe','2006-12-26'),('9781844164165','The Soul Drinkers Omnibus (Soul Drinkers #1-3)','Ben Counter','2006-12-26'),('9781844450930','Primary English: Knowledge and Understanding','Jane Medwell/David Wray','2007-04-01'),('9781844675739','Fragments','Jean Baudrillard/Emily Agar','2007-01-17'),('9781845882426','Thus Spoke Zarathustra','Friedrich Nietzsche','2006-12-01'),('9781852339463','The Future of the Universe','Jack Meadows','2006-12-01'),('9781854583529','Teaching English Abroad','Susan Griffith','2007-01-01'),('9781885586421','The World of Jules Verne','Gonzague Saint Bris/Arthur C. Clarke/Stéphane Heuet/Helen Marx/Saint-Bris Gonzague','2006-11-01'),('9781885972101','Uncle Setnakt\'s Essential Guide to the Left Hand Path','Don Webb','2011-03-03'),('9781886363069','Charles Dickens as a Legal Historian','William Holdsworth','2010-02-01'),('9781887368889','Bloodlines','Richard Matheson/Mark Dawidziak','2007-01-01'),('9781888472424','Uncle Scrooge #359','Don Rosa/Carl Barks/Lars Jensen/Pat McGreal/Carol McGreal/Frank Jonker/Romano Scarpa/Mau Heymans/José Massaroli','2006-11-07'),('9781889307152','William S. Burroughs Throbbing Gristle Brion Gysin','V. Vale/Andrea Juno/William S. Burroughs/Throbbing Gristle/Brion Gysin','2008-01-10'),('9781890447427','Mother\'s Milk','Edward St. Aubyn','2006-11-09'),('9781897299029','The Acme Novelty Library #17','Chris Ware','2006-11-28'),('9781901447705','The Day the Country Died: A History of Anarcho-Punk 1980-1984','Ian Glasper','2007-03-01'),('9781902602684','The Builders','Maeve Binchy','2006-11-01'),('9781903254387','The Gospel of Filth: A Bible of Decadence & Darkness','Gavin Baddeley/Dani Filth','2010-02-05'),('9781905177042','A Midwife\'s Story','Sheryl Feldman/Penny Armstrong','2007-04-01'),('9781905850587','Elric of Melnibone: Bright Shadows','Charles Green/Richard Ford/Pascal Quidault','2008-04-01'),('9781931520249','Interfictions: An Anthology of Interstitial Writing','Delia Sherman/Theodora Goss/K. Tempest Bradford/Karen Jordan Allen/Rachel Pollack/Veronica Schanoes/Mikal Trimm/Colin Greenland/Vandana Singh/Matthew Cheney/Léa Silhol/Adrián Ferrero/Holly Phillips/Catherynne M. Valente/Christopher Barzak/Leslie What/Anna Tambour/Joy Marchand/Jon Singer/Csilla Kleinheincz/Michael J. DeLuca','2007-04-01'),('9781932234299','Birthday (Ring #4)','Kōji Suzuki/Glynne Walley','2006-12-12'),('9781932416640','What Is the What','Dave Eggers','2006-10-18'),('9781932416770','McSweeney\'s #24','Dave Eggers/Christopher R. Howard/Jonathan Ames/Joe Meno/Eric Hanson','2007-05-28'),('9781932664591','Cities in Dust (Wasteland #1)','Antony Johnston/Christopher Mitten','2010-04-20'),('9781932796780','Dragons of Winter Night (Dragonlance: Chronicles #2)','Margaret Weis/Tracy Hickman','2007-04-10'),('9781932806496','Fortress of Solitude / The Devil Genghis','Kenneth Robeson/Lester Dent','2006-12-01'),('9781933330105','The Anime Encyclopedia: A Guide to Japanese Animation Since 1917','Jonathan Clements/Helen McCarthy','2006-11-01'),('9781933368566','Mitz The Marmoset of Bloomsbury','Sigrid Nunez','2007-02-15'),('9781933372198','Amazing Disgrace (Gerald Samper #2)','James Hamilton-Paterson','2006-11-01'),('9781933372204','Margherita Dolce Vita','Stefano Benni/Antony Shugaar','2006-11-01'),('9781933440170','Embracing Love Vol. 4','Youka Nitta','2007-01-01'),('9781933440187','Embracing Love Vol. 5','Youka Nitta','2007-04-01'),('9781933440194','Embracing Love Vol. 6','Youka Nitta','2008-06-01'),('9781933618081','Falling Angel','William Hjortsberg/Ridley Scott/James Crumley','2006-11-01'),('9781933648279','Night Has a Thousand Eyes','Cornell Woolrich','2007-04-01'),('9781933771137','Neptune Noir: Unauthorized Investigations into Veronica Mars','Rob Thomas/Leah Wilson/Heather Havrilesky/Amy Berner/Lynne Edwards/John Ramos/Alafair Burke/Chris McCubbin/Lawrence Watt-Evans/Lani Diane Rich/Geoff Klock/Judy Fitzwater/Evelyn Vaughn/Joyce Millman/Amanda Ann Klein/Kristen Kidder/Jesse Hassenger/Gwen Ellery/Misty Hook/Samantha Bornemann','2007-04-10'),('9781933771175','Coffee at Luke\'s: An Unauthorized Gilmore Girls Gabfest','Jennifer Crusie/Leah Wilson/Gregory Stevenson','2007-04-10'),('9782038717006','Candide','Voltaire/Larousse','2007-05-01'),('9782253141204','Les Fils des ténèbres','Dan Simmons','2007-10-01'),('9782940373154','Thinking Visually (Basics Illustration #1)','Mark Wigan','2006-12-20'),('9783453190146','Glamorama','Bret Easton Ellis','2010-02-22'),('9783822856499','Richard Kern Action','Richard Kern/Dian Hanson','2007-02-01'),('9784990327507','The Art of Loving by Erich Fromm: A True Story of a Japanese Woman','Lala Okamoto','2006-10-31'),('9788408068914','Compasión','Jodi Picoult','2007-01-01'),('9788423338665','La historia de la familia Roccamatio de Helsinki','Yann Martel/Bianca Southwood','2007-01-01'),('9788433924711','Respiración artificial','Ricardo Piglia','2008-03-01'),('9788433968777','El último lector','Ricardo Piglia','2009-07-15'),('9788437604824','El Diablo Cojuelo','Luis Vélez de Guevara','2007-01-11'),('9788466307604','El matrimonio amateur','Anne Tyler/Gemma Rovira','2006-11-01'),('9788466368872','Me llamo rojo','Orhan Pamuk/Rafael Carpintero','2007-01-01'),('9788466617116','La reina de los condenados (Crónicas Vampíricas #3)','Anne Rice','2007-01-01'),('9788466619455','El rey de Les Halles','Juliette Benzoni/Francisco Rodriguez de Lecea','2007-01-01'),('9788466630030','El Mesías: El niño judío','Anne Rice/Luis Murillo','2007-05-28'),('9788483105023','Antes que anochezca','Reinaldo Arenas','2008-02-28'),('9788489367159','Citas Celestiales','Alexander McCall Smith/Marta Torent López de Lamadrid','2006-11-01'),('9788489746152','El ojo de fuego','Lewis Perdue','2007-02-01'),('9788493464264','La economía Long Tail','Chris Anderson/Federico Villegas Silva Lezama','2007-07-01'),('9788496525030','Secretos De Familia','Julia Glass','2006-11-01'),('9788497930970','Todo está iluminado','Jonathan Safran Foer','2007-11-30'),('9789500425995','El Aleph','Jorge Luis Borges','2007-09-01'),('9789580493518','La verdad acerca de las Industrias Farmacéuticas: cómo nos engaña y qué hacer al respecto','Marcia Angell','2006-12-01'),('9789685208550','Pedro Páramo','Juan Rulfo','2009-12-01'),('9789792234794','Riley in the Morning','Sandra Brown','2008-11-27'),('9789810549411','Gulliver\'s Travels','Jonathan Swift/YKids','2007-07-01'),('9789875801448','El Dia Que Nietzsche Lloró','Irvin D. Yalom','2006-10-24'); 41 | /*!40000 ALTER TABLE `books` ENABLE KEYS */; 42 | UNLOCK TABLES; 43 | /*!50003 SET @saved_cs_client = @@character_set_client */ ; 44 | /*!50003 SET @saved_cs_results = @@character_set_results */ ; 45 | /*!50003 SET @saved_col_connection = @@collation_connection */ ; 46 | /*!50003 SET character_set_client = utf8mb4 */ ; 47 | /*!50003 SET character_set_results = utf8mb4 */ ; 48 | /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; 49 | /*!50003 SET @saved_sql_mode = @@sql_mode */ ; 50 | /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; 51 | DELIMITER ;; 52 | /*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER `books_after_insert` AFTER INSERT ON `books` FOR EACH ROW INSERT INTO books.books_journal 53 | SET 54 | action_type = 'create', 55 | isbn = NEW.isbn, 56 | action_time = now() */;; 57 | DELIMITER ; 58 | /*!50003 SET sql_mode = @saved_sql_mode */ ; 59 | /*!50003 SET character_set_client = @saved_cs_client */ ; 60 | /*!50003 SET character_set_results = @saved_cs_results */ ; 61 | /*!50003 SET collation_connection = @saved_col_connection */ ; 62 | /*!50003 SET @saved_cs_client = @@character_set_client */ ; 63 | /*!50003 SET @saved_cs_results = @@character_set_results */ ; 64 | /*!50003 SET @saved_col_connection = @@collation_connection */ ; 65 | /*!50003 SET character_set_client = utf8mb4 */ ; 66 | /*!50003 SET character_set_results = utf8mb4 */ ; 67 | /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; 68 | /*!50003 SET @saved_sql_mode = @@sql_mode */ ; 69 | /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; 70 | DELIMITER ;; 71 | /*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER `books_after_update` AFTER UPDATE ON `books` FOR EACH ROW IF NEW.isbn = OLD.isbn THEN 72 | INSERT INTO books.books_journal 73 | SET action_type = 'update', 74 | isbn = OLD.isbn, 75 | action_time = NOW(); 76 | ELSE 77 | -- Set old one as deleted 78 | INSERT INTO books.books_journal 79 | SET action_type = 'delete', 80 | isbn = OLD.isbn, 81 | action_time = NOW(); 82 | -- AND NEW one created 83 | INSERT INTO books.books_journal 84 | SET action_type = 'create', 85 | isbn = NEW.isbn, 86 | action_time = NOW(); 87 | END IF */;; 88 | DELIMITER ; 89 | /*!50003 SET sql_mode = @saved_sql_mode */ ; 90 | /*!50003 SET character_set_client = @saved_cs_client */ ; 91 | /*!50003 SET character_set_results = @saved_cs_results */ ; 92 | /*!50003 SET collation_connection = @saved_col_connection */ ; 93 | /*!50003 SET @saved_cs_client = @@character_set_client */ ; 94 | /*!50003 SET @saved_cs_results = @@character_set_results */ ; 95 | /*!50003 SET @saved_col_connection = @@collation_connection */ ; 96 | /*!50003 SET character_set_client = utf8mb4 */ ; 97 | /*!50003 SET character_set_results = utf8mb4 */ ; 98 | /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; 99 | /*!50003 SET @saved_sql_mode = @@sql_mode */ ; 100 | /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; 101 | DELIMITER ;; 102 | /*!50003 CREATE*/ /*!50017 DEFINER=`root`@`%`*/ /*!50003 TRIGGER `books_after_delete` AFTER DELETE ON `books` FOR EACH ROW INSERT INTO books.books_journal 103 | SET action_type = 'delete', 104 | isbn = OLD.isbn, 105 | action_time = now() */;; 106 | DELIMITER ; 107 | /*!50003 SET sql_mode = @saved_sql_mode */ ; 108 | /*!50003 SET character_set_client = @saved_cs_client */ ; 109 | /*!50003 SET character_set_results = @saved_cs_results */ ; 110 | /*!50003 SET collation_connection = @saved_col_connection */ ; 111 | /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 112 | 113 | /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; 114 | /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; 115 | /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; 116 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 117 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 118 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 119 | /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; 120 | 121 | -- Dump completed on 2020-11-06 21:01:11 122 | -------------------------------------------------------------------------------- /data/books_journal.sql: -------------------------------------------------------------------------------- 1 | -- MySQL dump 10.13 Distrib 8.0.22, for Linux (x86_64) 2 | -- 3 | -- Host: localhost Database: books 4 | -- ------------------------------------------------------ 5 | -- Server version 8.0.22 6 | 7 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 8 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 9 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 10 | /*!50503 SET NAMES utf8mb4 */; 11 | /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; 12 | /*!40103 SET TIME_ZONE='+00:00' */; 13 | /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; 14 | /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; 15 | /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; 16 | /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; 17 | 18 | -- 19 | -- Table structure for table `books_journal` 20 | -- 21 | 22 | DROP TABLE IF EXISTS `books_journal`; 23 | /*!40101 SET @saved_cs_client = @@character_set_client */; 24 | /*!50503 SET character_set_client = utf8mb4 */; 25 | CREATE TABLE `books_journal` ( 26 | `journal_id` int NOT NULL AUTO_INCREMENT, 27 | `isbn` varchar(15) DEFAULT NULL, 28 | `action_type` enum('create','update','delete') DEFAULT NULL, 29 | `action_time` timestamp NULL DEFAULT NULL, 30 | PRIMARY KEY (`journal_id`) 31 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; 32 | /*!40101 SET character_set_client = @saved_cs_client */; 33 | 34 | -- 35 | -- Dumping data for table `books_journal` 36 | -- 37 | 38 | LOCK TABLES `books_journal` WRITE; 39 | /*!40000 ALTER TABLE `books_journal` DISABLE KEYS */; 40 | /*!40000 ALTER TABLE `books_journal` ENABLE KEYS */; 41 | UNLOCK TABLES; 42 | /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 43 | 44 | /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; 45 | /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; 46 | /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; 47 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 48 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 49 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 50 | /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; 51 | 52 | -- Dump completed on 2020-11-06 21:01:31 53 | -------------------------------------------------------------------------------- /data/new_arrival.sql: -------------------------------------------------------------------------------- 1 | -- MySQL dump 10.13 Distrib 8.0.22, for Linux (x86_64) 2 | -- 3 | -- Host: localhost Database: books 4 | -- ------------------------------------------------------ 5 | -- Server version 8.0.22 6 | 7 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 8 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 9 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 10 | /*!50503 SET NAMES utf8mb4 */; 11 | /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; 12 | /*!40103 SET TIME_ZONE='+00:00' */; 13 | /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; 14 | /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; 15 | /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; 16 | /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; 17 | 18 | -- 19 | -- Table structure for table `new_arrival` 20 | -- 21 | 22 | DROP TABLE IF EXISTS `new_arrival`; 23 | /*!40101 SET @saved_cs_client = @@character_set_client */; 24 | /*!50503 SET character_set_client = utf8mb4 */; 25 | CREATE TABLE `new_arrival` ( 26 | `isbn` varchar(15) NOT NULL, 27 | `title` varchar(1023) DEFAULT NULL, 28 | `authors` varchar(1023) DEFAULT NULL, 29 | `publication_date` date DEFAULT NULL, 30 | PRIMARY KEY (`isbn`) 31 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; 32 | /*!40101 SET character_set_client = @saved_cs_client */; 33 | 34 | -- 35 | -- Dumping data for table `new_arrival` 36 | -- 37 | 38 | LOCK TABLES `new_arrival` WRITE; 39 | /*!40000 ALTER TABLE `new_arrival` DISABLE KEYS */; 40 | INSERT INTO `new_arrival` VALUES ('9780007179732','The Monk Who Sold His Ferrari: A Fable about Fulfilling Your Dreams and Reaching Your Destiny (Revised)','Robin S. Sharma','2015-12-31'),('9780060009427','How to Read Literature Like a Professor','Thomas C. Foster','2014-11-14'),('9780060084530','Sharpe\'s Prey (Sharpe #5)','Bernard Cornwell','2012-10-23'),('9780060254926','Where the Wild Things Are','Maurice Sendak','2012-12-26'),('9780060256753','Lafcadio the Lion Who Shot Back','Shel Silverstein','2013-09-24'),('9780060519131','Savannah Blues (Weezie and Bebe Mysteries #1)','Mary Kay Andrews','2012-07-10'),('9780060542382','Amelia Bedelia 50th Anniversary Library: Amelia Bedelia Amelia Bedelia and the Surprise Shower and Play Ball Amelia Bedelia','Peggy Parish/Various','2012-12-26'),('9780060572341','Where the Sidewalk Ends: Poems and Drawings','Shel Silverstein','2014-02-18'),('9780060574215','Men Are from Mars Women Are from Venus','John Gray','2012-04-03'),('9780060583316','Like A Charm','Karin Slaughter/Peter Robinson/John Connolly/Denise Mina/Mark Billingham','2015-05-26'),('9780060598853','Back to the Bedroom (Elsie Hawkins #1)','Janet Evanovich','2014-02-25'),('9780060598891','The Rocky Road to Romance (Elsie Hawkins #4)','Janet Evanovich','2011-11-29'),('9780060609177','Meeting Jesus Again for the First Time: The Historical Jesus and the Heart of Contemporary Faith','Marcus J. Borg','2015-04-07'),('9780060609191','Reading the Bible Again for the First Time: Taking the Bible Seriously but Not Literally','Marcus J. Borg','2015-04-07'),('9780060652920','Mere Christianity','C.S. Lewis/Kathleen Norris','2015-04-21'),('9780060732608','Ariel: The Restored Edition','Sylvia Plath/Frieda Hughes','2018-03-06'),('9780060773755','A Quick Bite (Argeneau #1)','Lynsay Sands','2020-03-31'),('9780060915186','An American Childhood','Annie Dillard','2013-10-15'),('9780060922559','Legends Lies Cherished Myths of World History','Richard Shenkman','2011-11-29'),('9780060925758','Soul Mates: Honouring the Mysteries of Love and Relationship','Thomas Moore','2013-12-13'),('9780061129735','The Art of Loving','Erich Fromm/Peter D. Kramer/Rainer Funk','2019-08-06'),('9780061144899','When the Heart Waits: Spiritual Direction for Life\'s Sacred Questions','Sue Monk Kidd','2016-10-11'),('9780061177583','Ham on Rye','Charles Bukowski','2014-07-29'),('9780061177590','Women','Charles Bukowski','2014-07-29'),('9780062511409','El alquimista: una fábula para seguir tus sueños','Paulo Coelho/Juan Godó Costa','2018-10-23'),('9780064401685','The Wish Giver: Three Tales of Coven Tree','Bill Brittain/Andrew Glass','2019-04-02'),('9780064407311','Monster','Walter Dean Myers','2019-03-05'),('9780071485425','Sclerotherapy and vein treatment','Robert A. Weiss/Margaret A. Weiss/Karen L. Beasley','2011-12-30'),('9780099285045','A Moveable Feast','Ernest Hemingway','2012-09-06'),('9780140140828','Granta 7','Bill Buford/Clive Sinclair/Graham Swift/Martin Amis/Rose Tremain/A.N. Wilson/Pat Barker/Julian Barnes/Ursula Bentley/William Boyd/Buchi Emecheta/Alan Judd/Maggie Gee/Kazuo Ishiguro/Adam Mars-Jones/Ian McEwan/Shiva Naipaul/Philip Norman/Christopher Priest/Salman Rushdie/Lisa St. Aubin de Terán','2013-04-01'),('9780141185606','Invitation to a Beheading','Vladimir Nabokov','2015-08-03'),('9780345362490','Magnificat (Galactic Milieu Trilogy #3)','Julian May','2011-04-20'),('9780345538376','J.R.R. Tolkien 4-Book Boxed Set: The Hobbit and The Lord of the Rings','J.R.R. Tolkien','2012-09-25'),('9780373713011','Expectant Father','Melinda Curtis','2011-12-15'),('9780380972333','The Iron Dragon\'s Daughter','Michael Swanwick','2012-02-28'),('9780385086165','A Man of the People','Chinua Achebe','2016-08-16'),('9780394704371','The Will to Power','Friedrich Nietzsche/Walter Kaufmann/R.J. Hollingdale','2011-08-17'),('9780394800912','Dr. Seuss\'s Sleep Book','Dr. Seuss','2012-07-24'),('9780413735904','A Clockwork Orange (Stage Play)','Anthony Burgess','2017-03-10'),('9780486215310','Best Science Fiction Stories of H. G. Wells','H.G. Wells','2011-11-24'),('9780486276809','The Secret Garden Coloring Book','Brian Doherty/Frances Hodgson Burnett/Thea Kliros','2014-07-16'),('9780486286563','Children\'s Christmas Stories and Poems: In Easy-to-Read Type','Bob Blaisdell/Pat Ronson Stewart','2011-11-17'),('9780486297163','Best Ghost and Horror Stories','Bram Stoker/Richard Dalby','2011-11-02'),('9780486402185','Ruthless Rhymes for Heartless Homes and More Ruthless Rhymes','Harry Graham/Frank J. Moore/D. Streamer','2013-06-19'),('9780553589474','Public Secrets','Nora Roberts','2012-03-27'),('9780571172955','Orlando: A Biography: Film Screenplay','Sally Potter/Virginia Woolf','2013-10-25'),('9780571205219','The Journals of Sylvia Plath','Sylvia Plath/Karen V. Kukil','2013-06-13'),('9780573605734','Breakfast of Champions','Robert Egan/Kurt Vonnegut Jr.','2017-04-07'),('9780575073609','Time and Again (Time #1)','Jack Finney','2012-05-01'),('9780673393555','American Genesis: Captain John Smith and the Founding of Virginia','Alden T. Vaughan','2019-08-17'),('9780679439202','Sand and Foam','Kahlil Gibran/جبران خليل جبران','2011-06-14'),('9780684873176','The Mutineer: Rants Ravings and Missives from the Mountaintop 1977-2005','Hunter S. Thompson','2013-03-01'),('9780688172374','Desert Flower','Waris Dirie/Cathleen Miller','2011-03-15'),('9780689848377','Tales of Mystery and Madness','Edgar Allan Poe/Gris Grimly','2011-08-30'),('9780689851902','What a Scare Jesse Bear','Nancy White Carlstrom/Bruce Degen','2012-03-21'),('9780735619654','Object Thinking','David West','2019-07-23'),('9780743474764','The Best of Ray Bradbury','Ray Bradbury/Dave Gibbons/Richard Corben/Mike Mignola','2012-06-21'),('9780743477109','Macbeth','William Shakespeare','2013-07-01'),('9780743484862','As You Like It','William Shakespeare','2011-08-23'),('9780747544210','Easy Riders Raging Bulls: How the Sex-Drugs-And-Rock-\'N\'-Roll Generation Saved Hollywood','Peter Biskind','2014-12-10'),('9780753811467','Maya','Jostein Gaarder/James Anderson','2011-05-10'),('9780765341280','Rebekah (Women of Genesis #2)','Orson Scott Card','2012-03-27'),('9780786918089','Thornhold (The Harpers #16; Songs & Swords #4)','Elaine Cunningham','2011-12-27'),('9780792737360','A Pocket Full of Rye: A BBC Radio 4 Full-Cast Dramatisation','Agatha Christie/Michael Bakewell/June Whitfield/Nicky Henson/Derek Waring/Natasha Pyne','2014-04-01'),('9780810111141','Billy Budd Sailor and Other Uncompleted Writings: The Writings of Herman Melville Volume 13','Herman Melville/Hershel Parker/G. Thomas Tanselle/Harrison Hayford/Robert Sandberg/Alma MacDougall Reising','2017-09-15'),('9780812508642','Pastwatch: The Redemption of Christopher Columbus','Orson Scott Card','2016-03-01'),('9780878057009','Conversations with John Updike','James Plath','2011-10-21'),('9780879232153','Hamlet\'s Mill: An Essay Investigating the Origins of Human Knowledge and Its Transmission Through Myth','Giorgio De Santillana/Hertha Von Dechend','2015-03-24'),('9780922729364','Access the Power of Your Higher Self: Your Source of Inner Guidance and Spiritual Transformation (Pocket Guides to Practical Spirituality)','Elizabeth Clare Prophet','2017-09-21'),('9780922729487','Soul Mates & Twin Flames: The Spiritual Dimension of Love & Relationships (Pocket Guide to Practical Spirituality)','Elizabeth Clare Prophet','2017-08-17'),('9780978605261','George Washington\'s Sacred Fire','Peter A. Lillback/Jerry Newcombe','2011-05-31'),('9781401204518','Superman: Secret Identity','Kurt Busiek/Stuart Immonen','2013-04-09'),('9781560600800','Miracleman Book Three: Olympus','Alan Moore/John Totleben/Steve Oliff/Joe Caramagna/Michael Kelleher/Peter Milligan/Mike Allred','2015-04-21'),('9781564775009','Happy Endings: Finishing the Edges of Your Quilts','Mimi Dietrich','2013-06-04'),('9781566918084','Rick Steves\' Europe Through the Back Door','Rick Steves','2017-09-12'),('9781580495790','A Christmas Carol','Charles Dickens','2012-01-01'),('9781590171035','Mistress Masham\'s Repose','T.H. White/Fritz Eichenberg','2012-03-07'),('9781590175866','Diary of a Man in Despair','Friedrich Reck-Malleczewen/Paul Rubens/Richard J. Evans','2013-02-12'),('9781591136446','The Play Soldier','Chet Green','2011-05-22'),('9781593979263','The Full Box (Full #1-4)','Janet Evanovich/Charlotte Hughes','2016-02-16'),('9781595325556','The Tarot Cafe #1','Sang-Sun Park','2017-03-07'),('9781600100369','The Complete Dick Tracy Volume 1: 1931-1933','Chester Gould/Ashley Wood/Max Allan Collins','2012-01-03'),('9781790877799','The Perfume Factory','Alex Austin','2018-12-12'),('9781841493114','First Meetings: In the Enderverse','Orson Scott Card','2013-03-01'),('9781873982983','The Perfume of the Lady in Black','Gaston Leroux/Margaret Jull Costa/Terry Hale','2015-02-25'),('9781885865243','Through a Brazen Mirror','Delia Sherman/Cortney Skinner/Ellen Kushner','2015-02-25'),('9781890318239','Enthusiasm and Divine Madness','Josef Pieper/Richard Winston/Clara Winston','2019-02-11'),('9781892062437','Teleportation: From Star Trek to Tesla','Commander X/Tim R. Swartz','2012-08-20'),('9781896597669','The Acme Novelty Datebook Vol. 1 1986-1995','Chris Ware','2013-11-26'),('9781897784310','Rob Roy MacGregor','Nigel Tranter','2012-09-01'),('9781903436912','Romeo and Juliet','William Shakespeare/René Weis','2012-07-15'),('9781904633389','The Iliad','Homer/Andrew Lang','2011-09-01'),('9781932386226','Artesia Volume 1','Mark Smylie','2011-09-20'),('9783110172799','Syntactic Structures','Noam Chomsky/David W. Lightfoot','2012-09-10'),('9783829601863','Libraries','Candida Höfer/Umberto Eco','2014-08-20'),('9788172235222','Mistaken Identity','Nayantara Sahgal','2016-12-30'),('9788432216886','El Perfume: Historia De Un Asesino','Patrick Süskind','2018-02-19'),('9788433920706','Pedro Páramo','Juan Rulfo','2013-10-31'),('9788433920867','Relatos de lo inesperado','Roald Dahl/Carmelina Payá/Antonio Samons','2016-06-30'),('9789580408550','El diablo de la botella','Robert Louis Stevenson/Diana Castellanos/Eleonora Garcia Larralde','2018-07-15'); 41 | /*!40000 ALTER TABLE `new_arrival` ENABLE KEYS */; 42 | UNLOCK TABLES; 43 | /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 44 | 45 | /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; 46 | /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; 47 | /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; 48 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 49 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 50 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 51 | /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; 52 | 53 | -- Dump completed on 2020-11-06 20:37:24 54 | -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- 1 | version: "3" 2 | services: 3 | mysql: 4 | image: mysql:8 5 | container_name: sem_mysql 6 | # restart: on-failure 7 | ports: 8 | - 3306:3306 9 | environment: 10 | MYSQL_RANDOM_ROOT_PASSWORD: "yes" 11 | MYSQL_DATABASE: books 12 | MYSQL_USER: avid_reader 13 | MYSQL_PASSWORD: i_love_books 14 | volumes: 15 | # Dump files for initiating tables 16 | - ./data/:/docker-entrypoint-initdb.d/ 17 | logging: 18 | driver: "json-file" 19 | options: 20 | max-size: "10k" 21 | max-file: "10" 22 | elasticsearch: 23 | image: docker.elastic.co/elasticsearch/elasticsearch:7.9.3 24 | container_name: sem_elasticsearch 25 | # restart: on-failure 26 | environment: 27 | - discovery.type=single-node 28 | - bootstrap.memory_lock=true 29 | - "ES_JAVA_OPTS=-Xms256m -Xmx256m" 30 | ulimits: 31 | memlock: 32 | soft: -1 33 | hard: -1 34 | volumes: 35 | - ./volumes/elasticsearch:/usr/share/elasticsearch/data 36 | logging: 37 | driver: "json-file" 38 | options: 39 | max-size: "10k" 40 | max-file: "10" 41 | logstash: 42 | build: 43 | context: . 44 | dockerfile: Dockerfile-logstash 45 | container_name: sem_logstash 46 | # restart: on-failure 47 | depends_on: 48 | - mysql 49 | - elasticsearch 50 | volumes: 51 | - ./volumes/logstash/pipeline/:/usr/share/logstash/pipeline/ 52 | - ./volumes/logstash/config/logstash.yml:/usr/share/logstash/config/logstash.yml 53 | - ./volumes/logstash/config/pipelines.yml:/usr/share/logstash/config/pipelines.yml 54 | - ./volumes/logstash/config/queries/:/usr/share/logstash/config/queries/ 55 | logging: 56 | driver: "json-file" 57 | options: 58 | max-size: "10k" 59 | max-file: "10" 60 | kibana: 61 | image: docker.elastic.co/kibana/kibana:7.9.3 62 | container_name: sem_kibana 63 | environment: 64 | - "ELASTICSEARCH_URL=http://elasticsearch:9200" 65 | - "SERVER_NAME=127.0.0.1" 66 | ports: 67 | - 5601:5601 68 | depends_on: 69 | - elasticsearch 70 | -------------------------------------------------------------------------------- /docs/sync-elasticsearch-mysql.drawio: -------------------------------------------------------------------------------- 1 | 1VjbctowEP0aHpuxJdvAY4G0zSSZpkMnTR6FLWxNZMuVBZh+fSUs+QrhUgjTPGS0R6uVtHtWu7gHx3H+laM0emQBpj1gBXkPTnoADIAt/ytgXQBOHxRAyElQQHYFTMkfrEFLowsS4KyhKBijgqRN0GdJgn3RwBDnbNVUmzPa3DVFIe4AUx/RLvqLBCLS13KtCv+GSRiZnW1Lz8TIKGsgi1DAVjUI3vbgmDMmilGcjzFVvjN+KdZ92TFbHozjRByy4OfzMLy7f568ofucx6P4bgrjT9rKEtGFvnAPeFTaGwVkKYehGj6upz8eDC43qE3pq4m18Ze8ZaqG/pqSJMAcSqVVRASepshXEytJE4lFIqZSsuVwxhZSM3iYlQDy30Ku0O8LIc1gjWcFO2xXjueE0jGjjG+2hfO5L/+UjuDsDddmoAeHMCiPusRc4HynC+0yMJLQmMVY8LVUycvoFks0mW1Hy6uKGiUBojotjCLSdAxL21XE5EAH7YgA9jsBvKUoE8TPMOJ+1IkPL5ytPbonMi0n+z525/NLO9mFBzgZfqiTB+9niYUoCZPNhPd7ofJ5RPFcVJLJlgcWZgJl0YG5JDhBSaikfYEyB9hsuzU5hsNLxw0Ctxk31z0wOexLxW24JW4tH+Mk+KzKhHqyZOJkxG96Vl6er1+kYBnhVQk3rhEneX1ysjZSTsSLsSHHtVVSqhYpwawpDoeDTkVqhUBegC24j/czViAeYrHv+eiGtBYyd0vEDMYxRYIsm8fdFkW9wxMj8iIlY5xWpoM2EYpr6lX10tY2ZLUMgZahwg8dQxtSldc+nWfm3P9EtBMIo4QnzIk8P+Z1Gp5A2DOSz/Rp+8g3uCb5oNviTP9/Jd9BPdw9maEEHdnEpZz5OMsOaOF2dGztBiLAs8Hs0oXIaRUisKV/AFuI5V2qDNngqOchYcp/o0A2CmWjVvO1wp+QkBmfbBBgwdKj5icKOEPlsm4cp/EWAXtw9Gt0hZJm72DHBz0rXqt7PbWmwX7TULu53fGqSBKhdU0tVQrZO+dtbeM2fkTKQWHwvC8WvEo+nFJgyxyq0ua1kTWXL6aHVtOrtnJeq5UbnMh6b9C0Ay/DenfYLBEfwnpnP+tN4Y3zUH1Nu5mlcXJDGWuVW1YU2XH5zcs6T+UE3o5Wpl46nS6JDHZE5ZRi9emrcHH1/RDe/gU= -------------------------------------------------------------------------------- /docs/sync-elasticsearch-mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r13i/sync-elasticsearch-mysql/b369c6036a689d64bc7d181d9177fe57b37ffd85/docs/sync-elasticsearch-mysql.png -------------------------------------------------------------------------------- /volumes/elasticsearch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r13i/sync-elasticsearch-mysql/b369c6036a689d64bc7d181d9177fe57b37ffd85/volumes/elasticsearch/.gitignore -------------------------------------------------------------------------------- /volumes/logstash/config/logstash.yml: -------------------------------------------------------------------------------- 1 | http.host: "0.0.0.0" 2 | xpack.monitoring.enabled: true 3 | xpack.monitoring.elasticsearch.hosts: [ "http://elasticsearch:9200" ] 4 | log.level: info 5 | -------------------------------------------------------------------------------- /volumes/logstash/config/pipelines.yml: -------------------------------------------------------------------------------- 1 | # This file is where you define your pipelines. You can define multiple. 2 | # For more information on multiple pipelines, see the documentation: 3 | # https://www.elastic.co/guide/en/logstash/current/multiple-pipelines.html 4 | 5 | - pipeline.id: from-scratch-pipeline 6 | path.config: "/usr/share/logstash/pipeline/from-scratch.conf" 7 | 8 | - pipeline.id: incremental-pipeline 9 | path.config: "/usr/share/logstash/pipeline/incremental.conf" 10 | -------------------------------------------------------------------------------- /volumes/logstash/config/queries/from-scratch.sql: -------------------------------------------------------------------------------- 1 | SELECT * FROM books.books -------------------------------------------------------------------------------- /volumes/logstash/config/queries/incremental.sql: -------------------------------------------------------------------------------- 1 | SELECT 2 | j.journal_id, j.action_type, j.isbn, 3 | b.title, b.authors, b.publication_date 4 | FROM books.books_journal j 5 | LEFT JOIN books.books b ON b.isbn = j.isbn 6 | WHERE j.journal_id > :sql_last_value 7 | AND j.action_time < NOW() 8 | ORDER BY j.journal_id -------------------------------------------------------------------------------- /volumes/logstash/pipeline/from-scratch.conf: -------------------------------------------------------------------------------- 1 | input { 2 | jdbc { 3 | jdbc_driver_library => "/usr/share/logstash/mysql-connector-java-8.0.22.jar" 4 | jdbc_driver_class => "com.mysql.jdbc.Driver" 5 | jdbc_connection_string => "jdbc:mysql://mysql:3306" 6 | jdbc_user => "avid_reader" 7 | jdbc_password => "i_love_books" 8 | sql_log_level => "debug" # Set Logstash logging level as this 9 | clean_run => true # Set to true for indexing from scratch 10 | record_last_run => false 11 | statement_filepath => "/usr/share/logstash/config/queries/from-scratch.sql" 12 | } 13 | } 14 | 15 | filter { 16 | mutate { 17 | remove_field => ["@version", "@timestamp"] 18 | } 19 | } 20 | 21 | output { 22 | # stdout { codec => rubydebug { metadata => true } } 23 | elasticsearch { 24 | hosts => ["http://elasticsearch:9200"] 25 | index => "books" 26 | action => "index" 27 | document_id => "%{isbn}" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /volumes/logstash/pipeline/incremental.conf: -------------------------------------------------------------------------------- 1 | input { 2 | jdbc { 3 | jdbc_driver_library => "/usr/share/logstash/mysql-connector-java-8.0.22.jar" 4 | jdbc_driver_class => "com.mysql.jdbc.Driver" 5 | jdbc_connection_string => "jdbc:mysql://mysql:3306" 6 | jdbc_user => "avid_reader" 7 | jdbc_password => "i_love_books" 8 | sql_log_level => "debug" # Set Logstash logging level as this 9 | use_column_value => true 10 | tracking_column => "journal_id" 11 | tracking_column_type => "numeric" 12 | statement_filepath => "/usr/share/logstash/config/queries/incremental.sql" 13 | schedule => "*/5 * * * * *" # Run every 5 seconds 14 | } 15 | } 16 | 17 | filter { 18 | if [action_type] == "create" or [action_type] == "update" { 19 | mutate { add_field => { "[@metadata][action]" => "index" } } 20 | } else if [action_type] == "delete" { 21 | mutate { add_field => { "[@metadata][action]" => "delete" } } 22 | } 23 | 24 | mutate { 25 | remove_field => ["@version", "@timestamp", "action_type"] 26 | } 27 | } 28 | 29 | output { 30 | # stdout { codec => rubydebug { metadata => true } } 31 | elasticsearch { 32 | hosts => ["http://elasticsearch:9200"] 33 | index => "books" 34 | action => "%{[@metadata][action]}" 35 | document_id => "%{isbn}" 36 | } 37 | } 38 | --------------------------------------------------------------------------------