| Database Object | Object Type | Description | Dep Level |
 | Person.BusinessEntityContact | Table | Cross-reference table mapping stores, vendors, and employees to people | 1 |
 | Sales.Customer | Table | Current customer information. Also see the Person and Store tables. | 1 |
 | dEmployee | Trigger | INSTEAD OF DELETE trigger which keeps Employees from being deleted. | 2 |
 | Production.Document | Table | Product maintenance documents. | 2 |
 | Person.EmailAddress | Table | Where to send a person email. | 1 |
 | HumanResources.Employee | Table | Employee information such as salary, department, and title. | 1 |
 | HumanResources.EmployeeDepartmentHistory | Table | Employee department transfers. | 2 |
 | HumanResources.EmployeePayHistory | Table | Employee pay history. | 2 |
 | iduSalesOrderDetail | Trigger | AFTER INSERT, DELETE, UPDATE trigger that inserts a row in the TransactionHistory table, updates ModifiedDate in SalesOrderDetail and updates the SalesOrderHeader.SubTotal column. | 2 |
 | iPurchaseOrderDetail | Trigger | AFTER INSERT trigger that inserts a row in the TransactionHistory table and updates the PurchaseOrderHeader.SubTotal column. | 4 |
 | iuPerson | Trigger | AFTER INSERT, UPDATE trigger inserting Individual only if the Customer does not exist in the Store table and setting the ModifiedDate column in the Person table to the current date. | 1 |
 | HumanResources.JobCandidate | Table | Résumés submitted to Human Resources by job applicants. | 2 |
 | Person.Password | Table | One way hashed authentication information | 1 |
 | Sales.PersonCreditCard | Table | Cross-reference table mapping people to their credit card information in the CreditCard table. | 1 |
 | Person.PersonPhone | Table | Telephone number and type of a person. | 1 |
 | Production.ProductDocument | Table | Cross-reference table mapping products to related product documents. | 3 |
 | Purchasing.PurchaseOrderDetail | Table | Individual products associated with a specific purchase order. See PurchaseOrderHeader. | 3 |
 | Purchasing.PurchaseOrderHeader | Table | General purchase order information. See PurchaseOrderDetail. | 2 |
 | Sales.SalesOrderDetail | Table | Individual products associated with a specific sales order. See SalesOrderHeader. | 1 |
 | Sales.SalesPerson | Table | Sales representative current information. | 2 |
 | Sales.SalesPersonQuotaHistory | Table | Sales performance tracking. | 3 |
 | Sales.SalesTerritoryHistory | Table | Sales representative transfers to other sales territories. | 3 |
 | Sales.Store | Table | Customers (resellers) of Adventure Works products. | 3 |
 | dbo.ufnGetContactInformation | User Defined Function | Table value function returning the first name, last name, job title and contact type for a given contact. | 1 |
 | uPurchaseOrderDetail | Trigger | AFTER UPDATE trigger that inserts a row in the TransactionHistory table, updates ModifiedDate in PurchaseOrderDetail and updates the PurchaseOrderHeader.SubTotal column. | 4 |
 | uPurchaseOrderHeader | Trigger | AFTER UPDATE trigger that updates the RevisionNumber and ModifiedDate columns in the PurchaseOrderHeader table. | 3 |
 | dbo.uspGetEmployeeManagers | Stored Procedure | Stored procedure using a recursive query to return the direct and indirect managers of the specified employee. | 1 |
 | dbo.uspGetManagerEmployees | Stored Procedure | Stored procedure using a recursive query to return the direct and indirect employees of the specified manager. | 1 |
 | dbo.uspSearchCandidateResumes | Stored Procedure | | 3 |
 | HumanResources.uspUpdateEmployeeHireInfo | Stored Procedure | Updates the Employee table and inserts a new row in the EmployeePayHistory table with the values specified in the input parameters. | 2 |
 | HumanResources.uspUpdateEmployeeLogin | Stored Procedure | Updates the Employee table with the values specified in the input parameters for the given BusinessEntityID. | 2 |
 | HumanResources.uspUpdateEmployeePersonalInfo | Stored Procedure | Updates the Employee table with the values specified in the input parameters for the given EmployeeID. | 2 |
 | Person.vAdditionalContactInfo | View | Displays the contact name and content from each element in the xml column AdditionalContactInfo for that person. | 1 |
 | HumanResources.vEmployee | View | Employee names and addresses. | 1 |
 | HumanResources.vEmployeeDepartment | View | Returns employee name, title, and current department. | 1 |
 | HumanResources.vEmployeeDepartmentHistory | View | Returns employee name and current and previous departments. | 1 |
 | Sales.vIndividualCustomer | View | Individual customers (names and addresses) that purchase Adventure Works Cycles products online. | 1 |
 | HumanResources.vJobCandidate | View | Job candidate names and resumes. | 3 |
 | HumanResources.vJobCandidateEducation | View | Displays the content from each education related element in the xml column Resume in the HumanResources.JobCandidate table. The content has been localized into French, Simplified Chinese and Thai. Some data may not display correctly unless supplemental language support is installed. | 3 |
 | HumanResources.vJobCandidateEmployment | View | Displays the content from each employement history related element in the xml column Resume in the HumanResources.JobCandidate table. The content has been localized into French, Simplified Chinese and Thai. Some data may not display correctly unless supplemental language support is installed. | 3 |
 | Sales.vPersonDemographics | View | Displays the content from each element in the xml column Demographics for each customer in the Person.Person table. | 1 |
 | Sales.vSalesPerson | View | Sales representiatives (names and addresses) and their sales-related information. | 1 |
 | Sales.vSalesPersonSalesByFiscalYears | View | Uses PIVOT to return aggregated sales information for each sales representative. | 1 |
 | Sales.vStoreWithAddresses | View | Stores (including store addresses) that sell Adventure Works Cycles products to consumers. | 4 |
 | Sales.vStoreWithContacts | View | Stores (including store contacts) that sell Adventure Works Cycles products to consumers. | 1 |
 | Sales.vStoreWithDemographics | View | Stores (including demographics) that sell Adventure Works Cycles products to consumers. | 4 |
 | Purchasing.vVendorWithContacts | View | Vendor (company) names and the names of vendor employees to contact. | 1 |