Saturday, January 25, 2020

The Entity Relationship Diagram

The Entity Relationship Diagram Design the database system for Petcare. Petcare is a medium sized veterinary surgery with six branches across London. They want a database system developed to handle the records of the animals they care for, prescriptions and appointments. Entity-relationship diagram An entity-relationship diagram (ERD) is a data modeling technique that creates a graphical representation of the entities, and the relationships between entities, within an information system. This diagram is often used as a way to visualize a relational database: each entity represents a database table, and the relationship lines represent the keys in one table that point to specific records in related tables. ERDs may also be more abstract, not necessarily capturing every table needed within a database, but serving to diagram the major concepts and relationships. Definition of relationship A relationship is some association between entities. Relationship is shown by line between entities. Relationship lines indicate that each instance of an entity may have a relationship with instances of the connected entity, or vice versa. Definition of entity attribute An entity is characterized by a number of properties or attributes. Values assigned to attributes are used to distinguish one entity from another. Definition of Optionality and Cardinality Symbols at the ends of the relationship lines indicate the optionality and the cardinality of each relationship. Optionality expresses whether the relationship is optional or mandatory. Cardinality expresses the maximum number of relationships. Before analyzing the entities, let have a look the definition of entity. An entity can define as a thing which an organization recognizes as being capable of an independent existence and which can be uniquely identified. In addition, an entity is an abstraction from the complexities of some domain. Each entity is shown in box within the ERD. In this case study, the entities of the Veterinary Surgery are identified as followed: Owner is represented owners of animals which included name, address, home telephone number and mobile telephone number; Animal is represented information of an animal which included sex, age and owner Breed is represented information of breed for each animal type AnimalType is represented type of animal (dog, cat, rabbit, etc) Appointment Petcare keep the following information: the animal the appointment is for, the owner of the animal who requested the appointment, which veterinary doctor the appointment is with, the time and date of the appointment, the diagnosis made and the charge made for the appointment Prescription is represented record shows the period, in days, that the drug must be taken for. The cost of the medication is also recorded Drug contains the name of the drug DrugType contains the name of the drug type (Anti-biotic, Painkiller, Behaviour modification, Ear medication, Skin medication) Vet is represented the following information kept about them: name, address, home telephone number, and mobile telephone number Branch is kept for each branch of Petcare. This records the name of the branch (Enfield, Islington, Hackney, Holloway, Chingford or Leyton), address of the branch, telephone number, opening hours and emergency contact telephone number. Identifying the relationships for the model: Relationships mean that in a relational database, all entities have bonds between them, expressed as relationships. The relationship is a link between to entities, and it tells us something about which relationships exists between our entities. In the ER approach, more than one relationship can exist between any two entities. What is one-to-many and many-to-many Entity Relationship~ One-to-Many Entity Relationship is by far the most common relationship type. It consists of either a one through many or a zero through many notations on one side of a relationship and a one and only one or zero or one notation on the other. However, we can summarize all the entities to the Entity Relationship Data Model. Diagram for Entity Relationship Data Model which describes the content and structure of the data held by Petcare. Owner Breed Animal Prescription Drug DrugType AnimalType Appointment VetAnimalType Vet Branch Fig 1 entity relationship diagram for the Petcare. Normalized Tables Table is a data (value), which is the model of the vertical columns (which identifies the name) and the horizontal lines. A specified number of columns in the table, but may be any number of rows. Each row to identify the subset of the values in the column, which has been identified as a candidate key. Table in another term relationship, although there is the difference that a table is usually a multi-set (bag) as a series, and does not allow copies. In addition, the actual data rows, the panels are generally associated with some other meta-data, such as restrictions on the table or the values in columns. Primary key: Primary key is a field or combination of fields that uniquely identify a record in the table, so each tag can be placed without confusion. Primary key is the field (s) (primary key can be made up of more than one field) that uniquely identifies each record, ie the primary key is unique to each record and the value will never be duplicated in the same table. A constraint is a rule that defines what data are valid for the area. So the primary key constraint is the rule which says that the primary key field can not be empty and can not contain duplicate data. Database systems usually have more than one table, and these are usually related in any way. For example, a customer table and an Order table relate to each other on a unique customer number. The customer table will always be a record for each customer, and the Order table has a record for each order that the customer has. Foreign keys: A foreign key (sometimes referred to as the reference key) is a key used to link two tables together. Typically, you will have a primary key field from one table and paste it into another table, which becomes the foreign key (the primary key in the original table). A foreign key constraint that the data in the foreign keys must be consistent with the primary key of the table is linked. This is called reference integrity is to ensure that data entered is correct and is not unique Definition of Normalization Database normalization is a technique to reduce to the minimum duplication of information for designing relational database tables and in doing so to maintain the database for certain types of structural and logical problems, that is to say data anomalies. For example, when a given piece of information has multiple instances to be found in a table, this possible happen that these instances will not be kept consistent during the data in the table is updated, leading to a loss of data integrity. The such kind of problems are less vulnerable to a sufficiently normalized table, because its structure reflects the basic assumptions of the multiple instances of the same information should be used when a single instance of only. There are rules for UNF, 1NF, 2NF, 3NF, BCNF, 4NF, 5NF and domain-Key NF. Most textbooks mention 5NF and DKNF only in passing and note that they are not particularly applicable to be design process. Normalization is really about the formalism of simple ideas. All too often, the simplicity is lost in esoteric terminology and papers are often excessively concerned with the formalism and provide very practical insight. In this project, why need a normalization the database, it is because normalization is about designing a good database i.e. a set of related tales with a minimum of redundant data and no update, delete or insert anomalies. Normalization is a bottom up approach to database design, The designer interviews users and collects documents reports etc. The data on a report can be listed and then normalized to produce the required tables and attributes. First normal form to second normal form: To move form first normal form to second normal form I remove part-key dependencies. A relation is in second normal form if and only if it is first normal form every non key attributes is fully functionally dependent on the primary key Take for instance the table named Animal here I have a tow compound key BreedID and AppointmentID. BreedID and AppointmentID have influence on the Animal. Hence I brake out the determinant and dependent data items into their own table. Second normal form to third normal form: To move form second normal forms to tired normal form I remove inter-data dependences (non-key dependences). A relation is in third normal form if and only if it its in second normal form and every non-key attribute is non-transitively dependent on the primary key A use full mnemonic for remembering the relation for normalization is the distortion of the legal Oath presented below: No repeating group The data items depended upon the key. The while key And nothing but the key So help me code. Boyce-Codd Normal Form (BCNF) A relation is in Boyce-Codd normal form (BCNF) if and only if every one of its important functional dependencies is a candidate key. The definition of BCNF is handling certain situations which 3NF does not deal with. To distinguish the characteristics of a relation between 3NF and BCNF are given below. Since it is such a relationship is unlikely to have these properties, in the real life design the most case of the relations in 3NF are also in BCNF. Therefore many authors propose a vaguely distinction between 3NF and BCNF when it involves about giving advice to normalize a design for long term. As the relations in 3NF and BCNF are slightly difference, it is a bit difficult to bring up with significantly examples. To be strictly conforming to the definition of 3NF does not handle a relation that: 1. Has multiple candidate keys, which 2. Those candidate keys are composite, and 3. The candidate key overlap. For example, the candidate keys have at least one common attribute. Here is all tables after normalization: OwnerID Name Address HomePhoneNumber Mobile Table 2.11 VetAnimalType Using a Database Management System (DBMS) set-up all of the above normalised tables A Database Management System (DBMS) is a set of computer software programs. It controls the creation, maintenance, and the use of the database with computer as a platform or of an organization and its end users. It allows the organizations to place control of organization-wide database development in the hands of database administrators and other specialists. A DBMS is a set of system software. It helps the use of integrated collection of data records and files known as databases. It allows the programs of different user application to access the same database easily. A DBMS is a set of software programs that controls the organization, storage, management, and retrieval of data in a database. DBMSs are categorized according to their data structures or types. The DBMS accepts requests for data from an application program and instructs the operating system to transfer the appropriate data. The queries and responses must be submitted and received according to a format that conforms to one or more applicable protocols. When a DBMS is used, information systems can be changed much more easily as the organizations information requirements change. New categories of data can be added to the database without disruption to the existing system. A DBMS includes four main parts: data structure, modeling language, database query language, and transaction mechanisms: Components of DBMS Data Definition Subsystem helps user to create and maintain the data dictionary and define the structure of the files in a database. DBMS Engine accepts logical request from the various other DBMS subsystems, converts them into physical equivalent, and actually accesses the database and data dictionary as they exist on a storage device. Data Manipulation Subsystem helps user to add, change, and delete information in a database and query it for valuable information. Software tools within the data manipulation subsystem are most often the primary interface between user and the information contained in a database. It allows user to specify its logical information requirements. Data Administration Subsystem helps users to manage the overall database environment by providing facilities for backup and recovery, security management, query optimization, concurrency control, and change management. Application Generation Subsystem contains facilities to help users to develop transactions-intensive applications. It usually requires that user perform a detailed series of tasks to process a transaction. It facilities easy-to-use data entry screens, programming languages, and interfaces. Microsoft Access 2003 to setup normalized tables and designed test data. Set-up and test all of the following queries using Structured Query Language (SQL). Structured Query Language (SQL) is a computer language which is designed for managing data in a relational database management system. It lets users to access and manipulate the database. The following task is to display how the Structured Query Language helps users to managing data in the Academic Human resources department system. An SQL query manifests itself as a series of commands or statements. Queries may include arithmetic calculations and can use query elements or procedures stored in the system. SQL databases are designed from using SQL queries The SQL language is used to ask database questions for the data stored inside the database: what is the value of the element stored in Name index?, or what is the relationship between the data name and salary?. Manipulative commands, like insert data or update record are also issued using SQL queries. A Data Definition Language allows SQL queries to create or administer the data structures, the tables of data, which constitute the database. The actual syntax used is a little more strict and regimented than these natural language phrases suggest, but in effect this is the type of communication that will take place between a relational database and the person or device querying it using SQL. Provide printouts of SQL code for each query and the output produced when you run the query in the database you have developed: Display the names and addresses of the branches of Petcare and the names of all the veterinary doctors working at each of the branches. Any specialism(s) of the veterinary doctors should also be shown. Below is the SQL code for create the table. SELECT Branch.BranchName, Branch.Address, VET.VetName, AnimalType.AnimalTypeName FROM (AnimalType INNER JOIN VetAnimalType ON AnimalType.AnimalTypeID = VetAnimalType.AnimalTypeID) INNER JOIN (Branch INNER JOIN VET ON Branch.BranchID = VET.BranchID) ON VetAnimalType.VetAnimalTypeID = VET.VetAnimalTypeID; Display all the appointments for the whole of the Petcare organisation. This should be ordered by date. The result should display the branch the appointment is at, the name of the veterinary doctor the appointment is with, the date and time of the appointment, the name of the animal the appointment is for, the type of animal and the breed of the animal. Below is the SQL code for create the table. SELECT Branch.BranchName, Vet.VetName, Appointment.Date, Appointment.Time, Animal.AnimalName, AnimalType.AnimalTypeName, Breed.BreedName FROM (Branch INNER JOIN Vet ON Branch.BranchID = Vet.BranchID) INNER JOIN ((AnimalType INNER JOIN Breed ON AnimalType.AnimalTypeID = Breed.AnimalTypeID) INNER JOIN (Animal INNER JOIN Appointment ON Animal.AnimalID = Appointment.AnimalID) ON Breed.BreedID = Animal.BreedID) ON Vet.VetID = Appointment.VetID Task 5 assumptions and Improvements Assumption For the design the Petcare database system, we have made some assumptions before the implementation of the database. The entity relationship diagramming is created to identify each entity, relationship and attributes. The assumptions are the follows: We must need to assign vet to any new appointment. Since each doctor only can work at one Branch at a time and they can specialize more than one type of animal. This mean all branch can for any type of animal to make appointment. set all the primary keys and foreign keys in all of the tables, each table have their unique ID. Each table should have a primary key, and each table can have only one primary key. In the task 3, we are using DBMS, Microsoft Access 2003, to setup normalized tables and designed test data. In the task 4, we are using SQL statements base on Microsoft Access 2003 to query our database to investigate the database system can be fulfills the requirements or not. Base on using the Entity relationship data model that describes the content and structure of the data help by the department. At the real environment, we can consider the database on three levels of abstraction: external, conceptual, and internal. The external level also has the users views of the database. This is depending on their needs, different users access different parts of the database. Improvements Object-orientation and databases Both object-oriented programming and relational database management systems (RDBMSs) are extremely common in software today. Since relational databases do not store objects directly (though some RDBMSs have object-oriented features to approximate this), there is a general need to bridge the two worlds. The core of object-relational thinking is the ability to incorporate greater levels of abstraction into data models. This idea represents a major shift in the way that data modeling is done. Current relational databases are usually highly normalized but with little abstraction. Each thing of interest is instantiated as a relational table. As a result, systems frequently require numerous database tables and an equal number of screen modules and reports. The program modules are usually based directly on these tables with user workflow only instantiated through the way that the hundreds of screen modules interact. The object-oriented (OO) approach to data modeling will be something of a change for people familiar with entity relationship modeling. Even though we still end up with tables and relationships at the end of the process, the way to think about the modeling process has to change. Object-relational data models have several advantages over traditional data models: They require fe wer entities (or classes in object-oriented terminology); They are more robust, in that they will support not only the specific user requirements gathered during the analysis phase, but will also usually support a broader class of requirements; They are more stable in that, as new requirements arise, the models will require fewer changes than traditional models Data is not information unless it is valued. Information value provides profit or gain only when accessible or used. Accessibility and use, through organized systems, provides competitive advantage. Speed determines the degree of competitive advantage. Computerized database systems are thus, the ultimate method of high-speed information retrieval. It is not difficult to build an organized database system. The difficulty lies in the laborious, mundane task of collecting, categorizing and maintaining the massive amounts of data. Information is not valued unless it is legitimate. It must be valid and true to be worthy of use in decision-making. So, it is critical that all aspects of our system provide quality. To quote statistics based on erroneous data is considered foolish or criminal. The core of object-relational thinking is the ability to incorporate greater levels of abstraction into data models. This idea represents a major shift in the way that data modeling is done. Current relational databases are usually highly normalized but with little abstraction. The database systems have become so important to organizations that the activity is devoted to planning for, monitoring and administering the systems. We can focus on the planning and managerial activities relevant to database. It is defined the concept of data administration, the scope of the data administration function, relate the costs and benefits of having a data administration functions. It also defines the concept of a data dictionary and considers the issue of database security. The data control is primary function for the database administrator (DBA). The DBA needs to be able to do three main things: Prevent would-be users from logging-on to the database Allocate access to specific parts of the database to specific users Allocate access to specific operations to specific users For the DBMS toolkit to review the database, the interface is essential function of most ICT systems it to interact with users. The three aspects are the content, control and format. The interface can be seen as collection of dialogues between the user and the ICT systems.

