Quickly access every chapter of Database Processing Fundamentals Design and Implementation 15th Edition Kroenke Solutions Manual via PDF download.
Quickly access every chapter of Database Processing Fundamentals Design and Implementation 15th Edition Kroenke Solutions Manual via PDF download.
https://testbankfan.com/product/database-processing-fundamentals-
design-and-implementation-15th-edition-kroenke-test-bank/
https://testbankfan.com/product/database-processing-fundamentals-
design-and-implementation-13th-edition-kroenke-solutions-manual/
https://testbankfan.com/product/database-processing-fundamentals-
design-and-implementation-14th-edition-kroenke-solutions-manual/
https://testbankfan.com/product/database-processing-fundamentals-
design-and-implementation-13th-edition-kroenke-test-bank/
Database Processing Fundamentals Design and Implementation
14th Edition Kroenke Test Bank
https://testbankfan.com/product/database-processing-fundamentals-
design-and-implementation-14th-edition-kroenke-test-bank/
https://testbankfan.com/product/database-processing-11th-edition-
kroenke-solutions-manual/
https://testbankfan.com/product/database-processing-12th-edition-
kroenke-solutions-manual/
https://testbankfan.com/product/database-processing-12th-edition-
kroenke-test-bank/
https://testbankfan.com/product/database-systems-design-
implementation-and-management-12th-edition-coronel-solutions-manual/
INSTRUCTOR’S MANUAL
TO ACCOMPANY
Chapter 7
SQL for Database Construction and Application Processing
Prepared By
David J. Auer
Western Washington University
Instructor's Manual to accompany:
All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted,
in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior
written permission of the publisher. Printed in the United States of America.
Chapter Seven – SQL For Database Construction and Application Processing
❖ CHAPTER OBJECTIVES
• To be able to create and manage table structures using SQL statements
• To understand how referential integrity actions are implemented in SQL statements
• To be able to create and execute SQL constraints
• To understand several uses for SQL views
• To be able to use SQL statements to create, use, and manage views
• To gain an understanding of how SQL is used in an application program
• To understand how to create and use functions
• To understand how to create and use triggers
• To understand how to create and use stored procedures
Page 7-3
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
❖ ERRATA
[05-MAY-2018 – David Auer] Page 412. The Queen Ann Curiosity Shop Project
Question M has a misspelled word. The corrected question text is:
Write an SQL statement to create a view called EmployeeSupervisorView that shows who, if anyone,
supervises each employee at The Queen Anne Curiosity Shop, and which contains E1.LastName as
EmployeeLastName, E1.FirstName as EmployeeFirstName, E1.Position, E2.Lastname as
SupervisorLastName, and E2.FirstName as SupervisorFirstName. E1 and E2 are two aliases for the
EMPLOYEE table, and are required to run a query on a recursive relationship. Include employees
who do not have a supervisor. Run the statement to create the view, and then test the view with an
appropriate SQL SELECT statement.
[05-MAY-2018 – Scott Vandenberg] Page 416. There is an error in the list of values for
the STORE.Country column. Based on Figure 7-61, possible values should include the
People’s Republic of China, but not Hong Kong because Hong Kong is now part of the
People’s Republic of China. The corrected question text is:
Values of the Country column in the STORE table are restricted to: India, Japan, People’s Republic of
China, Peru, Philippines, Singapore, and United States.
[05-MAY-2018 – David Auer] Page 412. The Queen Ann Curiosity Shop Project
Question M has a misspelled word. The corrected question text is:
Write an SQL statement to create a view called EmployeeSupervisorView that shows who, if anyone,
supervises each employee at The Queen Anne Curiosity Shop, and which contains E1.LastName as
EmployeeLastName, E1.FirstName as EmployeeFirstName, E1.Position, E2.Lastname as
SupervisorLastName, and E2.FirstName as SupervisorFirstName. E1 and E2 are two aliases for the
EMPLOYEE table, and are required to run a query on a recursive relationship. Include employees
who do not have a supervisor. Run the statement to create the view, and then test the view with an
appropriate SQL SELECT statement.
[06-MAY-2018 – Bob Yoder] Page 412. The Queen Ann Curiosity Shop Project
Question Q has an incorrect SQL view name. The corrected question text is:
Write an SQL statement to create a view called CustomerFirstNameFirstSaleSummaryView that
contains SALE.SaleID, SALE.SaleDate, CUSTOMER.CustomerID, the concatenated customer name
using the FirstNameFirst function, SALE_ITEM .SaleItemID, SALE_ITEM.ItemID,
ITEM.ItemDescription, and ITEM.ItemPrice. Run the statement to create the view, and then test the
view with an appropriate SQL SELECT statement.
Page 7-4
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
❖ TEACHING SUGGESTIONS
• If your students have been using Access, now is really the time to switch to Microsoft
SQL Server 2017, Oracle Database, or MySQL 5.7. Refer your students to the
beginning of Online Chapter 10A for Microsoft SQL Server 2017, Online Chapter 10B
for Oracle Database (Oracle Database Express Edition 11g Release 2, aka Oracle
Database XE is heavily recommended), and Online Chapter 10C for MySQL 5.7
setup instructions.
• The SQL examples shown in Chapter 7 and the questions in the end of chapter
material work the best with the Transact-SQL (T-SQL) used in Microsoft SQL Server
2017. If your students are using Microsoft SQL Server 2017, they should be able to
create the tables, populate the tables and run the other SQL commands with little
trouble. The SQL used in Microsoft Access 2016, Oracle Database (PL/SQL), and
MySQL 5.7 varies in their ability to support all the SQL commands used here.
Oracle Database and MySQL do a better job of supporting standard SQL, while
Microsoft Access has significant variations from the standard. In the answers to the
end of chapter questions I have often shown the solution using two or more of the
three DBMSs. Otherwise, I primarily use Microsoft SQL Server 2017. If your
students are using Microsoft Access 2016, Oracle Database, or MySQL 5.7 check
the solutions to the questions before you assign them so that you can tell your
students what to watch out for!
• As discussed in the IM Chapter 2 suggestions, there is a useful teaching technique
that will allow you to demonstrate the SQL queries in the text using MS SQL Server if
you have it available.
• Create a new SQL Server database named Cape-Codd.
• Use the SQL statements in the *.sql text file DBP-e15-MSSQL-Cape-Codd-
Create-Tables.sql to create the Cape Codd database tables (the additional
tables used in the Chapter 2 Review Questions, are also created).
• Use the SQL statements in the *.sql text file DBP-e15-MSSQL-Cape-Codd-
Insert-Data.sql to populate the Cape Codd tables (the additional tables used
in the Chapter 2 Review Questions, are also populated).
• Open the Microsoft SQL Server Management Studio and select the Cape-
Codd database.
• In the Microsoft SQL Server Management Studio, open the *.sql text file DBP-
e15-MSSQL-Cape-Codd-Query-Set-CH02.sql. This file contains all the
queries shown in the Chapter 2 text.
• Highlight the query you want to run, and then click the Execute Query button
to display the results of the query. An example of this is shown in the
following screenshot.
• All of the *.sql text files needed to do this are available in the Instructor’s
Resource Center on the text’s Web site
(www.pearsonhighered.com/kroenke).
Page 7-5
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
• The trick shown for SQL Server 2017 also works for Oracle Database using the
Oracle SQL Developer and for MySQL 5.7 using the MySQL workbench.
• Remind your students that Microsoft Access does not support all SQL constructs.
• Because of the complexity of the SQL statements to construct the View Ridge
Gallery VRG database, the necessary SQL scripts are included in the set of student
data files available at the text’s Web site (www.pearsonhighered.com/kroenke).
• Review Questions 7.04-7.40 are specifically designed to reinforce the most important
basic ideas of creating and populating tables, with a bit on SQL views also included.
These exercises are based on our recent classroom teaching experience, which
taught us the need for some very basic exercises in creating and populating tables
before going on to more complex assignments. This set of exercises is very heavily
recommended!
• Tell your students that a check constraint that provides an enumerated list is often
implemented with a table and a relationship. For example, the constraint CHECK
(Rank IN (‘FR’, ‘SO’, ‘JR’, ‘SR’)) could be implemented by creating a Rank table and
placing the list in that table. Now the Rank attribute becomes a foreign key and
referential integrity enforces the constraint. Changing the list means adding and
deleting from the RANK table.
• The relationship of database applications and the DBMS is sometimes confusing.
For a simple application using a personal DBMS such as Microsoft Access, the
application and the DBMS are nearly indistinguishable. If an application has only a
few forms and reports, and all of these are created using DBMS facilities, then the
application and the DBMS are the same. On the other hand, for an organizational
database processed by say, Oracle Database, any application elements discussed in
this chapter would be provided by application program code completely separate
Page 7-6
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
from the DBMS. It’s easier to understand all of this by focusing on application
functions that must be provided — in some cases by facilities in the DBMS and in
other cases by separate application programs.
• It is important to distinguish between an SQL view (the logical structure of data
elements) and a materialization of the view (a form or report). One SQL view can
have many materializations. While this distinction has always been important, it has
become even more so in light of three-tier architecture.
• Remind students that views can be used to implement certain types of security. Most
commonly, they are used to restrict access to attributes and to restrict actions on
tables. This is discussed in detail in Chapter 9.
• You might also remind students that sometimes SQL views are necessary to
complete certain queries.
• Too often students understand how SQL can be used for interactive query, but do
not really understand its role in application processing. In fact, SQL is far more
frequently used for SQL view processing as described here than it is as an
interactive query tool.
• SQL/Persistent Stored Modules (SQL/PSM), stored procedures and triggers
complete a student’s understanding of how database systems work. Often, we talk
about designing database systems to enforce business rules but find many rules that
we cannot enforce through design alone. Triggers will help enforce most rules that
design cannot enforce.
• SQL *sql files containing the solutions to the questions and projects at the end of the
chapter are available on the text’s Web site (www.pearsonhighered.com/kroenke).
Page 7-7
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
• CREATE TABLE
• ALTER TABLE
• DROP TABLE
• TRUNCATE TABLE
7.2 What does DML stand for? List the SQL DML statements.
• INSERT
• UPDATE
• DELETE
• MERGE
7.3 Explain the meaning of the following expression: IDENTITY (4000, 5).
The IDENTITY keyword is used to modify a column name, and is used to specify surrogate keys.
The first number parameter after IDENTITY specifies the starting value for the surrogate key,
and the second number specifies the increment value for each additional record. Thus a column
named RelationID and modified by IDENTITY (4000, 5) will be a surrogate key named
RelationID with an initial value of 4000 (for the first record in the relation), and with following
values incremented by 5: 4000, 4005, 4010, etc.
Page 7-8
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
For this set of Review Questions, we will create and use a database with a set of tables that will
allow us to compare variations in SQL CREATE TABLE and SQL INSERT statements. The
purpose of these questions is to illustrate different situations that call for specific uses of various
SQL CREATE TABLE and SQL INSERT options.
The database will be named CH07_RQ_TABLES and will contain the following six tables:
EmailAddress is a text column containing an email address, and is therefore not a surrogate
key. CustomerID is a surrogate key that starts at 1 and increments by 1. SaleID is a surrogate
key that starts at 20150001 and increases by 1.
The column characteristics for these tables are shown in Figures 7-35 (CUSTOMER_01), 7-36
(CUSTOMER_02, CUSTOMER_03, and CUSTOMER_04), 7-37 (SALE_01), and 7-38
(SALE_02). The data for these tables are shown in Figures 7-39 (CUSTOMER_01), 7-40
(CUSTOMER_02), 7-41 (CUSTOMER_04), 7-42 (SALE_01), and 7-43 (SALE_02).
7.4 If you are using Microsoft SQL Server, Oracle Database, or MySQL, create a folder in
your Documents folder to save and store the *.sql scripts containing the SQL statements
that you are asked to create in the following Review Questions about the
CH07_RQ_TABLES database.
Page 7-9
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
• If you are using Microsoft Access 2016, create a folder named CH07-Databases
in your DBPe15-Access-2016-Databases folder.
This is self-explanatory. The student will create the appropriate folder to hold the *.sql scripts
created in these Review Questions
This is self-explanatory. The student will create the appropriate database base upon which DBMS
product they are using. For further guidance on creating a new database:
7.6 If you are using Microsoft SQL Server, Oracle Database, or MySQL, create and save an
SQL script named CH07-RQ-TABLES-Tables-Data-and-Views.sql to hold the answers to
Review Questions 7.7–7.40. Use SQL script commenting (/* and */ symbols) to write
your answers to Review Questions that require written answers as comments.
If you are running Microsoft Access 2016, create and save a Microsoft Notepad text file
named CH07-RQ-TABLES-Tables-Data-and-Views.txt to hold the answers to Review
Questions 7.7–7.40. After you run each SQL statement in Microsoft Access 2016, copy
your SQL statement to this file.
This is self-explanatory. The student will create an *.sql script named CH07-RQ-TABLES-
Tables-Data-and-Views.sql, unless the student is using Microsoft Access 2016 (which they really
shouldn’t be at this point!), in which case they will create a text file named CH07-RQ-TABLES-
Tables-Data-and-Views.txt to hold certain answers.
7.7 Write and run an SQL CREATE TABLE statement to create the CUSTOMER_01 table.
Page 7-10
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
7.8 Write and run an SQL CREATE TABLE statement to create the CUSTOMER_02 table.
Page 7-11
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
7.9 Are there any significant differences between the CUSTOMER_01 and CUSTOMER_02
tables? If so, what are they?
7.10 Write and run an SQL CREATE TABLE statement to create the CUSTOMER_03 table.
Page 7-12
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
7.11 Are there any significant differences between the CUSTOMER_02 and CUSTOMER_03
tables? If so, what are they?
The table structure is the same, so there are no significant differences between the
CUSTOMER_02 and CUSTOMER_03 tables.
7.12 Write and run an SQL CREATE TABLE statement to create the CUSTOMER_04 table.
Page 7-13
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
7.13 Are there any significant differences between the CUSTOMER_03 and CUSTOMER_04
tables? If so, what are they?
The table structure is the same, so there are no significant differences between the
CUSTOMER_03 and CUSTOMER_04 tables.
7.14 Write and run an SQL CREATE TABLE statement to create the SALE_01 table. Note
that the foreign key is EmailAddress, which references CUSTOMER_01. EmailAddress.
In this database, CUSTOMER_01 and SALE_01 records are never deleted, so that there
will be no ON DELETE referential integrity action. However, you will need to decide how
to implement the ON UPDATE referential integrity action.
Page 7-14
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
);
CREATE TABLE SALE_01(
SaleID INT NOT NULL AUTO_INCREMENT,
DateOfSale DATE NOT NULL,
EmailAddress VARCHAR(100) NOT NULL,
SaleAmount NUMERIC(7,2) NOT NULL,
CONSTRAINT SALE_PK_01 PRIMARY KEY(SaleID),
CONSTRAINT S_01_C_01_FK FOREIGN KEY(EmailAddress)
REFERENCES CUSTOMER_01(EmailAddress)
ON UPDATE CASCADE
);
7.15 In Review Question 7.14, how did you implement the ON UPDATE referential integrity
action? Why?
The ON UPDATE referential integrity action is implemented as CASADE. This is because the
primary key of CUSTOMER_01 (EmailAddress) is not a surrogate key, and may therefore be
changed. Any changes to EmailAdress in CUSTOMER_01 must also be made to corresponding
values in SALE_01.
Page 7-15
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
7.16 Are there any significant differences between the CUSTOMER_01 and SALE_01 tables?
If so, what are they?
SALE_01 uses a surrogate primary key, while CUSTOMER_01 uses a non-surrogate primary
key.
7.17 Could we have created the SALE_01 table before creating the CUSTOMER_01 table? If
not, why not?
No, because the primary key CUSTOMER_01.EmailAddress must be created before the foreign
key SALE_01.EmailAddress.
7.18 Write and run an SQL CREATE TABLE statement to create the SALE_02 table. Note
that the foreign key is CustomerID, which references CUSTOMER_04.CustomerID. In
this database, CUSTOMER_04 and SALE_02 records are never deleted, so that there
will be no ON DELETE referential integrity action. However, you will need to decide how
to implement the ON UPDATE referential integrity action.
Page 7-16
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
);
CREATE TABLE SALE_02(
SaleID INT NOT NULL AUTO_INCREMENT,
DateOfSale DATE NOT NULL,
EmailAddress VARCHAR(100) NOT NULL,
SaleAmount NUMERIC(7,2) NOT NULL,
CONSTRAINT SALE_02_PK PRIMARY KEY(SaleID),
CONSTRAINT S_02_C_04_FK FOREIGN KEY(CustomerID)
REFERENCES CUSTOMER_04(CustomerID)
ON UPDATE NO ACTION
);
7.19 In Review Question 7.18, how did you implement the ON UPDATE referential integrity
action? Why?
7.20 Are there any significant differences between the SALE_01 and SALE_02 tables? If so,
what are they?
While both tables use the same structure, they link to different versions of the CUSTOMER table,
and therefore SALE_01 uses ON UPDATE CASCADE while SALE_02 uses ON UPDATE NO
ACTION.
7.21 Could we have created the SALE_02 table before creating the CUSTOMER_04 table? If
not, why not?
No, because the primary key CUSTOMER_04.CustomerID must be created before the foreign
key SALE_02.CustomerID.
Page 7-17
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
7.22 Write and run a set of SQL INSERT statements to populate the CUSTOMER_01 table.
7.23 Write and run a set of SQL INSERT statements to populate the CUSTOMER_02 table.
Do not use a bulk INSERT command.
Page 7-18
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
7.24 Are there any significant differences between the sets of SQL INSERT statements used
to populate the CUSTOMER_01 and CUSTOMER_02 tables? If so, what are they?
Although the SQL code appears identical, the SQL INSERT statements for CUSTOMER_01
contain the primary key EmailAddress values, while the SQL INSERT statements for
CUSTOMER_02 are written anticipating that the values for the surrogate primary key
CustomerID values will be supplied by the DBMS.
7.25 Write and run an SQL INSERT statement to populate the CUSTOMER_03 table. Use a
bulk INSERT command and the data in the CUSTOMER_01 table.
7.26 Are there any significant differences between the sets of SQL INSERT statements used
to populate the CUSTOMER_02 and CUSTOMER_03 tables? If so, what are they?
The SQL INSERT statements for CUSTOMER_02 contain the needed data values for the
statements, while the bull insert SQL INSERT statements for CUSTOMER_03 depend upon data
in CUSTOMER_01.
In addition, in order to use the sequence in a bulk insert in Oracle, we needed to use a nested
query in the FROM clause (see RQ 7.25 above).
Page 7-19
Copyright © 2019Pearson Education, Inc.
Chapter Seven – SQL For Database Construction and Application Processing
7.27 Write and run a set of SQL INSERT statements to populate rows 1 through 3 in the
CUSTOMER_04 table. Note that this question involves non-sequential surrogate key
values and is based on techniques for Microsoft SQL Server 2017 in Chapter 10A, for
Oracle Database in Chapter 10B, or for MySQL 5.7 in Chapter 10C, depending upon
which DBMS product you are using.
/********************************************************************************/
Page 7-20
Copyright © 2019Pearson Education, Inc.
Exploring the Variety of Random
Documents with Different Content
mourners, hidalgos and old Christians all, with olive faces and beards
of formal cut, looking on with true Castilian gravity and phlegm, as if
the transaction were an every-day occurrence. As they were mostly
portraits, perhaps some of the originals did actually stand, a few
years later, with the like awe in their hearts and calm on their
cheeks, in the royal presence-chamber, when the news came to
court that the proud Armada of Spain had been vanquished by the
galleys of Howard, and cast away on the rocks of the Hebrides." We
make no apology for thus freely quoting from Mr Stirling's pages his
description of this picture; the extract brings vividly before our
readers at once the merits of the old Toledan painter, and his
accomplished biographer and critic. After embellishing his adopted
city, not only with pictures such as this, but with works of sculpture
and architecture, and vindicating his graceful profession from the
unsparing exactions of the tax-gatherers—a class who appear to
have waged an unrelenting though intermittent war against the fine
arts in Spain—he died there at a green old age in 1625, and was
buried in the church of St Bartolemé. Even the painters most
employed at the munificent and art-loving court of the second and
third Philips, found time to paint for the venerable cathedral. Thus,
in 1615, Vincencio Carducho, the Florentine, painted, with Eugenio
Caxes, a series of frescoes in the chapel of the Sagrario; and thus
Eugenio Caxes, leaving the works at the Pardo and Madrid, painted
for the cathedral of Toledo the Adoration of the Magi, and other
independent pictures.
Meanwhile the school of El Greco was producing worthy fruit; from
it, in the infancy of the seventeenth century, came forth Luis Tristan,
an artist even now almost unknown in London and Edinburgh, but
whose style Velasquez did not disdain to imitate, and whose praises
he was never tired of sounding. "Born, bred, and sped" in Toledo, or
its neighbourhood, as Morales was emphatically the painter of
Badajoz, so may Tristan be termed the painter of Toledo. No foreign
graces, no classical models, adorned or vitiated his stern Spanish
style; yet, in his portrait of Archbishop Sandoval, he is said by Mr
Stirling to have united the elaborate execution of Sanchez Coello
with much of the spirit of Titian. And of him is the pleasant story
recorded, that having, while yet a stripling, painted for the
Jeronymite convent at Toledo a Last Supper, for which he asked two
hundred ducats, and being denied payment by the frugal friars, he
appealed with them to the arbitration of his old master, El Greco,
who, having viewed the picture, called the young painter a rogue
and a novice, for asking only two for a painting worth five hundred
ducats. In the same Toledan church that contains the ashes of his
great master, lies the Murcian Pedro Orrente, called by our author
"the Bassano, or the Roos—the great sheep and cattle master of
Spain:" he too was employed by the art-encouraging chapter, and
the cathedral possessed several of his finest pictures. But with
Tristan and Orrente the glories of Toledan art paled and waned; and,
trusting that our readers have not been uninterested in following our
brief sketch of the remarkable men who for four hundred years
rendered this quaint old Gothic city famous for its artistic splendours,
we retrace our steps, halting and perplexed among so many
pleasant ways, blooming flowers, and brilliant bowers, to the
magnificent, albeit gloomy Escurial, where Philip II lavished the
wealth of his mighty empire in calling forth the most vigorous
energies of Spanish and of foreign art.
For more than thirty years did the astonished shepherds of the
Guadaramas watch the mysterious pile growing under scaffolding
alive with armies of workmen; and often, while the cares of the Old
World and the New—to say nothing of that other World, which was
seldom out of Philip's thoughts, and to which his cruel fanaticism
hurried so many wretches before their time—might be supposed to
demand his attention at Madrid, were they privileged to see their
mighty monarch perched on a lofty ledge of rock, for hours, intently
gazing upon the rising walls and towers which were to redeem his
vow to St Laurence at the battle of Saint Quentin, and to hand
down, through all Spanish time, the name and fame of the royal and
religious founder. On the 23d of April 1563, the first stone of this
Cyclopean palace was laid, under the direction of Bautiste di Toledo,
at whose death, in 1567, the work was continued by Juan de
Herrera, and finally perfected by Leoni (as to the interior
decorations) in 1597. Built in the quaint unshapely form of St
Laurence's gridiron, the Escurial is doubtless open to much severe
criticism; but the marvellous grandeur, the stern beauty, and the
characteristic effect of the gigantic pile, must for ever enchant the
eyes of all beholders, who are not doomed by perverse fate to look
through the green spectacles of gentle dulness. But it is not our
purpose to describe the Escurial; we only wish to bring before our
readers the names and merits of a few of the Spanish artists, who
found among its gloomy corridors or sumptuous halls niches in the
temple of fame, and in its saturnine founder the most gracious and
munificent of patrons. Suffice it, then, to say of the palace-convent,
in Mr Stirling's graceful words, that "Italy was ransacked for pictures
and statues, models and designs; the mountains of Sicily and
Sardinia for jaspers and agates; and every sierra of Spain furnished
its contribution of marble. Madrid, Florence, and Milan supplied the
sculptures of the altars; Guadalajara and Cuenca, gratings and
balconies; Saragossa the gates of brass; Toledo and the Low
Countries, lamps, candelabra, and bells; the New World, the finer
woods; and the Indies, both East and West, the gold and gems of
the custodia, and the five hundred reliquaries. The tapestries were
wrought in Flemish looms; and, for the sacerdotal vestments, there
was scarce a nunnery in the empire, from the rich and noble orders
of Brabant and Lombardy to the poor sisterhoods of the Apulian
highlands, but sent an offering of needlework to the honoured
fathers of the Escurial."
We could wish to exclude from our paper all notice of the foreign
artists, whose genius assisted in decorating the new wonder of the
world; but how omit from any Escurialian or Philippian catalogue the
names of Titian and Cellini, Cambiaso and Tibaldi? For seven long
years did the great Venetian labour at his famous Last Supper,
painted for, and placed in the refectory; and countless portraits by
his fame-dealing pencil graced the halls and galleries of the Palatian
convents. In addition to these, the Pardo boasted eleven of his
portraits; among them, one of the hero Duke Emmanuel Philibert of
Savoy, who has received a second grant of renown—let us hope a
more lasting one[17]—from the poetic chisel of Marochetti, and stands
now in the great square of Turin, the very impersonation of chivalry,
horse and hero alike—�����������
�����������.
The magnificent Florentine contributed "the matchless marble
crucifix behind the prior's seat in the choir," of which Mr Stirling says
—"Never was marble shaped into a sublimer image of the great
sacrifice for man's atonement." Luca Cambiaso, the Genoese,
painted the Martyrdom of St Laurence for the high altar of the
church—a picture that must have been regarded, from its subject
and position, as the first of all the Escurial's religious pictures,—
besides the vault of the choir, and two great frescoes for the grand
staircase.
Pellegrino Tibaldi, a native of the Milanese, came at Philip's
request to the Escurial in 1586. He, too, painted a Martyrdom of
Saint Laurence for the high altar, but apparently with no better
success than his immediate predecessor, Zuccaro, whose work his
was to replace. But the ceiling of the library was Tibaldi's field of
fame; on it he painted a fresco 194 feet long by 30 wide, which still
speaks to his skill in composition and brilliancy in colouring. Philip
rewarded him with a Milanese marquisate and one hundred
thousand crowns.
Morales, the first great devotional painter of Castile, on whom his
admiring countrymen bestowed the soubriquet of "divine"—with
more propriety, it must be confessed, than their descendants have
shown in conferring it upon Arguelles—contributed but one picture
to the court, and none to the Escurial; but in Alonzo Sanchez Coello,
born at Benifayrô, in Valencia, we find a famous native artist
decorating the superb walls of the new palace. While at Madrid he
was lodged in the Treasury, a building which communicated with the
palace by a door, of which the King kept a key; and often would the
royal Mæcenas slip thus, unobserved by the artist, into his studio.
Emperors and popes, kings and queens, princes and princesses,
were alike his friends and subjects; but we are now only concerned
to relate that, in 1582, he painted "five altar-pieces for the Escurial,
each containing a pair of saints." Far more of interest, however,
attaches itself to the name and memory of Juan Fernandez
Navarete, "whose genius was no less remarkable than his infirmities,
and whose name—El Mudo, the dumb painter—is as familiar to
Europe as his works are unknown," (vol. i. p. 250.) Born at Logroño
in 1526, he went in his youth to Italy. Here he attracted the notice of
Don Luis Manrique, grand-almoner to Philip, who procured him an
invitation to Madrid. He was immediately set to work for the
Escurial; and in 1571 four pictures, the Assumption of the Virgin, the
Martyrdom of St James the Great, St Philip, and a Repenting St
Jerome, were hung in the sacristy of the convent, and brought him
five hundred ducats. In 1576 he painted, for the reception-hall of the
convent, a large picture representing Abraham receiving the three
Angels. "This picture," says Father Andres Ximenes, quoted by Mr
Stirling, (vol. i. p. 255) "so appropriate to the place it fills, though
the first of the master's works that usually meets the eye, might, for
its excellence, be viewed the last, and is well worth coming many a
league to see." An agreement, bearing date the same year, between
the painter and the prior, by which the former covenanted to paint
thirty-two large pictures for the side altars, is preserved by Cean
Bermudez; but El Mudo unfortunately died when only eight of the
series had been painted. On the 28th of March 1579 this excellent
and remarkable painter died in the 53d year of his age. A few years
later, Juan Gomez painted from a design of Tibaldi a large picture of
St Ursula, which replaced one of Cambiaso's least satisfactory
Escurialian performances.
While acres of wall and ceiling were being thus painted in fresco,
or covered by large and fine pictures, the Escurial gave a ready
home to the most minute of the fine arts: illuminators of missals,
and painters of miniatures, embroiderers of vestments, and
designers of altar-cloths, found their labours appreciated, and their
genius called forth, no less than their more aspiring compeers. Fray
Andrez de Leon, and Fray Martin de Palencia, enriched the Escurial
with exquisite specimens of their skill in the arts of miniature-
painting and illuminating; and under the direction of Fray Lorenzo di
Monserrate, and Diego Rutiner, the conventual school of embroidery
produced frontals and dalmatics, copes, chasubles, and altar-cloths,
of rarest beauty and happiest designs. The goldsmiths and
silversmiths, too, lacked not encouragement in this greatest of
temples. Curious was the skill, and cunning the hand, which
fashioned the tower of gold and jasper to contain the Escurial's
holiest relique,—a muscle, singed and charred, of St Laurence—and
no doubt that skill was nobly rewarded.
In 1598, clasping to his breast the veil of Our Lady of Monserrat,
in a little alcove hard by the church of the Escurial, died its grim,
magnificent founder. He had witnessed the completion of his gigantic
designs: palace and convent, there it stood—a monument alike of
his piety and his pride, and a proof of the grandeur and resources of
the mighty empire over which he ruled. But he appears to have
thought with the poet—
But if he never again put pen to paper, in these annals of the artists
of Spain he has given to the reading public a work which, for utility
of design, patience of research, and grace of language, merits and
has won the highest honours of authorship.
THE DODO AND ITS KINDRED.[19]
What was the Dodo? When was the Dodo? Where is the Dodo?
are all questions, the first more especially, which it is fully more easy
to ask than answer. Whoever has looked through books on natural
history—for example, that noted but now scarce instructor of our
early youth, the Three Hundred Animals—must have observed a
somewhat ungainly creature, with a huge curved bill, a shortish
neck, scarcely any wings, a plumy tuft upon the back—considerably
on the off-side, though pretending to be a tail,—and a very
shapeless body, extraordinarily large and round about the hinder
end. This anomalous animal being covered with feathers, and
having, in addition to the other attributes above referred to, only two
legs, has been, we think justly, regarded as a bird, and has
accordingly been named the Dodo. But why it should be so named is
another of the many mysterious questions, which require to be
considered in the history of this unaccountable creature. No one
alleges, nor can we conceive it possible, that it claims kindred with
either of the only two human beings we ever heard of who bore the
name: "And after him (Adino the Eznite) was Eleazar the son of
Dodo, the Ahohite, one of the three mighty men with David, when
they defied the Philistines that were there gathered together to
battle, and the men of Israel were gone away." Our only other
human Dodo belonged to the fair sex, and was the mother of the
famous Zoroaster, who flourished in the days of Darius Hystaspes,
and brought back the Persians to their ancient fire-worship, from the
adoration of the twinkling stars. The name appears to have been
dropped by both families, as if they were somewhat ashamed of it;
and we feel assured that of such of our readers as admit that
Zoroaster must have had a mother of some sort, very few really
remember now-a-days that her name was Dodo. There were no
baptismal registers in those times; or, if such existed, they were
doubtless consumed in the "great fire"—a sort of periodical, it may
be providential, mode of shortening the record, which seems to
occur from time to time in all civilised countries.
But while the creature in question,—we mean the feathered biped
—has been continuously presented to view in those "vain
repetitions" which unfortunately form the mass of our information in
all would-be popular works on natural history, we had actually long
been at a stand-still in relation to its essential attributes—the few
competent authorities who had given out their opinion upon this, as
many thought, stereotyped absurdity, being so disagreed among
themselves as to make confusion worse confounded. The case,
indeed, seemed desperate; and had it not been that we always
entertained a particular regard for old Clusius, (of whom by-and-by,)
and could not get over the fact that a Dodo's head existed in the
Ashmolean Museum, Oxford, and a Dodo's foot in the British
Museum, London, we would willingly have indulged the thought that
the entire Dodo was itself a dream. But, shaking off the cowardly
indolence which would seek to shirk the investigation of so great a
question, let us now inquire into a piece of ornithological biography,
which seemed so singularly to combine the familiar with the
fabulous. Thanks to an accomplished and persevering naturalist of
our own day—one of the most successful and assiduous inquirers of
the younger generation—we have now all the facts, and most of the
fancies, laid before us in a splendid royal quarto volume, just
published, with numerous plates, devoted to the history and
illustration of the "Dodo and its Kindred." It was, in truth, the latter
term that cheered our heart, and led us again towards a subject
which had previously produced the greatest despondency; for we
had always, though most erroneously, fancied that the great
misformed lout of our Three Hundred Animals was all alone in the
wide world, unable to provide for himself, (and so, fortunately,
without a family,) and had never, in truth, had either predecessors or
posterity. Mr Strickland, however, has brought together the disjecta
membra of a family group, showing not only fathers and mothers,
sisters and brothers, but cousins, and kindred of all degrees. Their
sedate and somewhat sedentary mode of life is probably to be
accounted for, not so much by their early habits as their latter end.
Their legs are short, their wings scarcely existant, but they are
prodigiously large and heavy in the hinder-quarters; and organs of
flight would have been but a vain thing for safety, as they could not,
in such wooded countries as these creatures inhabited, have been
made commensurate with the uplifting of such solid bulk, placed so
far behind that centre of gravity where other wings are worked. We
can now sit down in Mr Strickland's company, to discuss the subject,
not only tranquilly, but with a degree of cheerfulness which we have
not felt for many a day: thanks to his kindly consideration of the
Dodo and "its kindred."
The geographical reader will remember that to the eastward of the
great, and to ourselves nearly unknown, island of Madagascar, there
lies a small group of islands of volcanic origin, which, though not
exactly contiguous among themselves, are yet nearer to each other
than to the greater island just named, and which is interposed
between them and the coast of Southern Africa. They are named
Rodriguez, Bourbon, and Mauritius, or the Isle of France. There is
proof that not fewer than four distinct species of large-bodied, short-
winged birds, of the Dodo type, were their inhabitants in
comparatively recent times, and have now become utterly extinct.
We say utterly, because neither proof nor vestige of their existence
elsewhere has been at any time afforded; and the comparatively
small extent, and now peopled state of the islands in question,
(where they are no longer known,) make the continuous and
unobserved existence of these birds, so conspicuous in size and slow
of foot, impossible.
Now, it is this recent and total extinction which renders the
subject one of more than ordinary interest. Death is an admitted law
of nature, in respect to the individuals of all species. Geology,
"dragging at each remove a lengthened chain" has shown how, at
different and distant eras, innumerable tribes have perished and
been supplanted, or at least replaced, by other groups of species,
entire races, better fitted for the great climatic and other physical
changes, which our earth's surface has undergone from time to
time. How these changes were brought about, many, with more or
less success, (generally less,) have tried to say. Organic remains—
that is, the fossilised remnants of ancient species—sometimes
indicate a long continuance of existence, generation after generation
living in tranquillity, and finally sinking in a quiet grave; while other
examples show a sudden and violent death, in tortuous and excited
action, as if they had been almost instantaneously overwhelmed and
destroyed by some great catastrophe.
Several local extinctions of elsewhere existing species are known
to naturalists—such as those of the beaver, the bear, and the wolf,
which no longer occur in Great Britain, though historically known, as
well as organically proved by recent remains, to have lived and died
among us. Their extinction was slow and gradual, and resulted
entirely from the inroads which the human race—that is, the
increase of population, and the progress of agriculture and
commerce—necessarily made upon their numbers, which thus
became "few by degrees, and beautifully less." The beaver might
have carried on business well enough, in his own quiet way,
although frequently incommoded by the love of peltry on the part of
a hat-wearing people; but it is clear that no man with a small family,
and a few respectable farm-servants, could either permit a large and
hungry wolf to be continually peeping at midnight through the key-
hole of the nursery, or allow a brawny bruin to snuff too frequently
under the kitchen door, (after having hugged the watch-dog to
death,) when the serving-maids were at supper. The extirpation,
then, of at least two of those quondam British species became a
work of necessity and mercy, and might have been tolerated even on
a Sunday between sermons—especially as naturalists have it still in
their power to study the habits of similar wild beasts, by no means
yet extinct, in the neighbouring countries of France and Germany.
But the death of the Dodo and its kindred is a more affecting fact,
as involving the extinction of an entire race, root and branch, and
proving that death is a law of the species, as well as of the
individuals which compose it,—although the life of the one is so
much more prolonged than that of the other that we can seldom
obtain any positive proof of its extinction, except by the observance
of geological eras. Certain other still existing species, well known to
naturalists, may be said to be, as it were, just hovering on the brink
of destruction. One of the largest and most remarkable of
herbivorous animals—a species of wild cattle, the aurochs or
European bison (B. priscus)—exists now only in the forest of
Bialowicksa, from whence the Emperor of Russia has recently
transmitted a living pair to the Zoological Society of London. Several
kinds of birds are also evidently on their last legs. For example, a
singular species of parrot, (Nestor productus,) with the termination
of the upper mandible much attenuated, peculiar to Phipps's Island,
near Norfolk Island, has recently ceased to exist there in the wild
state, and is now known as a living species only from a few surviving
specimens kept in cages, and which refuse to breed. The burrowing
parrot from New Zealand is already on the road to ruin; and more
than one species of that singular and wingless bird, called Apteryx,
also from the last-named island, may be placed in the same
category. Even in our own country, if the landed proprietors were to
yield to the clamour of the Anti-Game-Law League, the red grouse
or moor-game might cease to be, as they occur nowhere else on the
known earth save in Britain and the Emerald Isle.
The geographical distribution of animals, in general, has been
made conformable to laws which we cannot fathom. A mysterious
relationship exists between certain organic structures and those
districts of the earth's surface which they inhabit. Certain extensive
groups, in both the animal and vegetable kingdom, are found to be
restricted to particular continents, and their neighbouring islands. Of
some the distribution is very extensive, while others are totally
unknown except within a limited space, such as some solitary isle,
"Placed far amid the melancholy main."