Gio's Movie files: DOC
Movies Database Documentation
This the Master file on [brambles]/MyDocs/mov/doc.html; copyright 1996, 1997, 1998 Gio Wiederhold
Loaded into DB web files 25 September 1997.
Updated December 1998.
This material was entered by
Gio Wiederhold
The initial objective was as test data for students, to allow non-trivial
exercises. There are fields suitable for complex joins, outerjoins, temporal
joins, and recursion. It has also been used to investigate object-structured database technologies
This is a HTML version of the description of the movies database.
It was based originally on the description from the Kamens and
Wiederhold temporal paper.
It also contains literature references in appendix A.
1. Introduction
The database was used originally in implementing the temporal
queries in SQL is Wiederhold's movies database (see [21]) and for a
number of other projects, both in Stanford classes and by research at
the Un.of Maryland and others.. The database allows testing of
theories about an implementation. Since it contains "real data", it
allowing checking of results for semantic as well as syntactic
correctness. Finally, the tables in the database consist of both
journal and history relations (see 21, section 3), allowing us to test
all of the different elements of an implementation.
The Overview section (2) below contains a summary of all the files
and the URL pointers to them, or their parts or sections; see Section 3 for a full schema description.
A number of the fields are unsuitable for relational implementation, because they contain sets of values. These are best used in an object-capable implementation. The schema describes when such sets are to be expected. Encodings for several of the fields are listed in Section 4..
At the end of this document, in Appendix B., are some conversion rules for
converting the HTML format to fields for relational or object databases.
2. Overview:
The central file (MAIN) is a list of movies, each with a unique identifier. These identifiers may change in successive versions. The actors (CAST) for those movies are listed with their roles in a distinct file. More information about individual actors (ACTORS) is in a third file. All directors in MAIN are listed in a fourth file (PEOPLE), with a number of important producers, writers, and cinematographers. A fifth file (REMAKES) links movies that were copied to a substantial extent from each other. The sixth file (STUDIOS) provides some information about studios show in MAIN. This documentation file provides supplementary information, and is an essential part of the database. Some images are also available, but not on-line now. There are many cross-linking names throughout the files, so many in fact that web browsers have choked when trying to make them live. Currently we simply try to be careful in naming films and people consistently. More detail follows below. Counts have been made using emacs `count-matches'.
2.1 -- MOVIES --
The main movies file is
main.html.
It contains 11435 `tr/td' table row entries (July 1999).
It is complete for Hitchcock movies and TV shows,
and has most films that can be related by topic, actors, director, history, and such to those films.
It has also many films corresponding to a variety of interests of mine, former students etc.,
with an emphasis on historical value.
MAIN is the "central" relation in the database; it is a journal relation that
contains information about the movies themselves. The relation contains
information about movies such as their titles, type, directors, and producers, as
well as their year of release.
There is also a subset file of 82
Hitchcock
full length Movies.
2.2 -- ACTORS --
The file
actors.html has
6813 `tr/td' table row entries (July.1999) for many of the actors appearing in CASTS.
Also First part and
Second part of actors.html, not maintained.
The key of the relation is
"stagename", and there are intervals indicating the dates that the
actor worked and the actor's lifetime. Other information in this relation is
the actor's real name, background, and the type of roles he/she typically
plays. References to images are kept here too.
2.3 -- DIRECTORS --
in file
people.html
The file lists all directors, as well as some other movie people, as producers and cinematographers
(A total of 3290 `tr/td' table row entries, 3011 `@' directors as of July 1999).
The directors table is similar to the actors table in that it contains
intervals for when the director worked and when he/she lived. The key
of the relation is the field "name", which is the name under which the
director directed. Director's key names do not contain any blanks.
Typically the last name is used, when needed prefaced by an initial.
A secondary unique key is defined for each director, up to three letters,
based on the initial letters of the first, middle, and last names.
This key will provide HTML HREF linkages among many of the files.
As with the actors table, this table also includes the real name of
the director among its fields ("lastname" and "firstname"). It also
contains importat producers, cinematographers, musicians and composers, etc.
2.4 -- STUDIOS --
in file
studios.html
are important studios only (203 `tr/td' entries, sparse information).
The key of the studios relation is the name of the studio. The temporal
information that is included is an interval indicating the years the
studio was (or is) in operation, represented by the fields "startdate" and
"enddate". This is a history relation.
2.5 -- CASTS --
in file
casts.html
This is a large (too large?) file of who acted as what in which movie.
(46 009 tr/td entries, only partial for movies and roletypes, July 1999).
Casts is an association relation, linking actors with movies. The key of the
relation is the catenation of the two fields "film_id" and "actor"; no
temporal information is included in this relation.
This file was too big for Netscape in 1996, so that also
five working subsets were made available, however these are not kept up-to-date.
- casts of Hitchcock films;
- casts Part 1, directors coded A-B;
- casts Part 2, directors coded C-H;
- casts Part 3, directors coded H-O;
- casts Part 4, directors coded P-Z;
The four parts are still large files (6000-15000 entries; castsCH includes
Hitchcock films
2.6 -- REMAKES --
in file
remakes.html
(1278 `tr/td' entries in July 1999).
This table (which is not extensively used in the temporal DB paper) gives
information about movies that are remakes of other movies. It is very
useful to test recursion in databases.
2.7 -- SYNONYMS --
This file has been superseded. All entries are now in the main file, as Alt(T:...) in the notes field.
synonyms.html,
contained 379 entries in Sep 1997) This list relates to the MOVIES in main.html.
Some movies are known by alternate titles, and can be accessed indirectly via this file..
2.8 -- QUOTES --
in file
casts.html
QUOTES.
A few (26) memorable quotes from movies are listed in
quotes.html.|1.
2.9 -- AWARDS -- in file
actors.html.
Types of awards and the awarding agencies are in
awtypes.html.
2.10 -- AWARDS-RECEIVED -- is no longer a distinct file
Awards received for special occasions are listed with individual entries
in the files for ACTORS (actors.html).or MOVIE PEOPLE (people.html).
Regular awards associated with a particular movies are given in
MOVIES (main.html)
and with a particular performance are listed in
CASTS (casts.html).
2.11 -- REFERENCES --
Books that provided material for this database are listed within this documentation file as
Appendix A.
2.12 -- GEOGRAPHY --
Codes for countries and origins are listed within this documentation file as section 4.3:
doc.html GEO.
2.13 -- CATEGORIES --
Codes for movie categories are listed within this documentation file as Section 4.4:
doc.html CATS.
2.14 -- COLOR-CODES --
Codes for color processes used for movies are listed within this documentation file as Section 4.5:
doc.html COLS.
2.15 -- ROLE-TYPES --
Codes that specify role-types for actors
are listed in the preamble for
casts.html
ROLES.
2.16 -- FIELD-IDENTIFIERS --
Codes that identify subfields
in various files are listed within this documentation file as Section 4.2:
doc.html
FIELDS.
2.17 - AWARD TYPES --
Lists the award types
used in MAIN, ACTORS, and PEOPLE,
with the organizations who award them, and the span of years they were awarded.
2.19 -- IMAGES --
there is a small collection of .tiff files for actors and directors.
They are kept individually in an images subdirectory.
2.20 -- ICONS --
There are about a dozan icons to be used to identify
subfiles. Some of them come from the New Yorker Magazine Jan.1993.
There are kept individually in an icons subdirectory.
Here we give a detailed description of the schema of the movies
database, which is used for all examples in this paper and was used to
implement the temporal SQL additions. General descriptions are given
in Section 2, above.
This file is being updated to desctribe the HTML version. Where
updates were made, the old material is in curly {brackets}.
3.1 The MOVIES Table
Col-Name = Description .
There is a distinct table for each director (Hitchcock has multiple tables,
one for early silent, one for British, one for American, and one for TV movies).
The tables are broken up p by year of first known film by the directors. There are some
break and header records for each year.
Each director table has two types of records:
- one header record for the director, with the director id, as shown in people,
the first year known for movies by that director, prefixed by an @ symbol, matching the
people entry, and the standard name for the director, also matching the people entry.
The remainder shows the format for the data records that follow below..
The note field is often used to describe the set of detail records
For movies where the director in not known there is a dummy entry, either by topic (Unknown) or
by year (UnYear), as shown in the people file.
- any number of records, one per film, formatted as shown below.
film_id = - An internally generated id for the film. This is the key of the
relation entries and is unique. It is composed of director_id and a
sequence number. .
- All movies of a director are listed together in sequence, but only for
some directors have all movies been entered..
- The sequence numbers often have gaps to allow insertions when
all movies for this director were not known at entry time at time of entry,
a common occurrence.
title =- The film's title. It is preceded by T: or Tn: (earlier also \Tm,\Tmm) depending on
the source of the data. This field is not neccessarily unique.
year =- Year the movie was released. This is assumed to be an event (i.e.
to take zero time)
director =- Director of the movie, preceded by D:.
The standardized id-name is used. All directors must appear as DIRECTORS
in people.html, so that we have a proper reference constraint.
- If there are multiple candidate directors the primary one or the one
who finished the movie is chosen and other candidates are given in the
notes field as CoD().
producers=- Producer(s) of the movie, preceded by P: if shown in
people.html and hence referencable by id_name .
- P: alone shows that there was no specific producer.
- If prefaced by PN: then the full name(s) is(/are) given;
if prefaced by PZ: then the spelling is uncertain.
In both cases no reference to people can be expected..
PN: is common, since only few id-names for producers
exist yet in the people.html files, except for producers who also
were DIRECTORS
- :PU alone means the producer is unknown to me.
- Multiple producers are permitted and common.
studios =- Studio(s) where the movie was filmed. Common studio names appear
in STUDIOS. If the studio is not known or uncommon its location
may be given as SL:{COUNTRY-CODE}.
- Unknown studios are prefixed by SU:
- sometimes the distributing studio, where the distributor
differs from the production studio, is shown prefixed by SD:.
prc =- Process used to make the movie (e.g. black and white as `bnw', col).
Color processes may by specified as \COLOR-CODES. The code `cld'
is used for black-and-white movies that have been colorized.
Unknown is coded prc.
cat =- Category of the film (e.g., suspense, mystery), as given in the
list of CATEGORIES. Unknown is coded Ctxx.
awards =- Awards received by the film, separated by commas. The awards are
listed in AWARD (optionally followed by keywords such as 'Special')
and included actual awards as well as favorable (mostly) mentions
in compendia as Halliwell and Roger Ebert's books, with the
appropriate number of stars. A + symbol is a half star and
a - after the awardee code indicates a negative mention.
Unknown is coded aw. -H means not in Halliwell [4].
lc =- Location where the film plays. Multiple locations are separated
by semicolons (;), multiple levels in any location hierarchy are
separated by commas, as `high-school, csd, CA'; indicating movie
location is a California high-school in the countryside. Codes used are
listed in the preamble of main.html. For countries other than the
USA the country name is given as well. Alternatives for country
names are `space' or `xxx ocean'. Unknown is lc.
If the period of the film is significant it is given as
T([[dd]mmm]yyyy).
notes =- Here a variety of notes is kept. The preferred order is
chronological, as Book before Writer before Cost before Rating,
but this has not been entered consistently.
- . All entries have a FIELD-IDENTIFIER
designator, as W(writer), R(rating), ... .
- Fields as writers can have multiple entries, separated by commas.
If an award is associated with an entry, as an academy award for the
writers of a movie, it follows the name(s) after a semicolon (;).
For authors (also music directors), the title is specified as
B(author:book: "title")
- Alt(T:title; reason) lists alternate titles, with a reason or date for the change, if known.
- There is a general Notes field (Nt) which mainly record firsts,
as first sound movie, etc.
.
- Er() means possible error in the record, to be checked sometime in the
future from some source..
- These note fields can be used to demonstrate the flexibility of
object-based structures, but are best place in distinct fields in relational
models.
- Note entries SEEN and VT are private, indicating `when seen' or `have video
tape' information.
3.2. The ACTORS Table
There is one record for each actor listed, but not all actors listed in CAST are documented.
There are also break and header records for each letter of the alphabet.
Col-Name = Description
stagenm = - Stagename of the actor. This is nearly the key of the table.
When an actor has used multiple names the last one used is preferred.
There are a few actors with identical names. Then the birthyear
(dob) becomes important.
dowstrt =- Beginning of the "dates of work" interval: year of first movie
dowend =- End of "dates of work" interval.
birthnm =
firstnm =- Original first name. Nick-names or other assumed names
in ().
gender =- coded as M,F, and X for unknown, G for group, and A for Animal.
dob =- Date of Birth. If not found in [ref]. If found, but date unknown *.
dod =- Date of Death, if unknown or alive coded as \UN. Year+ indicates
also still alive in that year, mainly used for oldies.
type =- Types of roles played by the actor; e.g., leading man, hero.
origin =- Country of origin using COUNTRY-CODES
photo =- Photos in reference books may be cited as [book.page(s)]
notes =- Used mainly for Marriages(Mt), Lived-with(Lw), and Worked-with(W).
- A code Cit(n) indicates how frequently the actor is cited in
CASTS.html. This field is used for maintenance, as a weight
of importance for completion of the data.
3.3 The PEOPLE Table
Directors are the major subset of the general people.html table.
Other entries are significant producers, writers, art directors and some authors.
Being a director is indicated in the Pcode field, and has some effect on
other fields.
There are also break and header records for each letter of the alphabet.
Col-Name = Description
id-name = - The name of the movie person in standardized form.
These names are made to be unique. Intials may be prependended, and
special character codes omitted. This field is referenced by the
"director" field and by P:{references} in the MOVIES table.
Pcode =- Code {PDWACGV} indicating that the movie person a
Producer, Director, Writer, Actor, Cinematographer, choreoGrapher,
or a Visual or art director.
Just being an actor does not justify an entry here, for those
see the ACTORS table.
Did =- If the person is a director (Pcode includes D), then this field contains
an internally defined, unique 2 or 3 letter identification code for
the director, the director_id. It is made up by taking one or
two letters of the first name, no or one letter of the middlename,
and one or two letters of the family name of the director. Because
of the high frequency of `John', it is encoded as `I'.
This code is used a prefix to generate unique film_id's for all
films directed by this director.
yearstart=- First year of work, for directors the first year he/she
directed a movie, it is preceded by a @. (start of the years interval).
yearend=- Last year of work, or that the director directed.
lastnm =- Given last name of the movie-person, may be spelled more
precisely here than in the id-name field.
firstnm =- Given first name of the movie-person. Nick-names or other
assumed names in ().
dob =- Date of Birth. If not found in [ref]. If found, but date unknown *
dod =
backgrd =- The director's birth country. If unknown \Un.
notes =- This field is as in "actors". Female movie-people are identified
as Ge(F), as a partial index. Special awards (not associated with
a film) are shown as Aw().
3.4 The STUDIOS Table
Col-Name = Description
----------- -------------
name = - Short name of the studio, may be standarized for reference.
company =- Company that owns the studio.
city =- City where the studio is located.
country =
fddate =- Date the studio was founded or first opened.
enddate =- Last date represented by the studio.
founder =
successor =
notes =
3.5 The CASTS Table
The large CAST file is broken up into sections by initial letter(s) of the directors identifying code.
In each section will be a number of directors, ordered by code. There is a distinct table for each director.
Col-Name = Description
Each director table has two types of entries
- one header record giving the director's id, name, and format information.
- multiple records for each movie and listed actor. There are no headers for distinct movies.
film_id = - Identifier of the film. All film_ids used here appear in
MOVIES, and can be used as references.
title =- Title of the movie, prefixed by T.
- A prefix of TZ is used when he entry is uncertain, as the actor's name.
- The title field is actually redundant here, because
is also given in MOVIES with the film_id. It is used to reduce the
the chances of errors and to reduce requirements for "joins".
actor =- Name of the actor in this role, always using the standardized
stage_name, if the actor is listed in ACTORS.html
- This field presents only a partial reference, illustrating dangling pointers.
- If unknown, but role is important, then `sa' is used for `some actor'.
roletype=- Type of the role. Similar to the "type" field in the ACTORS
table, but always encoded by a ROLE-TYPE. \Und means unassigned.
role =- short description of the role prefixed by R:
- If the trole is uncertain, the RZ: is used as the prefix
- If the name used in the role is significant (as in Biographical Movies),
this role name follows in "quotes", as R:king "Henry V"
- If only the role name is known, then the prefix is RN:
- If the role is unknown, then only RU: is entered.
awards =- Awards given to this actor for this role. Optional field.
notes =- Rarely used; only for something exceptional in the performance, as
`Nt(Garbo laughs)'. or Debut
3.6 The REMAKES Table
Col-Name = Description
film_id = - Identifier of the remake. All film_ids used here appear in MOVIES.
title =- Title of the remake; redundant., but essential for maintenance
year =- Year when the remake was made. Note that this MUST be after the
year the original was made.
part =- A fraction indicating how similar the remake is to the original.
The semantics used appear in the preamble of remakes.html
wasfilm =- Identifier of the original film. All film_ids used here appear in
MOVIES; \UN is used where the film has not been identified,
wastitle=- Title of the original movie, also redundant.
wasyear =
3.7 -- SYNONYMS table
This file has been superseded. All entries are now in the main file, as Alt(T:...) in the notes field.
Col-Name = Description
film-id =
s-title =- > Secondary, synonymous, title >
s-country =- Country for secondary title
p-country =- Country for primary title
p-title =
3.8 -- QUOTES table
Col-Name = Description
----------- -----------
film-id = - Identifier of film where quote was taken.
title =
speaker =- Actor selivering the quote.
role =
listenr =
quote =
3.9 -- AWARDS table
Col-Name = Description
----------- -----------
award =
agency =- awarding agencies or authors
place =- location or reference where award is given
3.10 -- AWARDS table
Col-Name = Description
----------- -----------
recepnt = - Movie-person receiving the award, stage-name or id-name
award =
year =
reason =- This table is mainly for awards not associated with films,
so that reasons my be `lifetime', `honorary', etc.
notes =
3.11 -- REFERENCES table
Col-Name = Description
----------- -----------
no. = - Unique reference number in []
author =- Author(s) name(s), up to colon (:)
title =
pub-inf =
3.12 -- GEOGRAPHY table
Col-Name = Description
----------- -----------
code = - Two- or three letter code for each country, as \Hu
.
See 4.1 for the encoding used.
country-name =
c-adjective =- Adjectival form, as `Hungarian'
3.13 -- CATEGORIES table
Col-Name = Description
ctcode = Four-letter code
Movie categories
code | category | | | code | category | | | code | category | |
|
---|
Ctxx | uncategorized | |
| Actn | violence | | | Advt | adventure | | | AvGa | Avant Garde | |
| Camp | now - camp | | | Cart | cartoon | | | CnR | Cops and Robbers | |
| Comd | comedy | |
| Disa | Disaster | | | Docu | documentary | | | Dram | drama | |
| Epic | epic | | | Faml | family | | | Hist | history | | | Horr | horror | |
| Musc | musical | | | Myst | mystery | |
| Noir | black | |
| Porn | pornography | | | Romt | romantic | |
| ScFi | science fiction | |
| Surl | sureal | | | Susp | thriller | |
| West | western | |
|
3.14 -- COLOR-CODES table
Col-Name = Description
----------- -----------
color-code =
full =- Full name for color process used for movies,
- prc = unknown process, likely bnw prior to 1945, col after 1955
- bws = black and white silent
- bnw = black and white
- TV = film made for TV - various processes
- col = unknown color process
- cld = recolored black and white
specific color processes
- \Tcol = Technicolor - the best - three distinct layers
- \DeLuxe = DeLuxe - a high intensity low-cost color process
- \DuArt = DuArt
- \Ecol = Eastmancolor by Kodak
- \Mcol = Metrocolor - used by MGM
- \Mlab = Movielab
- \Wcol = Warnercolor used by Warners
- \Acol = Anscocolor - another color process by Kodak?
- \Agcol = Agfacolor
- \Fcol = Fujicolor
- \CS = Cinemascope -- widescreen, mostly color, 72mm film
- \Trama = Technirama -- widescreen color
- \Pan = PanaVision -- compressed wide screen, only noted at times.
- \Vst = Vistavision
They are listed in the preamble for movies.macros.
3.15 ROLE-TYPES table
Col-Name = Description
----------- -----------
role-codes = - Three-letter macro codes to specify role-types for actors.
They are listed in the preamble for casts.html.
Und means unassigned.
3.16 FIELD-IDENTIFIERS table
Col-Name = Description
----------- -----------
codes = - Codes identifying subfields in various files.
They are listed below in Section 4.4..
Some general codes, appearing in many files, are:
- Nt(note about something unusual)
- Er(Possible error in some field, to be checked)
4: CODE TABLES
A fair amount of the information is encoded for consistency of reference.
Directors' names are always treated as codes, and many other movie people as
well. Names with out spaces are codes, and can be found in the PEOPLE relation.
Actors names are treated as codes as well, although here first names have
been retained. Many actors can be found in the ACTORS relation.
All movies have been assigned a code by catenating a director's identifier,
found in the PEOPLE relation with sequence digits.
Several code tables appear below, other used are
Remote code tables
- -- ROLE-TYPES -- Codes that specify role-types for actors are listed in the preamble for
casts.html ROLES.
Local code tables
These codes are used in certain filed to further identify the contents.
Check this, much changed when moving to HTML.
code | definition | |
|
---|
T: | film title | |
|
---|
T2: | redefinition of title in
main.html SYNS. | |
| T3: | title used for locale file in MAIN | |
| T4: | title used for License plate list in MAIN | |
| T5: | title | |
| T6: | title used in
casts.html SAYINGS. | |
| T6: | title used in
quotes.html. | |
| TS: | not sure of actor spelling | used in CASTS | obsolete | |
| TZ: | title from Movies-dir.html | |
| TZ: | not sure if actor in this film | used in CASTS | |
| P: | producer in PEOPLE | | |
| PN: | producer full name | not yet classified | |
| PU: | unknown producer | not yet classified | |
| St: | listed studio | not yet consistent | |
| SN: | studio name | |
| SU: | studio name unknown | |
| SL: | country or city of studio | |
| SD: | distributor | old codes: Dtr, Ds, Dis{\Dtr | |
| R: | role | used in CASTS | |
| RZ: | role uncertain | used in CASTS | |
| RU: | role unknown | used in CASTS | |
| RN: | only name in role | used in CASTS | |
| RS: | spelling of actor's name unsure | used in CASTS | |
| D: | |
| DN: | director with full name, may not be in PEOPLE file | was \DiF | |
| DU: | |
|
Ancillary information, and social and professional relationships is frequently given as sub-fields in notes.
Below are the prefixes used for such variable information. Some refer to candidate entries in other files.
Many occur in the MAIN file, in the final NOTES field, others in the PEOPLE and ACTORS files.
There should be only one sub- field of any type in the notes field, but they may have contain multiple entries If the contents references entries in a file, it is listed, but such a reference is only assured if coded with a colon ( : ). Some of these designations are repeated with the files themselves.
Code | Contents | Ocurrs in | References what | |
|
---|
Alias | other professional names | PEOPLE, ACTORS | none | |
| Also | other professions | MAIN, ACTORS | PEOPLE | |
| Alt | alternative title | MAIN (SYNONYMS) | none | |
| B | Book Author | MAIN, ACTORS | PEOPLE | |
| BS | was Brother or Sister of, use Si | PEOPLE, ACTORS | PEOPLE | |
| C | Cinematographer | MAIN, PEOPLE, ACTORS | PEOPLE | |
| CoD | CoDirector | MAIN | PEOPLE | |
| Cost | Cost to make film [M/K] | MAIN | none | |
| Ch | child of | PEOPLE ACTORS | PEOPLE, ACTORS | |
| Chor | choreographer | MAIN, ACTORS | PEOPLE | |
| Dtr | distributor | MAIN | STUDIO | |
| Er | possible error, verify | all | none | |
| Fd | Founded: | STUDIOS | PEOPLE , ACTORS | |
| Fdr | Founder of: | PEOPLE , ACTORS | STUDIOS | |
| Gn | F | PEOPLE | used for Female producer or director | |
| Inc | Income from film [M/K] | MAIN | none | |
| Inf | influenced | PEOPLE, ACTORS | PEOPLE , ACTORS | |
| Inb | influenced by | PEOPLE, ACTORS | PEOPLE, ACTORS | |
| Lw | Lived with | PEOPLE, ACTORS | PEOPLE, ACTORS | |
| M | composer | MAIN, PEOPLE, ACTORS | PEOPLE | |
| Mt | Married to | PEOPLE, ACTORS | PEOPLE, ACTORS | |
| Nt | note | all | none | |
| P | playwright | MAIN, ACTORS | PEOPLE | |
| Pt | parent of | PEOPLE, ACTORS | PEOPLE, ACTORS | |
| Ph | unusual physical characteristics, as height, weight, .. | ACTORS | none | |
| R | ARt director, now V | MAIN, PEOPLE, ACTORS | PEOPLE | |
| Seen | [dd[MMM]]yy | MAIN | none | |
| St | studio | MAIN, ACTORS | PEOPLE | |
| Si | | PEOPLE, ACTORS | PEOPLE, ACTORS | |
| Ty | typical style | PEOPLE, ACTORS | Table 4.4 | |
| V | Visual art director | MAIN, ACTORS, PEOPLE | PEOPLE | |
| VT | have video tape (number) | MAIN | none | |
| W | writer | MAIN, PEOPLE, ACTORS | PEOPLE | |
| Ww | worked with | PEOPLE, ACTORS | PEOPLE, ACTORS | |
|
Codes for countries and origins are listed below. It is still incomplete.
Common countries for movie making are listed first, followed by other countries in alphabetical order.
code | country | adjective | | | code | country | adjective | |
|
---|
Am | USA | American | |
| Br | not used | British | |
| GB | Great Britain | not used | |
| Fr | France | French | |
| Ge | Germany | German | |
| It | Italy | Italian | |
| Ja | Japan | Japanese | |
| Alphabetical by code | |
|
---|
Ar | Argentinia | Argentine | |
| Au | Australia | Australian | |
| Be | Belgium | Belgian | |
| Bz | Brazil | Brazilian | |
| Ca | Canada | Canadian | |
| Ch | China, PRC | Chinese | |
| Cz | Czechoslovakia | Czech | |
| Da | Denmark | Danish | | |
| Gr | Greece | Greek | | |
| Du | Holland | Dutch | | |
| Hu | Hungary | Hungarian | |
| In | India | Indian | |
| Ir | Ireland | Irish | |
| Me | Mexico | Mexican | |
| Os | Austria | Austrian | |
| Pe | Peru | Peruvian | | |
| Ru | USSR, Russia | Russian | |
| Sp | Spain | Spanish | |
| SA | South-Africa | South-African | |
| Yu | Yugoslavia | Yugoslav | |
| Zw | Switzerland | Swiss | |
|
Codes for movie categories are listed below. Mainly used in MAIN, also content of Type fields.
Multiple entries are possible.
code | category | |
|
---|
Susp | thriller | |
| CnR | cops and robbers | |
| Dram | drama | |
| West | western | |
| Myst | mystery | | |
| S.F. | science fiction | |
| Advt | adventure | |
| Horr | horror | |
| Romt | romantic | |
| Comd | comedy |
| | Musc | musical | |
| Docu | documentary | |
| Porn | pornography, including soft | |
| Noir | black | |
| BioP | biographical Picture | |
| TV | TV show | |
| TVs | TV series | |
| TVm | TV miniseries | |
|
Codes for color processes used for movies in MAIN are listed below.
code | full name | description | |
|
---|
prc | unknown | | |
| col | color | color film, common after 1955 | |
| bnw | black-and-white | b-w film common before 1945 | |
| sbw | silent | silent black-and-white film | |
| cld | colored | black-and-white film recolored | |
| Cart | cartoon | Cartoons are normally colored | |
| Tcol | Technicolor | high quality color | |
| Ecol | Eastmancolor | color by Kodak | N\t(unstable) | |
| Wcol | Warnercolor | | |
| Mcol | Metrocolor | Color by MGM | |
| Acol | Anscocolor | color by Kodak? | |
| Agcol | Agfacolor | | |
| Fcol | Fujicolor | | |
| DeLuxe | DeLuxe | low cost color | |
| DuArt | DuArt | color | |
| Movielab | MovieLab | color | |
| CS | Cinemascope | widescreen, mostly color | |
| Trama | Technirama | widescreen color | |
| Pan | PanaVision | | |
| TV | film made for TV | various processes | |
| Vst | Vistavision | | |
|
Books, etc.
- [0]! Wiederhold,Gio: ``Movies Database''; 1989, 1990, 1994, 1996. Nt(self-reference)
- [1]! Halliwell,Leslie "The Filmgoers Companion" 8th edition; Charles Scribners' Sons, 1984.
- [2]! Kael,Pauline: "5001 Nights at the Movies"; Holt Rinehart Winston, 1985.
- [4]! Halliwell,Leslie "Halliwell's Film and Video Guide" 6th ed; Scribner, 1987 [3] .
- [5] Brown, Jay A.@Consumers Guide: "Rating The Movies"; Beekman House, 1986.
- [6]! Katz,Ephraim: "The Film Encyclopedia"; Putnam, 1979.
- [7]! Maxwell: Encyclopedia of Film; ??.
- [8]! Eastman,John: "Behind the scenes of 500 Classic Movies"; Ballantine Books, 1989.
- [9]! Pickard,Roy: "Who Played Who On The Screen"; B.T.Batsford ltd, London, 1988.
\ref [10]! Ebert, Roger: "Roger Ebert's Movie home Companion, 1990 edition"; Andrews and McNeal, 1989. coded as RE**+ in awards.
- [11]! Bawden,Liz Ann(ed): ``The Oxford Companion to Film''; Oxford Univ.Press, London 1976;
- [12]! Tichy,Wolfram: ``RoRoRo Film Lexicon''; Rowohlt Verlag, Hamburg FRG, 1978; German edition of [11].
- [13] Harry Medved and Randy Dreyfuss: ``The Fifty Worst Films of All Time''; Popular Library, New York, 1978. Coded as W50 in awards.
- [14]! Zinman,David: "Fifty Grand Movies of the 1960s 1970s"; Crown pubs NY, 1986 [4], present of Bob Molter, entries marked Z*.
- [15] Simpson, James B.: Simpson's Contemporary Quotations; Houghton-Mifflin, 1988.
- [16] ! Weldon,Michael: "The Psychotronic Encyclopedia of Film"; Ballantine books, 1983.
- [17] ! Everson,William K.: "The Bad Guys"; Citadel Press, 1964.
- [18] ! Griffith, Richard and Mayer,Arthur: "The Movies"; Bonanza books, 1957.
- [19] ! Hosoda,Craig: "The Bare Facts Video Guide"; The Bare Facts, Santa Clara CA, 1991.
- [20]! Kerr,Paul(ed.): "The Hollywood Film Industry"; Routledge and Kegan Paul, London, 1986.
- [21]! Michael,Paul "The Academy Awards", 1968.
- [22]! Wiley,Mason and Bona,Damien: "Inside Oscar, The Unofficial History of the Academy Awards"; Ballantine Books, 1986.
- [23]! Kaplan, Mike(ed.): "Variety Who's Who in Show Business"; Garland Pub., 1983.
- [24]! Jacobson, William: ``Berlinale, Internationale Festspiele Berlin''; Argon, 1990.
- [25]! ``The 100 Funniest Movies on Video''; Entertainment weekly, 16Oct1992, F01..F100.
- [26]! ``Cin\'ema, Cannes: un Demi-si\`ecle de chefs-d'oeuvre''; Les Cahiers de l'Express, Mai 1994, No.27.
- [27]! Edward Margulies and Stephen Rebello: "Bad Movies We Love"; Plume, a division of Penguin, 1993.
- [30]! Rohmer,Eric and Chabol,Claude: "Hitchcock, The First fourty-four Films"; Ungar New York, 1979.
- [31]! Truffaut "Hitchcock"; Simon and Schuster, 1983.
- [32]! Sinyard,Neil: "The Films of Alfred Hitchcock"; Gallery Books, 1986.
- [33]! Spoto,Donald: "The Art of Alfred Hitchcock"; Doubleday, 1976.
- [34]! McCarty,John and Kelleher, Brian: "Alfred Hitchcock Presents"; St.Martin's Press, 195, present of Randy Wiederhold.
- [35]! Leff,Leonard J.: "Hitchcock and Selznick"; Weidenfeld and Nicolson, 1988.
- [36]! Nevins, Francis M. and Greenberg, Martin Harry: "Hitchcock in Prime Time"; Avon, 1985.
- [37]! Spoto, Donald: "The Dark Side of Genius: The Life of Alfred Hitchcock"; Ballantine, 1983.
- [38]! Auiler, Dan: "Vertigo, the Making of a Hitchcock Classic"; St.Martin's Press, 1998.
- [41] Everson, William K.: ``The Films of Laurel and Hardy''; Citadel Press, NY, 1970.
- [42] Gilliatt, Penelope: ``Jean Renoir, Essays, Conversations, Reviews''; McGraw-Hill, 1975.
- [43] Hardy, Phil: ``The Encyclopdia of Horror Movies''; Aurum Press, 1986.
- [44] Newman, Kim: ``Nightmare Movies''; Harmony Books, 1988.
- [45] Kendrick, Walter: ``Thrill of Fear''; Grove Weidenfeld, 1991.
- [46] Skal, David J.: ``The Monster Show''; Norton, 1993.
- [47] Vidal, Gore: ``Screening History''; 1993.
- [48] Mosley, Philip: ``From Book to Film: Andr\'e Delvaux's Alchemy of the Image''; The French Review, Vol.67 No.5, April 1994.
- [50] Catalog Of 1400 Classic Movies; Home Film Festival, 1990, (800) 258-3456.
- [51] Catalog of Movie Soundtracks; Intrada, 1992, 1488 Vallejo, S.F. 94109, (415) 776-1333.
- [52] Catalog of Movie Music CDs; Screen Archives Entertainment, 1992, PO Box 34792, Washington DC 94109, (202) 328-1434.
- [53] Source of US and Foreign Movie Music; STAR, 1992, PO Box 287, New Holland PA (717) 656-0121.
- [54] Max Steiner Movie Music; Reising, 1992, PO Box 1392, Northbrook IL 60065-1392.
- [55] Lucas, Tim: ``The Video Watchdog Book''; Video Watchdog, 1992.
- [56] James Gilbert: ``American Religion in an Age of Science''; Univ.Chicago Press, 1997.
- [71] John Douglas Eames: "The MGM Story"; Crown publishers, 1977.
- [72] Hirschhorn,Clive: "The Warner Bros. Story"; Crown publishers, 1979.
- [73] Hirschhorn,Clive: "The Columbia Story"; Crown publishers, 1989.
- [74] John Douglas Eames: "The Paramount Story"; Crown publishers, 1985.
- [75] : "The United Artists Story"; Crown publishers, 19xx.
- [77] Hirschhorn,Clive: "The Universal Story"; Crown publishers, 1983.
- [78] Frank Thomas et al.: The Illusion of Life; 198x; about Disney animation.
- [80] Thomson, David: "A Biographical Dictionary of Film"; Knopf?, 1980.
- [81] Thomson, David: "Suspects"; Knopf?, 1980, = made up from movie characters.
- [82] Thomson, David: "Silver Light"; Knopf?, 1990, = on Western Legends.
- [83] Sennett, Robert S.: "Setting the Scene, The Great Hollywood Art Directors"; Harry N.\ Abrams, 1994..
- [84] Zhang, Ying-Jin: "The City in Modern Chinese Literature and Film: Configurations of Space, Time, and Gender"; Stanford University Press, 1996.
- [85] Zhang, Ying-Jin (editor): "Cinema and Urban Culture in Shanghai, 1922-1943"; Stanford University Press, 1999.
- Lynda Obst: "Hello, He Lied, and Other Truths from the Hollywood Trenches"; 1999.
- [91] Perry, George: "The Complete Phantom of The Opera"; 1987, Henry Holt Co., NY.
- [99] .. "Obituaries 1991"; 1991; (used for dod).
Electronic material
- [100] Magill: "Magill's Survey of Cinema"; COMPUSERVE, forum (GO MAGILL). It lists that they have in-depth articles on over 30,000 films released since 1902,
- [101] Movie Alert 1999
- [102] Movie Schedules.
- [103] memorabilia Auction site.
- [110] Brett Tjaden: "The Oracle of Bacon"; ; relates actors to Kevin Bacon with degree of seperation, April 1999.
- [111] Brett Tjaden: "Star Links"; ; relates actors to Each other with degree of seperation, April 1999.
Books about Actors
- [150]! Eyles,Allen: ``James Stewart''; Stein and Day, 1984.
- [151]! Aros (A.Rosenthal): "Marlene Dietrich", in German; 1962.
- [152]! Knopf, Maria Riva: "Marlene Dietrich"; (by daughter); 1992.
- [153]! Spoto, Donald: "Marlene Dietrich"; 19xx.
- [154]! "Brockhaus Enzyclop\"adie", in German; A.F.Brockhaus, Wiesbaden FRG, 1968.
- [155]! Dietrich, Marlene: "Marlene Dietrich's ABC"; 1962.
- [156]! Dietrich, Marlene: "Nehmt nur mein Leben, Reflexionen", in German; C.Bertelsmann Verlag, 1979.
- [157]! Droz,R.: "Marlene Dietrich und die Psychologie des Vamps", in German; 1961.
- [158]! Erman,H.: "Eine Grosse Dame, Marlene Dietrich", in German; 1955.
- [159]! Frewin,L.: "Blond Venus. A Life of Marlene Dietrich"; 1955 .
- [160]! Georg,M.: "Marlene Dietrich", in German; 1931.
- [161]! Griffith,R. "Marlene Dietrich, Image and Legend"; New York, 1951.
- [162]! Hessel,F.: "Marlene Dietrich", in German; 1931.
- [163]! Noah,W.: "Marlene Dietrich", in German; 1962.
- [164]! Bach, Stephen: "Marlene Dietrich";.
- [165]! Madhabi Mukherje, Dilip K. Basu, and Dayani K.Basu: "My Life, My Love"; The Stanford Theater Foundation, 1999
Web pages
- [200]! http://www.motionpictureguide.com; contains 30,000 films
- [201]! Http://users.deltanet.com/users/dstickne sirens of the golden age
- [V:89] Variety: Annual Issue, Jan.1990.
- [V:90] Variety: Annual Issue, Jan.1991.
BOOKS I have for Movie Stories:
- [H27] John Buchan: The 39 Steps; Hougton Mifflin, 1915.
- [HBn30] P.C.\ Wren: Beau Geste; Grosset and Dunlap, 1926.
- [KeR10] Simon Green: Robin Hood: Prince of Thieves; Berkley, 1991.
- [IH19] Herman Melville: Moby Dick; Signet, 1851.
- [RM3] Robert Louis Stevenson: Dr.~Jekyll and Mr.~Hyde; Bantam, 1886.
- [JW2] Mary Wollstonecraft Shelley: Frankenstein; Bantam, 1816.
- update!
Appendix B: CONVERSION
This section refers to the original HTML files.
The notes are still being developed.
To convert the source files from HTML format to another type of database:
(we use [] to denote HTML `french' brackets.)
- remove header notes
- remove miscellaneous HTML commands, as [HTML], [/HTML],
[BODY], [/BODY], [HR], ...
- for relational files ignore all lines starting with [tr][th].
These are header lines suitable for schema definitions.
They could also become the roots of large director objects for
the main and cast files.
- remove tabs and carriage returns. All content lines end with [td]| .
- records are divided into fields, as documented in the file schemas
above, by [td]. A space follows [td] entries, preceding the content of the next field.
Missing fields are indicated by two `[td] [td]', or by `[td] dummy entry[td]',
as indicated in the file descriptions above.
- Many fields can have multiple entries. Simple relational transforms may
drop such fields, others may require normalized sub-relations.
Multiple values in a field a separated by
- 1. `,' if the values are of the same type, as
[td] Romt, Dram[td]
- 2. `;' or `:' if they are of different types, as
W(Ben Hecht; AAN)
If both `;' and `,' appear in a field, then the `;' typically
distinguishes a major group relative to the `,' value separator,
as [td] island, South Pacific; court, SF, CA[td].
- In the Note fields may be a variable number of different types of entries, each
of the form
TypeCode(field), as W(Eliot Stannard)
-
When names of producers, writers, etc, in fields do not contain
blanks, as [td] P:A.Hughes[td], then the name exists in the people.html
file, and can be used as an interfile reference.
|