Friday, January 17, 2020

Edgar Allan Poe’s The Masque of the Red Death Essay

Edgar Allan Poe’s short horror story entitled ‘The Masque of the Red Death: A Fantasy’ was published in Graham’s Magazine in 1838, and talks about a plague that the main character, Prince Prospero, attempts to evade (Laurent 2003). He holds a masquerade ball, each in different color, inside seven rooms in his abbey. On the other hand, Irvin Layton’s horror (or suspense) poem entitled ‘Rhine Boat Trip’ was written in 1977 and talks about murdered rabbis and the ghosts of children in the events in Nazi Germany, especially those that occurred during the Holocaust (Rhine Boat Trip, n. d. ). These two texts are both horrific, but aside from being different in terms of the format and the length, both display contrasting perspectives in their artistic, textual frames. Poe’s short story and Layton’s short poem display a suspense story; yet, as a whole, they display different styles and time frames. While Poe’s style displays something that is currently happening and distinctively described, Layton displays one that had already happened in the past and is directly described. Main Body The Masque of the Red Death by Edgar Allan Poe This short story attempts to describe how a plague called the Red Death enters Prince Prospero’s dominion, a prince who is being described as â€Å"happy and dauntless and sagacious† (Poe par. 2). The plague that has swept over the land is horrifying. As described, Blood was its Avatar and its seal –the redness and the horrors of blood. There were sharp pains, and sudden dizziness, and then profuse bleeding at the pores, with dissolution. The scarlet stains upon the body and especially upon the face of the victim, were the pest ban which shut him out from the aid and from the sympathy of his fellow-men. And the whole seizure, progress and termination of the disease, were the incidents of half an hour. (Poe par. 1) From this paragraph, Poe specifies how horrifying the plague is. The victim loses most of the blood within the body, which is the cause of sudden dizziness and dissolution. Poe’s use of blood is enough to make the story appalling to the reader. Using pictures that signify awfulness and terror, Poe makes the story one that makes the reader horror-struck. However, the plague is said to have stricken only his dominions and not Prince Prospero and his â€Å"hale and light-hearted friends from among the knights and dames of his court† (Poe par. 2). Poe makes it appear that the plague only strikes those that are not hale and light-hearted or only those that are wicked, depraved, or poor. When his dominions were cut in half and the depraved dominions were already cast out, Prince Prospero is said to summon his friends, and using a masquerade ball inside seven rooms, each in different color, of his castellated abbey, he entertains his friends amid the plague. Poe describes the abbey: This was an extensive and magnificent structure, the creation of the prince’s own eccentric yet august taste. A strong and lofty wall girdled it in. This wall had gates of iron. The courtiers, having entered, brought furnaces and massy hammers and welded the bolts. (Poe par. 2) The exact description of the castellated abbeys indicates that Prince Prospero and the one thousand light-hearted friends are being protected from the killing plague that has stricken over the land. Then Poe begins to describe extensively the seven colored rooms: It was a voluptuous scene, that masquerade†¦ There was a sharp turn at every twenty or thirty yards, and at each turn a novel effect. To the right and left, in the middle of each wall, a tall and narrow Gothic window looked out upon a closed corridor which pursued the windings of the suite. These windows were of stained glass whose color varied in accordance with the prevailing hue of the decorations of the chamber into which it opened. (Poe par. 4) Poe mentions that, having to describe the decorations of the castellated abbey, Prince Prospero is actually eccentric, august, voluptuous, and bizarre. Poe also mentions that â€Å"[t]he tastes of the duke were peculiar. He had a fine eye for colors and effects. He disregarded the decora of mere fashion. His plans were bold and fiery†¦Ã¢â‚¬  (par. 6). A mystifying figure suddenly appears, one that is described as â€Å"a masked figure which had arrested the attention of no single individual before† (par. 9). When Prince confronts the mystifying image, he suddenly falls dead, as specified in these lines: â€Å"There was a sharp cry – and the dagger dropped gleaming upon the sable carpet, upon which, instantly afterwards, fell prostate in death the Prince Prospero† (par. 12). The Red Death has entered the ball, and as the prince falls dead in the carpet, the people surges to the figure to remove the mask, only to find it empty. Each one falls to the ground, as the plague enters each of the one thousand guests in the ball. The Red Death surges upon all of the dominion. The Masque of the Red Death is one horror story in which Poe exemplifies great and immense description in every detail and part of the story. Poe uses symbols, such as colors and lines, in order to describe each detail magnificently and make the reader see distinctively. Rhine Boat Trip by Irvin Layton This 16-lined poem attempts to describe how the castles of the Rhine are haunted by ghosts of Jewish mothers and children in the lines: â€Å"The castles on the Rhine / are all haunted / by ghosts of Jewish mothers / looking for their ghostly children† (Rhine Boat Trip, L1-4). In contrast to Poe’s distinctive description, Layton’s style is simple and easy to read and understand. It does not describe each detail individually but rather, puts the picture and leaves the reader free to describe each picture. It allows the reader to put in detail what the castle looked like at Rhine. Having to put the exact name of the castle in the line is enough to picture the detail distinctively. Unlike Poe’s style, which provides the exact picture by describing immensely the detail in the story, Layton’s style is one that uses words in order to describe immensely what the picture or detail appears to be. However, instead of describing the castle as something that is enormous, fantastic, or incredible as Poe has done, Layton pictures the castle in a horrifying manner: â€Å"[A]nd the clusters of grapes / in the sloping vineyards / are myriads of blinded eyes / staring at the blind sun† (Rhine Boat Trip, L5-8). Layton instantly pictures the castle as horrifying, which is different from Poe’s style, wherein the latter pictures the castle as magnificently decorated before interpreting it as horrifying in the latter portion of the story. Each word that Layton uses carries a specific meaning. This is different from the manner in which Poe writes, wherein he describes in detail only to prove that the place is magnificent and is owned by a splendid duke living in the castle. In lines 5-8 of Layton’s poem, for example, the clusters of grapes of line 5 does not just depict the Jewish families but may depict families or communities that include everyone, including the reader. However, because Layton uses ‘sloping’ when he describes the vineyards, it may conclude to something that is negative, since it goes downhill, which is symbolic. Something negative, such as negative customs or culture that are found in the family or community, might have been included in the clusters of people. The use of grapes also depicts meaning, since grapes are used by the Jewish during the Passover and Holocaust. Having depicted too, that the clusters of grapes are actually â€Å"myriads of blinded eyes† (Rhine L7), it appears that the Jewish families (or German families) are blinded to what is about to happen to them and the surrounding community. They are staring at the blind sun because there is no hope for them in the end, since God is about to punish them, it is like God is nowhere in sight. In lines 9-10, wherein it says that â€Å"the tireless Lorelei / can never comb from their hair† (Layton L9-10), it appears that Lorelei is praying and doing sacrifices to God; and because she can â€Å"never comb from their hair† (Rhine L10), it symbolizes that important people in the community, such as Lorelei, pray and do sacrifices to God, so that the latter may show mercy to them and then remember His covenant with them. Lastly, lines 11-16 depict the rabbis that have been murdered and are wailing: â€Å"[T]he crimson beards / of murdered rabbis / however sweetly they sing / one hears only / the low wail of the cattle cars / moving invisibly across the land† (Rhine L11-16). Crimson is used to signify blood or death. The word ‘one’ is being used to mean both the person that hears only the wailing rabbis, as well as, the One God that appears to have turned His back on the Jewish people despite their prayers and offerings. Cattle cars are wailing in line 15, meaning that these cattle cars that are â€Å"moving invisibly across the land† (Rhine L16) are not with cattle but with people, which signifies a state that is inhumane and atrocious. The cattle cars are invisible because, first, no one had paid attention to them during their crisis; and, second, what the author has been describing is something that had already happened in the past. This poem also depicts strong emotional response because of distinctive images that were used by the writer. Like Poe’s story, this poem uses images, such as castles, grapes, vineyards, sun, rabbis, and cattle cars. However, unlike Poe’s story, Layton’s style is one that is simple yet direct; one that is more symbolic than that of Poe’s. Conclusion Poe’s short story entitled The Masque of the Red Death, as well as, Layton’s short poem entitled Rhine Boat Trip are both horrific, symbolic, and descriptive. However, Poe’s story is distinctively descriptive in detail, with an enormous, fantastic castle. Layton’s poem on the other hand, is simpler and direct, easier to read and understand, more distinctive in word, more symbolic in style, with a horrifying castle. Layton and Poe are alike; yet diverse. Works Cited Laurent, Sabrina. Metaphor and Symbolism in The Masque of the Red Death. July 2003. United Nuke. 14 March 2009 . Poe, Edgar Allan. The Masque of the Red Death. 2009. Jalic Incorporated. 14 March 2009 . Rhine Boat Trip (1977). N. d. Gonzaga University. 14 March 2009 . Other Sources Roberts, Edgar. Writing About Literature – Brief (11the ed. ). White Plains, NY: Pearson Longman, 2005.

