11 Pages

SQL-miniUG

Course: EECS 484, Fall 2008
School: Michigan
Rating:
 
 
 
 
 

Word Count: 2730

Document Preview

484 Mini EECS User's Guide for SQL*Plus T. J. Teorey Table of Contents Oracle/logging-in SQL create table/naming rules Update commands Select commands Set operations Built-in functions 1 2 3 3 4 4 Nested subqueries Complex functions Save a query/perm table Special commands SQL views Index 5 6 6 6 9 10 Oracle Oracle 8.1.6 resides on a Sun Sparc10 node. However, you do not need to login directly to this machine,...

Register Now

Unformatted Document Excerpt

Coursehero >> Michigan >> Michigan >> EECS 484

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
484 Mini EECS User's Guide for SQL*Plus T. J. Teorey Table of Contents Oracle/logging-in SQL create table/naming rules Update commands Select commands Set operations Built-in functions 1 2 3 3 4 4 Nested subqueries Complex functions Save a query/perm table Special commands SQL views Index 5 6 6 6 9 10 Oracle Oracle 8.1.6 resides on a Sun Sparc10 node. However, you do not need to login directly to this machine, but think of it as a database server to be accessed from another machine, for example, canoe.engin.umich.edu. Logging in to UNIX and Oracle SQL*Plus login: <your Unix login-id> password: <your Unix login-password> your-unix-node% source /usr/caen/oracle/local/muscle your-unix-node% sqlplus Enter user-name: <your-oracle-id> Enter password: <your-oracle-password> /*You are now in SQL*Plus and can start issuing SQL*Plus commands*/ SQL> select * from employee; /*example of an sqlplus command*/ SQL> grant connect to your-oracle-id identified by your-new-password; /*change password*/ Input and Output Files for Oracle To save the transcript of an sqlplus session or part of a session: SQL> set echo on; /*displays SQL code with results of the query*/ SQL> spool <filename>; /*filename will be appended with .1st if a postfix is not provided*/ SQL> spool off; /*will turn off the transcript spooling. You can now print the file with the instructions provided below*/ To read in a file: SQL> start <filename>; or SQL> @<filename>; where filename must be a OpSys file ending with .sql (the .sql may or may not be supplied to Oracle, but must be part of the name of the file). Print Oracle Results To print on a Sun or IBM the users can say: lpr -P<printer_name> <filename> printer_names (2340eecss2,2341eecsh1,4327eecss1,4327eecss2,4440eecss1,4440eecsm1) HP: lp -d<printer_name> <filename> Access from any computer: 1. To any UNIX machine, by typing "telnet <node_name>" 2. To any UNIX machine from a Merit terminal (where you see the "Which Host?"prompt), by doing a "telnet <host>@engin.umich.edu" Note: use "telnet hostinfo" to see a selection of free nodes. Oracle SQL*Plus Programming Examples Naming rules: 10/3/2005 1 EECS 484 1-30 characters long (a-z, 0-9,_,$,#), begin with a letter No quotation marks No duplicates of Oracle reserved words, no duplicate of another Oracle object of the same type Basic example: suppliers, parts, and shipments. create table supplier (snum number not null, sname char(12), /*max is 240 characters*/ city char(12), status number, primary key (snum)); /*must be defined as a primary key before it is defined as a foreign key*/ create table part (pnum number not null, pname char(10), length number, weight number, primary key (pnum)); /*cannot have both "unique" and primary key*/ create table shipment (snum number not null, pnum number not null, qty number, shipdate date not null, primary key (snum, pnum,shipdate), foreign key (snum) references supplier, foreign key (pnum) references part); Syntax Rules 1. Semicolon needed, no continuation character needed. 2. not => !, ~(hat), not(.....) 3. Constraints on create table not null - null not allowed for this column (attribute) unique - attribute may not have duplicate values primary key - explicitly designates simple or composite primary key foreign key - explicitly specifies referential integrity check - specifies range constraints or specific values (see 5-39) 4. Logical operators used with "where" clause: and, or, not, !=, () 5. Comparison operators: (),=,!=,~=,<,<=,>,>= in - equal to any member of, same as "=any" not in - same as "!= all" => false of any member of set (select...) is null any - same as "in" all - compares a value to every value returned by a list 6. Set operators union - combines queries to display any row in each subquery intersect - combines queries to display distinct rows common to all subqueries minus - combines queries to return all distinct rows returned by the first query but not the second 7. Order by: asc, desc 8. Basic definitions create table - defines a table alter table - add a new column, lengthen the width of a column /*enlargements only*/. drop table - destroys an existing base table create view, drop view create index, drop index..........create index x on t (p,q desc, r); create integrity, drop integrity 9. Data types: 10/3/2005 2 EECS 484 number (integer, 31 bits), smallint (15 bits) (p[q]), p digits total, q to the right of the decimal point float, real (not in Oracle), double precision (not in Oracle) char(n), character(n), varchar(n), date Update Commands alter table: alter table supplier modify (sname varchar(12)); alter table supplier add (address char(20) not null); insert (a single row): insert into supplier values (1,'Smith','Detroit',10); delete (one or more rows): delete from supplier where status > 1; update: update shipment set qty = 450 where qty = 500 and snum =3 and pnum = 31; Select commands /*display the entire supplier table*/ select * from supplier; /*display supplier number, status for all suppliers in London ..... Note: case sensitive within the quotes*/ select snum, status from supplier where city = 'London'; /*display all supplier and shipped part information, but omitting suppliers with status of 40*/ select s.*, sh.* from supplier s, shipment sh where s.snum = sh.snum and s.status != 40; /*use multiple table invocations to determine manager's name, one level above employee*/ select f.ename from emp e, emp f where e.ename = 'Smith' and f.empno = e.mgrno; Set operations /*which parts (part numbers) are shipped by supplier 1 or supplier 2?*/ select pnum, snum from shipment -ORselect pnum, snum from shipment where snum = 1 where snum = 1 or snum = 2; union select pnum, snum from shipment -ORselect pnum, snum from shipment where snum =2; where (snum = 1 or snum =2); /*which parts (part numbers) are shipped by both suppliers 1 and 3?*/ select pnum from shipment CANNOT DO THIS: where snum =1 select pnum from shipment intersect where snum = 1 and snum = 3; select pnum from shipment 10/3/2005 3 EECS 484 where snum = 3; Built-in functions /*display the total number of suppliers*/ select count(*) from supplier; /*display the total number of suppliers actually shipping parts*/ select count (distinct snum) from shipment; /*display the average quantity of a shipment of part number 31*/ select avg (qty) from shipment where pnum = 31; /*order by attribute names -- note that asc is the default*/ select pnum, snum, qty from shipment order by pnum asc, snum desc; /*order by column number as specified in the select line*/ select pnum, snum, qty from shipment order by 1, 2; /*for each part shipped, display the part number, the total shipment quantity, and the count of orders for each part; note that pnum in the select line must be in a "group by" command*/ select pnum, sum(qty), count(qty) from shipment group by pnum; /*note: the group by orders items ascending by default*/ /*display part numbers for all parts supplied by more than one supplier*/ select pnum from shipment group by pnum having count(distinct snum) >1; /*group by primary, secondary columns*/ select pnum, snum, max(qty) from shipment group by pnum,snum; /*find greatest and least values among attributes within each row, for all rows*/ select greatest(empno,mgrno), ename from emp; Nested subqueries /*display supplier names who supply part 32.....and equivalent query*/ select s.sname select s.sname from supplier s from supplier s, shipment sh where s.snum in where s.snum = sh.snum (select snum and sh.pnum = 32; from shipment sh where sh.pnum = 32); /*note indentation for nested query*/ 10/3/2005 4 EECS 484 /*display supplier names who supply at least one part with weight over 20.....&...equiv query*/ select s.sname select s.sname from supplier s from supplier s, shipment sh, part p where s.snum in where s.snum = sh.snum (select sh.snum and sh.pnum = p.pnum from shipment sh and p.weight > 20; where sh.pnum = any (select p.pnum from part p where p.weight > 20)); /*which suppliers are currently not shipping any parts with weight over 20? select s.sname from supplier s where s.snum not in (select sh.snum from shipment sh, part p where sh.pnum = p.pnum and p.weight > 20); 10/3/2005 5 EECS 484 Complex computational functions /*how much has Smith made while working for this company?*/ select sum(s.monsal*months_between(sh.enddate,sh.startdate)) from emp e, salhist sh, salary s where e.ename = 'Smith' and e.empno = sh.empno and sh.sallevel = s.sallevel; /*same query, but what if the last enddate is null?*/ select sum(s.monsal*(months_between(nvl(sh.enddate,sysdate),sh.startdate))) emp from e, salhist sh, salary s where e.ename = 'Smith' and e.empno = sh.empno and sh.sallevel = s.sallevel; Note: nvl(expr1, expr2) = expr1 if it is not null, or expr2 if expr1 is null greatest(expr1, expr2,..........) returns the greatest value among the given expressions least (expr1, expr2, ..........) returns the least value among the given expressions Save a query result into a permanent table or just rename columns create table supplier_part(suppname, shipqty, shipdate, partname) as (select s.sname, sh.qty, sh.shipdate, p.pname from supplier s, shipment sh, part p where s.snum = sh.snum and sh.pnum = p.pnum); Special commands in SQL*Plus 1. Look at table schema: List tables you can access Look at your table privileges: SQL> desc table_name; SQL> select owner, table_name from all_tables; SQL> select * from user_tab_privs where table_name = '...........'; /*UC*/ 2. How to rename tables from the all_tables list available to you; SQL> create synonym emp for teorey.emp; 3. How to copy a permitted (granted) table into your personal account: SQL> create table new_table_name as (select * from old_table_name); 4. Grant permission for read-only for a new public file: SQL> grant select on table_name to public; 5. Change password in SQL*Plus: SQL> grant connect to user_id identified by new_password; 6. Help commands: SQL> help; SQL> help commands; SQL> help select; /*general help information*/ /*lists commands you can get help on*/ /*any command or clause such as from, joins*/ 7. Using a prompt to input data: SQL> select * from emp where job = '&which_job' and sal= '&&salary'; /*does prompt*/ SQL> run; /*for & - repeats prompt*/ 10/3/2005 6 EECS 484 SQL> run; /*for && - redoes query with same value as before*/ Note: & means prompt with value, not saved; && means prompt with value, value is saved. 8. Setting up a report title, suppress the title, and set up special column headings: SQL> ttitle [right|left] 'This is a Title of a Report' ; /*default is center persists until you execute "ttitle off"*/ SQL> column schema_column_name heading new_column_name ; /*This will produce special column names as specified in quotes, but does not SQL> select ename "Employee Name", sal "Employee Salary" from emp; SQL> select ename empnane, sal empsalary from emp; 9. Report formatting: SQL> break on deptno skip 1; /*do not repeat deptno, skip a line between deptno's*/ SQL> break on deptno on mgr skip 1; /* do not repeat deptno or mgr, skip a line*/ SQL> run; /*execute the previous select with the new breaks*/ /*Note: you need to leave a blank line between the end of the query and the "run". This will cause echoing of the query. */ SQL> clear break; SQL> clear column; /*resets break and column settings*/ SQL> set pagesize 54; /*overrides default of 14 lines/page*/ 10. Data Formats: set column settings to override defaults, in-line format specifications SQL> column avg(sal.monsal) format $99,999.99; SQL> column deptname format A6; SQL> column deptno format 99999; SQL> ..........where to_char(shipdate, 'yy') = 94..........etc. SQL> select to_char(monsalary, '$99,999.99').......etc. SQL> alter session set NLS_DATE_FORMAT = DD-MON-YYYY; /*display 4-digit year*/ 11. Recursive hierarchy access in SQL*Plus (top-down hierarchy) SQL> select lpad(' ',2*level)||ename organization_chart from emp connect by prior empno = mgrno start with ename = 'King'; Note: a bottom-up hierarchy can be obtained by reversing the attributes after "connect by 12. Partial matching (see also SOUNDEX for words that sound like something else) /* Look for names with "a" as the second letter and any string afterwards */ SQL> select ename from emp where ename like '_a%'; 13. Size check -- determine the count of rows satisfying the query before displaying the results select count(*) from shipment where pnum = 31; Size check -- limit display of rows before displaying the results of the whole query. select snum, pnum from shipment where pnum = 31 and rownum <= 15; 14. Create sequence command to set up artificial primary key, max. number is 10*e**27 -1. persist. Quote prior" and spec 10/3/2005 7 EECS 484 SQL> create sequence myseq increment by 1 start with 1; /*defaults incr to 1 start with 1*/ SQL> create table mytable (myseq, attri1....., attr2 ....., attr3); SQL> insert into mytable values (myseq.nextval, value for attr1, .........) SQL> alter sequence mseq increment by 5; 15. Create index commands for B+-tree SQL> create [unique] index indexname on supplier(snum [asc|desc]); /*unique=> hashing*/ SQL> create unique index indexname on supplier(snum); /*unique index on primary key*/ SQL> create index indexname on shipment (shipdate); /*non-unique index on non-key*/ SQL> create index index2 on shipment (pnum, shipdate); /*non-unique concatenated index*/ 16. Check clause in create table commands. check (status>10), check (status between 10 and 40), check (city in ('Athens','London'), check (city != 'Paris' or status = 20); 17. SQL editing line-by-line SQL> select * from supplier 2 where snum = 14 3 and sname = 'Smith'; no rows selecte...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Michigan - EECS - 484
Database Application Development using JDBCEECS 484 Winter 09Overview Steps in an Application interacting with a database system Databases accept queries, return lists of results Applications must Create queries Submit them to the DB Proces
Michigan - EECS - 484
Relational Algebra and CalculusChapter 41/23/09EECS 484: Database Management Systems, Kristen LeFevre1Formal Query Languages Foundation for commercial query languages like SQL Two types Declarative: Relational Calculus Describe what a us
Michigan - EECS - 484
EECS 484 Individual Assignment 1 - Word Locator in Java Due: Wednesday, January 21 @ 10:30 AMProblem DescriptionThe goal of this assignment is help you transition your C+ skills to Java programming skills on material that you should know from EECS
Michigan - SPH - 99
An additional step can be introduced to compensate for the effect of spatial normalisation. When warping a series of images to match a template, it is inevitable that volumetric differences will be introduced into the warped images. For example, if o
Michigan - SPH - 2006
Inference in Weird Spaces: MEG Meshes &amp; White Matter SkeletonsThomas Nichols, PhD Assistant Professor Department of Biostatistics University of Michigan http:/www.sph.umich.edu/~nichols OHBM 2006NIH Neuroinformatics / Human Brain ProjectOvervie
Michigan - SPH - 2006
Power Calculations for Group fMRI Studies Accounting for Arbitrary Design and Temporal AutocorrelationJeanette Mumford &amp; Thomas E Nichols Department of Biostatistics, University of MichiganEstimating Variance Parameters Using FSLDesmond and Glover
Michigan - SPH - 2006
Inference on Individual Differences in Functional Imaging: A test for correlations among tasksSumitra Purkayastha , Tor D. Wager and Thomas E. Nichols Bayesian and Interdisciplinary Research Unit, Indian Statistical Institute, Kolkata 700108, IN
Michigan - SPH - 2006
Guidelines for Presenting Methods and Results in Neuroimaging1. Department of Biostatistics, U. of Michigan, USA, 2. Department of Psychology, U. of Georgia, USA 3. MRC Cognition and Brain Sciences Unit, Cambridge, UKThomas Nichols , Max Gunther ,
Michigan - SPH - 2006
Combining Suprathreshold Average Voxel Intensity and Cluster Extent with Permutation Test FrameworkHui Zhang ,Jun Ding , Satoru Hayasaka , and Thomas E. NicholsDepartment of Biostatistics, University of Michigan, Wake Forest University School
Michigan - SPH - 2005
Advanced Statistics Inference Methods &amp; Issues: Multiple Testing, Nonparametrics, Conjunctions &amp; BayesThomas Nichols, Ph.D. Department of Biostatistics University of Michigan http:/www.sph.umich.edu/~nichols OHBM fMRI CourseNIH Neuroinformatics / H
Michigan - SPH - 2005
Intersubject Heterogeneity in fMRI RFX AnalysisMorning Workshop, OHBM 2005 Organizers Thomas Nichols, Stephen Smith &amp; Jean-Baptist Poline Speakers Thomas Nichols, Jean-Baptist Poline, Christian BeckmannFixed vs. Random Effects in fMRI Fixed Effec
Michigan - SPH - 2005
SPMd for Diagnosis of fMRI Models with AutocorrelationWen-Lin Luo1, Hui Zhang2 and Thomas E. Nichols21CBARDS, Merck &amp; Co., Inc., 2Department of Biostatistics, University of MichiganAbstractStatistical thresholds and P-values cannot be trusted un
Michigan - SPH - 2005
Power and Specificity of FDR Under Smoothness(weixie@umich.edu)Wei Xie and Thomas E Nichols(nichols@umich.edu)NIH Neuroinformatics Human Brain ProjectDepartment of Biostatistics, the University of Michigan, Ann ArborP( True Detection at a V
Michigan - SPH - 2005
The Problem of Inated Type I Errors with Simple Group ModelsJeanette Mumford &amp; Thomas E. Nichols Department of Biostatistics, University of MichiganeDF P-value BiasAbstractMethodsDataDistribution of0.00030 0.00025Distribution of0.6DF=1
Michigan - WWW-PERSON - 602
Lones SmithMicro 602Fall, 2002Intro to Decision Theory and Game TheoryThis half course continues the Micro Theory course sequence, starting October 24, 2002. See also my personal web page teaching link www.umich.edu/lones/teach.html. Texts. Th
Michigan - WWW-PERSON - 602
Lones SmithMicro 602Fall, 2002Intro to Decision Theory and Game TheoryThis half course continues the Micro Theory course sequence, starting October 24, 2002. See also my personal web page teaching link www.umich.edu/lones/teach.html. Texts. Th
Michigan - WWW-PERSON - 602
Econ 602 Quiz #1(November 9, 2000)Closed book quiz. You have 50 minutes. All questions are worth 10 points. Have fun: After all, if the quiz hurts your grade, it doesnt count. Note: T/F means True or False, and correctly justify. 1. Draw the sta
Michigan - WWW-PERSON - 602
Decision &amp; Game Theoryc Lones SmithEconomics 602 Quiz #2(November 30, 2000)Closed book quiz. You have 60 minutes. All questions are worth 10 points. Have fun: After all, if the quiz hurts your grade, it doesnt count. Note: T/F means True or
Michigan - WWW-PERSON - 602
Decision &amp; Game Theoryc Lones SmithEconomics 602 Quiz #3(December 7, 2000)Closed book quiz. You have 60 minutes. All questions are worth 10 points. Have fun: After all, if the quiz hurts your grade, it doesnt count. Note: T/F means True or F
Michigan - WWW-PERSON - 602
Fall 2000Lones SmithDecision Theory and Game Theory 602 Final ExamThere are 125 points in three hours. Points are indicated in the margins, and 48 underlined points are easier to get. (This would be enough to pass). Aim for quality answers rath
Michigan - WWW-PERSON - 602
Fall 2000Lones SmithDecision Theory and Game Theory 602 Final ExamThere are 125 points in three hours. Points are indicated in the margins, and 48 underlined points are easier to get. (This would be enough to pass). Aim for quality answers rath
Michigan - WWW-PERSON - 602
University of Michigan PhD Microeconomics Prelim Fall 2000The exam consists of nineteen (possibly compound) assertions that are true or false. Begin each answer by asserting true, false. This alone is completely worthless unless you then briey and c
Michigan - FTP - 617
Lones Smith:Fall (2002)Game Theory (Econ 617)This is an advanced course in game theory. It assumes that your prior knowledge of game theory x and your analytical ability y obey the inequality xy &gt; c, where c &gt; 0 is a constant that I cannot qua
Michigan - FTP - 617
Economics Game Theory 617: Assignment 1Lones Smith due Monday, September 23 by email, 2002Note: All solutions must be emailed to me (lones@umich.edu). The subject header A must be included as 617 asmt. This means they are either typeset in L TEX,
Michigan - FTP - 617
Economics Game Theory 617: Assignment 2Lones Smith due Monday, October 21 by emailNote: All solutions must be emailed to me (lones@umich.edu). The subject header must A be included as 617 asmt. Assignments typeset (in L TEX, Word, etc.) will get a
Michigan - WWW-PERSON - 610
Solving Stochastic Dierential Equations by the Reduction Methodc Lones Smith, 1999 1. Solve dX = ( 1 + X 2 + X/2)dt + 1 + X 2 dW subject to X0 = 0. Solution: Transform Y = g(X) with a monotonic function g to get = dY = gx dX + (1/2)gxx (dX)2 = (
Michigan - WWW-PERSON - 610
Computing the Diusion Process Limit of a Sequence of Suitably Scaled Continuous Time Stochastic Processesby Lones Smith (2001)Question: Let {X N (t)} be a stochastic process with deterministic continuous changes satisfying dX N /dt = X N . There ar
Michigan - WWW-PERSON - 618
Lones SmithEcon 619, Winter (2002):Monotone Comparative StaticsThis half term course studies modern lattice-theoretic methods of supermodularity and comparative statics. We then explore stochastic orders, and extend the monotone comparative s
Michigan - WWW-PERSON - 618
Lones SmithEcon 620, Winter (2002):Advanced Theory: Uncertainty &amp; InfoThis half term course continues 619, applying its methods to the study of decision making under uncertainty and information. To better understand this course and the theory
Michigan - WWW-PERSON - 618
Lones Smithdue Mon., Feb. 5, 2001Econ 618: Assignment 1Note 1: Brevity is appreciated, but be sure not to wave your hands in a proof. Note 2: New questions are from last years nal exam and the past theory prelim. 1. This question tests if you un
Michigan - WWW-PERSON - 618
Lones Smithdue Mon., Feb. 26, 2001Econ 618: Assignment 2Note 1: Brevity is appreciated, but be sure not to wave your hands in a proof. Note 2: Unlike assignment 1, the only non rote question is #5 (a challenge). 1. Prove the following strengthen
Michigan - WWW-PERSON - 618
Lones Smithdue Mon., Mar. 26, 2001Econ 618: Assignment 31. Suppose there is a fair prior on the two states H and L. Let there be two actions A and B. Assume the standard symmetric payos (uH = uL = 1, uH = uL = 1), B A A B so that one takes actio
Michigan - WWW-PERSON - 618
Lones Smithdue Mon., April 9, 2001Econ 618: Assignment 4A1. Assume the informational herding model with two-states and the classical unbounded uniform private beliefs structure in S/S: namely, F H (x) = x2 and F L (x) = 2x x2 . [10 pts] Assume
Michigan - WWW-PERSON - 618
Blackwells Theorem with the Original Wonderful Proofby Lones Smith = {1 , . . . , n }, states of the world X = {x1 , . . . , xN }, experiment/signal outcomes (1 , . . . , n ), probability measures representing an experiment, represented by the M
Michigan - WWW-PERSON - 610
The Dynkin Martingale for General Markov Processesby Lones SmithGiven is a Markov process {xn }, where xn xn+1 . Step 1: Constructing Dynkins martingale for any markov process. Let u be an arbitrary real function dened on the same range as the Mar
Michigan - WWW-PERSON - 618
Winter 2001Lones SmithAdvanced Theory 618 Final ExamThis take-home exam consists of 100 points (plus 20 bonus) due Monday 12pm in my oce. To put you at ease, you start with 30 free points. Get lots of sleep! Take it easy. Try to impress both me
Michigan - WWW-PERSON - 618
University of Michigan Economic Theory Prelim September 2000Answer all questions; part A in one book, and part B in another. While questions have equal weight, passing requires demonstrating command of both parts. Cite any and all relevant theorems.
Michigan - R - 1454
Registration Form for the Mail Relay ServiceU-M Information Technology Central Services1 of 2 R1454 March 20071.List the static U-M IP address(es) from which mail will be sent (IP addresses obtained through DHCP will not work with the service
Michigan - ENGR - 3958
DESIGN FOR SIX SIGMA (DFSS)On Location Green Belt CertificationThis course provides quality analysis skills to systematically improve new products and services as well as continuously improve existing key design business processes. It is built arou
Michigan - ENGR - 3958
LEAN SIX SIGMA GRADUATE CERTIFICATEThe Certicate in Lean and Six Sigma at the Black Belt skill level is a unique educational program combining two contemporary disciplines into one curriculum.Online or On CampusLean production is a necessary str
Michigan - ENGR - 3958
SIX SIGMA CERTIFICATIONChoose from Online or Classroom OptionsTransactional Service/Operations Green Belt and Black Belt Online Manufacturing Green Belt and Black Belt Online Academic Manufacturing Black Belt On Campus Design for Six Sigma Green Be
Michigan - ESL - 2
Answer KeyUnit 1: Business (pages xvi25)Preview 1 (page 1)1. converted 2. Research 3. adapt 4. distributed 5. assembledExercise 1: Prexes (page 15)1. c 2. e 3. b 4. a 5. dPreview 2 (page 2)1. c 2. d 3. a 4. e 5. bExercise 2: Roots (page 15
Michigan - ESL - 1
Answer KeyUnit 1: Professional Cycling (pages 121)Preview 1 (page 2)1. survive 2. percent 3. participate 4. physically 5. individualReading Preview: What Do You Know? (page 3)1. b 2. c 3. bPreview 2 (pages 23)1. e 2. d 3. b 4. c 5. aCompre
Michigan - LIB - 2
CENSUS TOOLKITThe University of Michigan LibraryAdapted for the University of Michigan Documents Center from the Census Toolbox of the American Library Associations Government Information Technology Committee http:/www.ala.org/ala/godort/godortco
Michigan - PS - 498
472NOT05.txtSeptember 8, 1996GAME THEORY: viewed bargaining as strategic interaction between rational actors who seek to make static choices. Single plays of a Prisoner Dilemma and Chicken game emphasize static choice. Classical game theory treat
Michigan - PS - 498
472NOT09.txt Prisoners Dilemma &amp; ChickenSeptember 8, 1996PRISONERS DILEMMA: game of conflict in which reward for unilateral non-cooperation exceeds both benefit for mutual cooperation AND cost of mutual conflict. Penalty for mutual non-cooperatio
Michigan - PS - 498
472NOT02.DOCSeptember 8, 19961. What is the difference between making someone give something to you and taking it? 2. Do threats work on capabilities or on motivations and intentions? 3. What is the difference between brute force and coercion? 4.
Michigan - PS - 498
472NOT6.DOC DETERRENCE AND COERCIONSeptember 8. 1996Deterrence is a process where a defender seeks to get a potential initiator not to take an action. Coercion seeks to get a defender either to take an action or to undo prior actions. Regarding t
Michigan - PS - 498
472NOT10.DOC Decision Theory Individual Choice Interdependent Choices Constrained RationalitySeptember 8, 1996Bargaining Theory: Search, Persuasion, Strategy Individual Choice Decision Analysis Tree Interdependent Choices: Snyder, Axelrod Game Th
Michigan - PS - 498
472NOT14.DOC Fourth Wave Critique Of Deterrence TheorySeptember 8, 1996Deterrence May Be Appropriate If Challenger Motivated By Opportunity Than By Need. Reassurance Takes Into Account Adversarys Acute Sense Of Vulnerability. Need Focuses On Into
Michigan - LIB - 2
Appendix B. Definitions of Subject CharacteristicsCONTENTS POPULATION CHARACTERISTICS Ability to Speak English (See Language Spoken at Home and Ability to Speak English) . . . . . . Adopted son/daughter (See Household Type and Relationship) . . . .
Michigan - LIB - 3
Appendix B. Definitions of Subject CharacteristicsCONTENTS POPULATION CHARACTERISTICS Ability to Speak English (See Language Spoken at Home and Ability to Speak English) . . . . . . Adopted son/daughter (See Household Type and Relationship) . . . .
Michigan - LIB - 2
Appendix D. QuestionnaireU.S. Department of Commerce Bureau of the CensusDCThis is the official form for all the people at this address. It is quick and easy, and your answers are protected by law. Complete the Census and help your community get
Michigan - LIB - 3
Appendix D. QuestionnaireU.S. Department of Commerce Bureau of the CensusDCThis is the official form for all the people at this address. It is quick and easy, and your answers are protected by law. Complete the Census and help your community get
Michigan - LIB - 2
PRELIMINARY COPYSummary File 32000 Census of Population and HousingTechnical Documentation2000Issued June 2002 SF3/01U.S. Department of CommerceEconomics and Statistics AdministrationU.S. CENSUS BUREAUFor additional information concernin
Michigan - LIB - 3
PRELIMINARY COPYSummary File 32000 Census of Population and HousingTechnical Documentation2000Issued June 2002 SF3/01U.S. Department of CommerceEconomics and Statistics AdministrationU.S. CENSUS BUREAUFor additional information concernin
Michigan - LIB - 2
Chapter 2. How to Use This FileINTRODUCTION This chapter serves as a guide for data users to both the file and the technical documentation. Novice users trying to understand how to use the documentation and the file should read this chapter first. P
Michigan - LIB - 3
Chapter 2. How to Use This FileINTRODUCTION This chapter serves as a guide for data users to both the file and the technical documentation. Novice users trying to understand how to use the documentation and the file should read this chapter first. P
Michigan - LIB - 2
Chapter 3. Subject LocatorCONTENTS General Information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Subject Locator . . . . . . . . . . . .
Michigan - LIB - 3
Chapter 3. Subject LocatorCONTENTS General Information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Subject Locator . . . . . . . . . . . .
Michigan - LIB - 2
Chapter 4. Summary Level Sequence ChartSummary levels specify the content and the hierarchical relationships of the geographic elements that are required to tabulate and summarize data. In the Summary Level Sequence Chart which follows, the summary