Thursday, January 9, 2020

Sale And Sale Of Human Organs - 1627 Words

In this essay, I will argue that the establishment of a market for the sale and purchase of human organs would be morally unjustified. For the purposes of this paper, my argument will allow for the term â€Å"market† to be used in its literal, physical sense, as describing a public location for commercial interaction, as well as in reference to the concept of â€Å"the market† in regards to a general domain of economic activity, in this case involving organ selling. In such a manner, we can avoid possible contention regarding what could constitute a market for human organs—such a concept could involve anything from a traveling mini-store within a van, to a freestanding shop, to an international firm that operates electronically as a web site, etc.†¦show more content†¦Organ donation is generally understood to be closely related to organ transplantation, which virtually always is a greatly beneficial operation for those in medical need of it (Streat 383) . Therefore, I can understand supporters of a human organ market championing the idea that an organ market, by serving as an additional source of organs, is morally worthy due to its ability to improve people’s chances for getting an organ transplant. However, this line of reasoning is problematic because organ donation and organ transplantation are not the same thing. The concept in question is a commercial venue for organ sale and purchase, not a commercial venue for organ transplantation, so the â€Å"service to patients in need† claim, however well intentioned, is misguided. Proponents might then say that an organ market may indirectly facilitate organ transplantation by simply being a source of organs. This is indeed possible, but alas, even if the establishment of the human organ market caused a lavish proliferation of organs, perhaps by mass franchising, the abundance of organs alone would not necessarily entail the market’s morality. For what if the har m in operating such a market eclipsed the benefit of all organ sales? And I say that a human organ market, by its very nature, is immoral due to the exploitation it would lead to. Proponents of the human organ market

Wednesday, January 1, 2020

Major Problems in Mexican American History Essay - 2304 Words

Major Problems in Mexican American History Mexicans have been a people long oppressed. That is evident not only by the readings edited by Zaragosa Vargas in Major Problems in Mexican American History, but also by the the documentary Chicano!. The Mexicans’ past is underscored by conquest of the present-day American Southwest first by the Spanish and then by the United States following the Mexican American War. With other countries establishing control over them, Mexicans have never really been able to establish themselves. Efforts were repeatedly made to shape them into what others perceived them to be. The language they should speak, the religion they should practice, the things they should learn, and the way they should live, were all†¦show more content†¦This is clear in Document 2 of chapter two in The Major Problems in Mexican American History. In this document entitled, Spain Asserts Control over the Indians of Nueva Galicia, Mexico, 1570, the king of Spain issued a royal order commanding the Spanish in Mexico to control the Indians, convert them, and use them as labor. The king did not’t like the fact the Indians were living in the mountains preventing interference with their manner and custom of life (34). By being away from the Spanish established towns, they were refusing to be more advantageously converted and indoctrinated (34). What is ironic is that although the Spanish felt that Mexico’s population had to be converted because they were uncivilized and inferior, mestizaje, the product of racial interbreeding with Indian, black, and mixed-blood women, took place. As a result, Mexicans share a rich mestizo cultural heritage of Spanish, Indian, and African origins. By raping the uncivilized Other, the Spaniards were in turn making themselves uncivilized. Those women represented nothing more but the medium through which the Spanish could vent their sexual desires. This was a major problem that Mexican women had to encounter. While dealing with the hardships of being Mexican, a woman also had to face the burden of being a female. A social hierarchy was clearly in existence. While the men were inferior to the Spaniards and Anglos because they wereShow MoreRelated The Ethnicity of Mexians in the United States Essay1738 Words   |  7 PagesFor centuries, Mexican Americans have dealt with an enormous amount of hardships that date back to their early Aztec roots. The source of many problems in Mexican American history can be traced in the pre-colonial period, before the United States of America was even conceived. Major problems of this era in history not only affected the Aztecs, but also the following generations of Aztec and Mexican descent, and continue to have an impact on their descendents in contemporary American society. BeginningRead MoreAbraham Lincoln s The Argument Against The War1182 Words   |  5 Pagesagainst the war? When Lincoln was a Congressman in the House of Representatives, during his short term, he loudly opposed the Mexican war held in 1846. His main argument was that the war was unconstitutional and unnecessary and was based on a lie. He faced severe criticism from fellow Whigs including other congressmen for raising voice against the USA intervention in the Mexican territory and promotion of slavery there. This was against the popular President James Polk’s moves to acquire lands underRead MoreThe Chicano Movement Of The United States987 Words   |  4 PagesDuring the late sixties and early seventies, a Mexican - American movement was taking place in the United States, The Chicano movement. This movement takes place because of the Mexican American society s suppression in the country. Indeed, during the years, 1966 to 1981 was a period where the Mexican American society was looking for equality and justice from the Government of the United States. In fact, they will start to o rganize their own communities, where the Government will accept their newRead More Alta California was the Last Expansion of Spain’s Empire in North America.1427 Words   |  6 Pagesin Sonoma, the Valley of the Moon, resulted an important historical event in California and the existence of the California flag. The Spanish arrival to California created a major impact to the lives of the native Indians, and there were many significant events occurred among the Spaniards, the native Indians, and the Americans before California became a part of America. San Francisco Solano Mission was founded on July 4th, 1823 by Fr. Jose Altamira, Father Altamira, which was the last mission inRead MoreThe Fight For Equality Throughout America1517 Words   |  7 PagesThe Fight For Equality Throughout history, minority groups in America have struggled day after day for the political and social equality that was promised to them in the constitution, that only a portion of the population actually enjoys. The time period from the end of WWII to the present has featured massive movements for equality. Mexican Americans and the LGBT community fought tirelessly for the political rights, social equality, and equal pay that the majority took for granted, and many areRead MoreEssay about The Treaty of Guadalupe Hidalgo1484 Words   |  6 PagesTreaty of Guadalupe Hidalgo The Treaty of Guadalupe Hidalgo in 1948 would have lasting negative effects on Mexican Americans. The Treaty was signed after America had won the Mexican American war. America gained possession of the southwest states that had been part of Mexico for the price of around eighteen million dollars. In Article IX of the Treaty, it states that the Mexicans shall be maintained and protected in the free enjoyment of their liberty and property, and secured in the free exerciseRead MoreBracero Movement1324 Words   |  6 Pagesthe emergence of countless Mexicans into the U.S.. They were known as Braceros, which were Mexican laborers that were allowed into the United States for a limited period of time as a seasonal agricultural worker. The Bracero movement was well related to the California Gold Rush because numerous Mexicans headed North across the American border because they thought they would gain mass fortunes in the United States. Even though the Bracero Movement caused countless p roblems, it also led to many successfulRead MoreHistory And Geography Of Mexico851 Words   |  4 Pagesvalues, meanings, and symbols that are passed on from one generation to the next and are shared to varying degrees by interacting members of a community, (â€Å"Understanding Intercultural Communication,† Chung, Ting-Toomey, 16). And because of this history and geography play an important role in determining why we do, feel, and believe the things we do, and because of this, it impacts the culture that is developed overtime. And when we look at Mexico and the culture it holds, we see this to be trueRead MoreEconomic, Social, and Political Causes of the Mexican Revolution1734 Words   |  7 Pagesï » ¿History of the Americas The Economic, Social, and Political causes of The Mexican Revolution 1840-1910 The Mexican Revolution is one of the most significant historical events in Mexican history. Without the revolution Mexico would not be the democratic country that it is today. â€Å"The Mexican Revolution is often seen as a standard bearer through which other subsequent Latin American revolutions are interpreted.†(Darity) There were several significant events spanning several years thatRead More History of Latino/a Immigration to the U.S. Essay1475 Words   |  6 Pagesbeauty of their dreams.† That statement holds strong for immigrants in America. Equal access to opportunities allows immigrants to achieve the American dream. Their success correlates with America’s success because of the contributions immigrants provide to America. Unfortunately, the current immigration policy in America denies many immigrants the American dream. It is crucial to understand the historical context of immigration in America. Initially, most immigrants were from Europe and were not