FOR MORE CLASSES VISIT

Size: px
Start display at page:

Download "FOR MORE CLASSES VISIT"

Transcription

1 BIS 345 Final Exam Guide Set 1 FOR MORE CLASSES VISIT 1. (TCO 1) Which of the following sets of SQL clauses represent the minimum combination of clauses to make a working SQL statement? (Points : 5) SELECT, WHERE FROM, WHERE SELECT, FROM FROM, ORDER BY 2. (TCO 1) Which of the following would be considered a logical operator? (Points : 5) = >= AND IS NULL 3. (TCO 1) Which of the following is true about ORDER BY clauses? (Points : 5) The default order is ascending when none is specified. Numerical columns are sorted from highest to lowest where no sort order is specified. Columns on which sorting must be conducted cannot be identified by their position in their table. Character columns are evaluated from right to left. 4. (TCO 1) Which of the following would extract all rows containing the numbers 4 or 8? (Points : 5) WHERE number = 4 or number = 8 WHERE number BETWEEN 4 and 8 WHERE number = '4 or 8' Where number = '4' or '8'

2 5. (TCO 1) Assume you want to associate a TaxpayerTable with a PrincipalResidenceTable. The PrincipalResidentTable contains the address where each taxpayer lives. Assume that each taxpayer can have only one residence; however, more than one person at the address can be considered a taxpayer. What is the relationship between the TaxpayerTable and PrincipalResidenceTable? (Points : 5) Many-To-One One-To-Many Many-to-Many One-to-One 6. (TCO 1) Which of the following would display values from the city field in the Professor table, removing all duplicate city names? (Points : 5) SELECT City DISTINCT FROM Professor SELECT City FROM DISTINCT Professor SELECT DISTINCT City FROM Professor SELECT DISTINCT FROM Professor 7. (TCO 1) Assume you have a table called StudentTable. You would like to extract the lastname of all students who have not yet declared their major. Which of the following WHERE clauses would accomplish this? (Points : 5) WHERE major = " " WHERE major = ' ' WHERE major IS NULL WHERE major = 'NULL' 8. (TCO 3) Which of the following statements would count the number of customers within each state? Assume you have a table with the following columns: (Points : 5) SELECT State, Count(*) FROM CustomerTable GROUP BY State; SELECT CustomerID, Count(State)

3 FROM CustomerTable GROUP BY CustomerID; SELECT State, Count(CustomerID) FROM CustomerTable; None of the above. 9. (TCO 3) Which of the following statements would the extract average income of the customers in each city? Assume you have a table with the following columns: (Points : 5) SELECT City, Avg(Income) FROM CustomerTable GROUP BY City; SELECT State, Avg(Income) FROM CustomerTable GROUP BY State; SELECT City, Average(Income) FROM CustomerTable GROUP BY City; SELECT State, Average(Income) FROM CustomerTable GROUP BY State; 10. (TCO 4) Query is the complete process from submission of a query to its actual execution. (Points : 5) optimization compilation insertion None of the above 11. (TCO 4) Assume you have two queries that must extract all rows that have a value of greater than $100 in an Income column. You are considering two ways of writing your WHERE clause. The first option is to extract all columns that are NOT less than or equal to $100. The second option is to extract all

4 columns that are greater than $100. Which option should you choose to ensure your query runs as quickly as possible? (Points : 5) The first option The second option It doesn't matter which option you pick; they will run the same no matter what. All of the above 12. (TCO 7) Which of the file formats can be viewed using Adobe Acrobat Reader? (Points : 5) CSV PDF TIFF XLSX 13. (TCO 8) Name the security concept involves ensuring that one person doesn't have control over too many steps in a process. (Points : 5) zroles Separation of duties Securing forms and reports Using views 14. (TCO 8) encryption offers a more granular level of encryption. (Points : 5) Role based Object-based security Column-level None of the above 15. (TCO 9) Which of the following reports requires the reader to read down columns to understand its meaning? (Points : 5) Matrix Exception

5 Tabular None of the above 16. (TCO 9) Assume you are creating a report which is sorted by class, and then by student within class. The class is considered the column: (Points : 5) gross minor major None of the above 17. (TCO 9) Aggregation functions help grouping scenarios by providing for groups. (Points : 5) totals subtotals titles expressions 18. (TCO 10) Which of the following represent a popular reportwriting tool that is not a Microsoft application? (Points : 5) Access Reports SSRS SSMS Crystal Reports 19. (TCO 10) Which of the following is NOT one of the formats available for reports? (Points : 5) XML HTML PDF XPDF 20. (TCO 2) Use the data type for columns that contain letters and special characters and for columns containing numbers that will not be used in calculations. (Points : 5) CHAR VARCHAR

6 Text String 21. (TCO 2) Which of the following functions would you use to extract the from your records in the database? (Points : 5) Datepart Datediff Dateout Dateyear 22. (TCO 2) Which of the following functions would return the current date based on the computer clock. (Points : 5) TodayDate() PutDate() FindDate() GetDate() 23. (TCO 3) Aggregate functions ignore the values. (Points : 5) character numeric date null 24. (TCO 5) For the report server to use an extension, it must be. (Points : 5) configured linked to the server added to the report installed 25. (TCO 5) The easiest and fastest way to create a report is to use the tool. (Points : 5) report builder report wizard report template report manager

7 26. (TCO 5) When creating the a report using Business Intelligence Development Studio, you can view the report using the tab. (Points : 5) Toolbox Design Output box Preview 27. (TCO 5) The data set contains all of the following except. (Points : 5) reuslts of the query SQL statement pointer to the data source name of data source 28. (TCO 7) The chart contains the plotting area of a chart. (Points : 5) category data series areas 29. (TCO 7) presents a grid layout with static columns and expands detail data data row by row. (Points : 5) Table Matrix List Dropdown 30. (TCO 6) regions are items that must be associated with a data set. (Points : 5) Processor Report Presentation Data

8 31. (TCO 6) Which of the data source credential options is the least recommended because of security risks. (Points : 5) Hard-code Prompt Windows Authentication No Credentials 32. (TCO 6) Which of the following is not a type of data source in SSRS. (Points : 5) embedded shared calculated expression 33. (TCO 3) Which of the following functions would you use in an SQL statement to tally the number of values. (Points : 5) Max() Avg() Sum() Count() 34. (TCO 3) functions are SQL mathematical summaries. (Points : 5) Summation Summary Aggregate Cummalative 35. (TCO 5) When using the report server project wizard the most crucial step is. (Points : 5) selecting your data source naming your project selecting the location to save your project selecting the correct template 36. (TCO 2) Refer to the tblcustomer table below. As a data analyst, you have been requested to select rows that meet the

9 following requirements: For each city, list the city name in all upper case characters along with the exchange part of the customer phone number (the first 3 digits). Include only preferred customers in the list. Order the rows in alphabetical order of city. Be sure to give the calculated columns an alias. tblcustomer: CustID (PK) LastNameFirstNamePhoneCityRegionOverdue Status*PreferredIncomeNumOrdersBalanceBirthdate 10 SmithBob OrlandoNorth Paid Y /1/ RamirezJose ApexSouthPaidY /8/ WashingtonTerrell SujourEast[null]Y /5/ JonesBill AxeCrossingWestUnpaidY /1/ MoralesSandy OrlandoNorthPaidN /3/ PrincipeMichelle ApexSouthPaidN /2/ MavisJohn SujourEastUnpaidY /5/1989 *Overdue Status indicates customers with a balance that is 30 or more days overdue Part 1: Write the complete SQL statement needed to return the rows that meet these requirements.

10 Part 2: What rows will be returned from this query? List the customer ID only of the rows to be returned. Part 3: What function did you use to extract the three-digit exchange? Why did you select this function? Rewrite the SQL using a different function to extract these characters. (Points : 25) 37. (TCO 3) Refer to the tblcustomer table below. As a data analyst, you have been requested to select rows that meet the following requirements. For each city, list the name of the city, and the number of customers in that city. Include only those cities that have more than 1 customer in them. Order the data by city in descending order. tblcustomer: CustID (PK) LastNameFirstNamePhoneCityRegionOverdue Status*PreferredIncomeNumOrdersBalanceBirthdate 10 SmithBob OrlandoNorth Paid Y /1/ RamirezJose ApexSouthPaidY /8/ WashingtonTerrell SujourEast[null]Y /5/ JonesBill AxeCrossingWestUnpaidY /1/ MoralesSandy OrlandoNorthPaidN /3/1986

11 21PrincipeMichelle ApexSouthPaidN /2/ MavisJohn SujourEastUnpaidY /5/1989 *Overdue Status indicates customers with a balance that is 30 or more days overdue Part 1: Build your SELECT statement by choosing the certain clauses from the list below and putting the clauses in the correct order: SELECT City, Count(*) ORDER BY 2 WHERE Count(*) > 1 SELECT Region, Count(*) GROUP BY City FROM tblcustomer ORDER BY Count(*) HAVING Count(*) > 1 GROUP BY Region ORDER BY 2 DESC Part 2: Did you select any filter clause(s)? (WHERE, HAVING) Justify your choice of filter(s). (Points : 25) 38. (TCO 6) Evaluate the Supplier List report below. Management requested this report so they can monitor the value and quantity of the stock on hand; a requirement of the report is to be able to match the product to the supplier. Part 1: Describe at least two enhancements that would make this report more readable to the user.

12 Part 2: Describe at least two features you would include that would add functionality to the report and improve its flexibility for the user. (Points : 25) ================================================ BIS 345 Final Exam Guide Set 2 FOR MORE CLASSES VISIT 1. (TCO 1) Which of the following portions of an SQL Statement indicate the columns that should be included in the result set?(points : 5) SELECT FROM WHERE INSERT Question 2.2. (TCO 1) Which of the following operators uses wildcard characters to search for patterns or characters in a character string?(points : 5) SEARCH LIKE BETWEEN EQUAL TO Question 3.3. (TCO 1) Which of the following characters is used to merge the output of two columns into one? (Points : 5) AND PLUS + ; Question 4.4. (TCO 1) Which of the following would extract all rows containing the numbers 4 or 8? (Points : 5)

13 WHERE number = 4 or number = 8 WHERE number BETWEEN 4 and 8 WHERE number = '4 or 8' Where number = '4' or '8' Question 5.5. (TCO 1) Assume you have a table called CourseTable. You would like to extract all courses that were developed in June and July of Which of the following operators would be of most use to you in your WHERE clause? (Points : 5) BETWEEN LIKE IS NULL None of the above Question 6.6. (TCO 1) Given Professors table with LastName, FirstName, and MI fields, which of the following would select all fields from the table? (Points : 5) SELECT * FROM Professors; SELECT * Professors; SELECT Last Name, First Name, MI FROM Professors; SELECT * ALL Question 7.7. (TCO 1) Which of the following would extract all rows containing the numbers 10 or 20? (Points : 5) WHERE number BETWEEN 10 and 20 WHERE number = 10 or number = 20 WHERE number = '10 or 20' Where number = '10' or '20' Question 8.8. (TCO 3) Which of the following statements would extract the average price of all the products? Assume you have a table with the following columns: (Points : 5) SELECT ProductID, Avg(UnitPrice) FROM ProductTable GROUP BYProductID; SELECT Average(UnitPrice) FROM ProductTable;

14 SELECT Avg(UnitPrice) FROM ProductTable; None of the above Question 9.9. (TCO 3) Which of the following statements would the extract the total value of all the orders? Assume you have a table with the following columns: (Points : 5) SELECT Total(OrderTotal) FROM OrderTable; SELECT Sum(OrderTotal) FROM OrderTable; SELECT Sum(OrderTotal) FROM OrderTable GROUP BY OrderTotal; SELECT Rollup(OrderTotal) FROM OrderTable; Question (TCO 4) Assume you have two queries. The first query selects its data using a join involving five tables. The second query selects its data using a join involving three tables. Which of the queries would run faster, all other things being equal? (Points : 5) The first query will run slower than the second query. The second query will run slower than the second query. The queries will run at the same speed. All of the above Question (TCO 4) Assume you have two select queries that must join two tables. The first query uses the INNER JOIN keyword, while the other accomplishes the join using the WHERE clause. Which query will be more likely to run faster - the first query or the second query? (Points : 5) The first query will run slower than the second query. The second query will run slower than the first query. The queries will run at the same speed. All of the above

15 Question (TCO 7) Which of the following file formats are used to import data into SSRS. (Points : 5) CSV PDF SLN docx Question (TCO 8) Name the security concept involves ensuring that one person doesn't have control over too many steps in a process.(points : 5) zroles Separation of duties Securing forms and reports Using views Question (TCO 8) is the process of creating ciphertext. (Points : 5) Passcoding Digital Certificate Symmetric Encryption Question (TCO 9) Which of the following reports requires the reader to look at data in both column and row format? (Points : 5) Matrix Exception Tabular None of the above Question (TCO 9) Assume you are creating a report which is sorted by class, and then by student within class. The class is considered the column: (Points : 5) gross minor major None of the above

16 Question (TCO 9) Which date function will return the difference between two dates in the specified units? (Points : 5) DATEDIFFERENCE DATEPART DATEDIFF DATEADD Question (TCO 10) Which of the following represent a popular report-writing tool that is not a Microsoft application? (Points : 5) Access Reports SSRS SSMS Crystal Reports Question (TCO 10) Which of the following is NOT one of the formats available for reports? (Points : 5) XML HTML PDF XPDF Question (TCO 2) Which date function will return the difference between two dates in the specified units? (Points : 5) DATEDIFFERENCE DATEPART DATEDIFF DATEADD Question (TCO 2) Which of the following functions would you use to extract the year, month, or day records in the database? (Points : 5) Datepart Datediff Dateout Dateyear Question (TCO 2) Which of the following functions would you use to extract characters from the middle of a string. (Points : 5)

17 Left() Right() Middle() Substring() Question (TCO 3) Which of the following aggregate functions can be used with any data type. (Points : 5) MAX SUM COUNT AVG Question (TCO 5) When using the report server project wizard the most crucial step is. (Points : 5) selecting your data source naming your project selecting the location to save your project selecting the correct template Question (TCO 5) SSRS uses all of the following types of extensions except. (Points : 5) data processing security delivery communication Question (TCO 5) By default when we add a table to our report in Business Intelligence Development Studio, the table has columns. (Points : 5) Question (TCO 5) You can use the in Business Intelligence Development Studio to access the report items controls. (Points : 5) Design tab

18 Toolbox Toolbar Preview tab Question (TCO 7) The chart control used in SSRS is licensed from software. (Points : 5) Dundas Adobe Apple Google Question (TCO 7) presents group data in a grid layout that's capable of expanding both rows and columns. (Points : 5) Table Matrix List Dropdown Question (TCO 6) A parameter are used during the processing of the query. (Points : 5) Multidimensional Expressions (MDX) query report Multivalue parameters Question (TCO 6) Which data source credentials option is considered an integrated security type. (Points : 5) Prompt for credentials Windows authentication Hard-code credentials No credentials Question (TCO 6) data source is used to dynamically choose the data source at runtime. (Points : 5) embedded shared unique expression

19 Question (TCO 3) Which of the following aggregate functions would not ignore null values. (Points : 5) Count AVG MAX Sum Question (TCO 3) Which of the following is not a valid aggregate function. (Points : 5) DATEDIFFERENCE COUNT MAX MIN Question (TCO 5) For the report server to use an extension, it must be. (Points : 5) configured linked to the server added to the report installed 36. (TCO 2) Refer to the tblcustomer table below. As a data analyst, you have been requested to select rows that meet the following requirements: For each city, list the city name in all upper case characters along with the exchange part of the customer phone number (the first 3 digits). Include only preferred Part 1: Write the complete SQL statement needed to return the rows that meet these requirements. Part 2: What rows will be returned from this query? List the customer ID only of the rows to be returned. Part 3: What function did you use to extract the three-digit exchange? Why did you select this function? Rewrite the SQL using a different function to extract these characters. (Points : 25) Part 3: To extract the three-digit exchange I used the LEFT(Phone,3) funcion.

20 37. (TCO 3) Refer to the tblcustomer table below. As a data analyst, you have been requested to select rows that meet the following requirements. For each city, list the name of the city, and the number of customers in that city. Include only those cities that have more than 1 customer in them. Order the data by city in descending order. tblcustomer: Part 1: SELECT City, COUNT(*) FROM tblcustomer GROUP BY City HAVING COUNT(*)>1 ORDER BY City DESC; Part 2: Did you select any filter clause(s)? (WHERE, HAVING) Justify your choice of filter(s). (Points : 25) 38. (TCO 6) Evaluate the Supplier List report below. Management requested this report so they can monitor the value and quantity of the stock on hand; a requirement of the report is to be able to match the product to the supplier. Part 1: Describe at least two enhancements that would make this report more readable to the user. Part 1: The two enhancements I would make would be: Part 2: Describe at least two features you would include that would add functionality to the report and improve its flexibility for the user. (Points : 25) Part 2: If I had to include two features to add functionality to the report and improve its flexibility they would be: ================================================== BIS 345 Quiz 1 FOR MORE CLASSES VISIT 1. (TCO 2) Use the data type for columns that contain letters and special characters and for columns containing numbers that will not be used in calculations

21 2. (TCO 2) Which of the following functions would you use to extract characters from the middle of a string. 3. (TCO 2) Which date function will return the difference between two dates in the specified units? 4. (TCO 3) If you wanted to know the highest credit line in your customer database, which if the following functions would you use in your SQL. 5. (TCO 3) Which of the following clauses filters groups 6. (TCO 3) Which of the following characters can be used with the COUNT function to return the total numbers of rows in the query 7. (TCO 2) Which of the following date functions requires a timestamp parameter when use. 8. (TCO 2) Of the following which one properly displays the correct syntax for using a date in an SQL statement. 9. (TCO 2) When using the Convert function, the identifier signifies the format of the output. 10. (TCO 3) The clause can be used to count values once and ignore repeated occurrences ================================================== BIS 345 Quiz 2 FOR MORE CLASSES VISIT 1. (TCO 5) Which of the following is not an SSRS tool 2. (TCO 5) Reports created using report designer or report builder are generated in which of the following reporting languages. 3. (TCO 5) Which of the following tools is built on the Visual Studio 2008 shell 4. (TCO 5) Which of the following tools would you use to manage your SQL Server connection and reporting services? 5. (TCO 5) When using the report server project wizard the most crucial step is. 6. (TCO 5) SQL Server Reporting Services provides the following command line utility to modify encrypted connections. 7. (TCO 5) When creating reports with Visual Studio, a report data set can contain an or shared data source 8. (TCO 5) When creating the a report using Business Intelligence Development Studio, you can view the report using the tab 9. (TCO 5) By default when we add a table to our report in Business Intelligence Development Studio, the table has columns

22 10. (TCO 5) The easiest and fastest way to create a report is to use the tool ================================================== BIS 345 Quiz 3 FOR MORE CLASSES VISIT 1. (TCO 6) Which of the following is not a type of data source in SSRS 2. (TCO 6) Which of the data source credential options is the least recommended because of security risks 3. (TCO 5) All of the following are types of query for a data set except. 4. (TCO 6) regions are items that must be associated with a data set. 5. (TCO 6) Data regions support grouping and. 6. (TCO 6) is the simplest report item and contains no data values 7. (TCO 7) presents group data in a grid layout that's capable of expanding both rows and columns 8. (TCO 5) Of the following four Tablix internal areas, which is a required area? 9. (TCO 7) The chart contains the plotting area of a chart 10. (TCO 7) A report item is a great tool to graphically display key performance indicators ================================================== BIS 345 Week 1 ilab FOR MORE CLASSES VISIT Student Name: Name Using Lab 1, answer the questions and provide copies of your SQL Statements and/or results for each Section listed below Part A: Customer List (4 points) a.what does the ORDER BY clause do? b.screen print your results and paste here:

23 Part B: Customer List with only customers In France or Germany (4 points) Part C: Using a Calculation in a Query (5 points) Part D: Products that are discontinued (5 points) Part E: Practice using the BETWEEN operator (5 points) Part F: Practice using the IN operator (5 points) Part G: Understanding NULL (5 points) Part H: Using a composite condition (5 points) Part I: Using a DATE type variable and Concatenating Column Output (5 points) Part J: Using the LIKE operator and the % wildcard (6 points) ================================================== BIS 345 Week 2 ilab FOR MORE CLASSES VISIT Lab 2 Student Answer Sheet Lab 2, answer the questions and provide copies of your SQL Statements and/or results for each Section listed below Part A: Employee List (4 points) a.what does Left function do? Is selecting the query and coping and could be pasted in a new query if is need it. b.screen print your results and paste here: Part B: Date Function (4 points) a. How do you display the year part of a date? b. Paste your SQL Statement here: c. Screen print your results and paste here: Part C: Using a Calculation in a Query (4 points) a. Paste your SQL Statement here Screen print your results and paste here: Part D:Practice SUM function (5 points)

24 Part E: Practice Average, Maximum, and Minimum function (5 points) Part F:Practice function when value is NULL (5 points) Part G: Using GROUP BY clause (5 points) Part H: Using function on WHERE clause (5 points) Part I: Using function to calculate date difference (5 points) Part J:Using conversion function (5 points) a. What do you use to convert the numerical data into VARCHAR data type? b. Paste your SQL Statement here: c. Screen print your results and paste here: ================================================== BIS 345 Week 3 ilab FOR MORE CLASSES VISIT Student Name: Using Lab 3, answer the questions and provide copies of your SQL Statements and/or results for each Section listed below Part AJoin two tables (4 points) Part B: Join two tables and apply WHERE clause (4 points) Part C: Inner join two tables (4 points)

25 Part D: Inner join two tables and apply WHERE clause - Practice # 1 (5 points) c. Paste your SQL Statement here: d. Screen print your results and paste here: Part E: Inner join two tables - Practice #2 (5 points) Part F:Inner join two tables - Practice #3 (5 points) Part G: Join two tables with sub-query - Practice # 1 (5 points) Part H: Join two tables with sub-query -Practice #2 (5 points) Part I: Single table join (5 points) c. Paste your SQL Statement here: d. Screen print your results and paste here: Part J: Complex join (5 points) ================================================== BIS 345 Week 4 ilab FOR MORE CLASSES VISIT Using Lab 4 provide copies of your SQL Statements and/or results for each Section listed below Part A Supplier and product list (10 points) a.paste your SQL Statement here: b.screen print your results and paste here: Part B: Order information (10 points) a.paste your SQL Statement here: b.screen print your results and paste here: Part C: Customer and order (10 points) a.paste your SQL Statement here: a.screen print your results and paste here:

26 Part D: Employee and territory list (10 points) b.paste your SQL Statement here: c.screen print your results and paste here: Part E: Order and product (10 points) a.paste your SQL Statement here: b.screen print your results and paste here: Part F: Best customer list (10 points) a.paste your SQL Statement here: b.screen print your results and paste here: Part G: Join Shipper list (10 points) a.paste your SQL Statement here: b.screen print your results and paste here: Part H: Account payable (10 points) a.paste your SQL Statement here: a.screen print your results and paste here Part I: Create a dataset for reporting (10 points) b.paste your SQL Statement here: c.screen print your results and paste here: Part J: Report (10 points) a.paste a screen print of the report view: Lab 4 Part 1: Table Joins and functions Overview Using the Northwind database, you have been requested to select data for specific needs. Once selected, your data will be presented to management. You will have to determine which fields are the most appropriate to be selected. Do not include any fields that management does not need to see. Below is a screenshot of the Northwind Database schema: Log into SQL Server and access the database engine. Once into SQL Server s database engine, select the Northwind database as usual. Part A Northwind Traders deals with a number of suppliers. The Products table includes the supplier ID for each product. Go through the Products table and provide a count of the number of products from each company. The output should show the name of the supplier and a count of the number of products it supplies. As you prepare to create this query, decide which information needs to be displayed this will be listed in the SELECT clause. Review the tables to determine which tables to use these will be listed in the FROM clause. This problem will require an aggregate function which one? What fields will be in the GROUP BY? If more than one table is needed, how will these tables be joined?

27 1. Using the query window, type the SELECT statement needed to produce the desired results. The SQL is given below and after you ve typed your query, click on the Execute button to run the query and see the results. The first rows of your result set should look like this: 2. Open up the Lab 4 Student Answer Sheet located in Doc Sharing, and answer the questions related to this part of the lab. 3. You must provide copies of your SQL statement and/or results. You may be asked to take a screenshot or cut and paste the SQL into the Word document. Follow the instructions on your lab answer sheet. (To take a screenshot, press CTRL-ALT-PRINTSCREEN. Nothing appears to happen on your screen, but this set of keystrokes places a picture of your screen on the clipboard. In Word, just put your mouse where you want the screenshot to go, and then right click and press Paste. The screenshot will appear in your Word document after a few seconds). Part B The Orders and Order Details tables contain the data relating to current invoices. Provide a list showing order ID, order date, and order total (don t forget to include the discount). Round the order total to two decimals; display the order date as mm/dd/yyyy (no timestamp). As you prepare to create this query, decide which information needs to be displayed this will be listed in the SELECT clause. Review the tables to determine which tables to use these will be listed in the FROM clause. This problem will require a calculated field and an aggregate function. What fields will be in the GROUP BY? If more than one table is needed, how will these tables be joined? 1. Using the query window, type the SELECT statement needed to produce the desired results. The SQL is given below: 2. Press the Execute button. A partial result set is displayed below: 3. Answer the questions under Part B of your Lab Answer Sheet, and paste the first SELECT statement and a screenshot of the result set into a Microsoft Word document. Your SQL must be cut and pasted from your SQL window, and should NOT be a screenshot. However, you should use a screenshot of the result set as you did in the previous question. The screenshot should show at least the first 10 rows of the results. ================================================== BIS 345 Week 5 ilab FOR MORE CLASSES VISIT

28 Using Lab 5, provide copies of your SQL Statements, results and reports for each Section listed below Part AProduct and Category dataset (7 points) Screen print your results and paste here: Part B: Product and Category report (10 points) a. Paste your report here: Part C: Sales and Territory dataset (10 points) Screen print your results and paste here: Part D: Sales and Territory, report (10 points) a. Paste your report here: Part E: Sales and Territory Report Interpretation (10 points) Write your interpretation of the results. The interpretation must be a minimum of one paragraph (3 to 5 well-formed sentences) with no spelling or grammatical errors. Based on these results, what other data would you recommend that the business consider for further analysis? ================================================== BIS 345 Week 6 ilab FOR MORE CLASSES VISIT Lab 6 Student Answer Sheet Part A:Product Cost History dataset (7 points) a. Paste your SQL Statement here 1. CategoryList screenshot: 2. ProductList Screenshot Part B: Product Cost History report (10 points) a. Paste your report here: Report 1 Screenshot: Part C: Yearly Sales by Category Dataset (10 points) Part D: Yearly Sales by Category Chart (10 points) a. Paste your report here: Part E: Yearly Sales by Category Interpretation (10 points)

29 Provide an interpretation of the results. The interpretation must be a minimum of one paragraph with no spelling or grammatical errors. Your interpretation should answer the following questions: What information is presented in the chart? Is the chart based on adequate data? Is there something lacking? Can you make meaningful deductions? Based on these results, what other data would you recommend that should be considered for further analysis? ================================================== BIS 345 Week 7 ilab FOR MORE CLASSES VISIT Part ATerritory Sales Dataset (5 points) Part B:Territory Sales Report (10 points) Paste your report here: Part C: Territory Sales Report Interpretation (7 points) Write your interpretation of the results. The interpretation must be a minimum of one paragraph (3 to 5 well-formed sentences) with no spelling or grammatical errors. You should answer the following question based on these results. What other data would you recommend that should be considered for further analysis?

Introduction to SQL Server 2005/2008 and Transact SQL

Introduction to SQL Server 2005/2008 and Transact SQL Introduction to SQL Server 2005/2008 and Transact SQL Week 5: SQL Server Reporting Services Building Reports Steve Stedman - Instructor Steve@SteveStedman.com This Weeks Overview Introduction to SQL Server

More information

DB2 SQL Class Outline

DB2 SQL Class Outline DB2 SQL Class Outline The Basics of SQL Introduction Finding Your Current Schema Setting Your Default SCHEMA SELECT * (All Columns) in a Table SELECT Specific Columns in a Table Commas in the Front or

More information

STIDistrict Query (Basic)

STIDistrict Query (Basic) STIDistrict Query (Basic) Creating a Basic Query To create a basic query in the Query Builder, open the STIDistrict workstation and click on Utilities Query Builder. When the program opens, database objects

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action

As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action queries and how to create queries that perform more

More information

Greenplum SQL Class Outline

Greenplum SQL Class Outline Greenplum SQL Class Outline The Basics of Greenplum SQL Introduction SELECT * (All Columns) in a Table Fully Qualifying a Database, Schema and Table SELECT Specific Columns in a Table Commas in the Front

More information

This course is aimed at those who need to extract information from a relational database system.

This course is aimed at those who need to extract information from a relational database system. (SQL) SQL Server Database Querying Course Description: This course is aimed at those who need to extract information from a relational database system. Although it provides an overview of relational database

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

Course Outline. Writing Reports with Report Builder and SSRS Level 1 Course 55123: 2 days Instructor Led. About this course

Course Outline. Writing Reports with Report Builder and SSRS Level 1 Course 55123: 2 days Instructor Led. About this course About this course Writing Reports with Report Builder and SSRS Level 1 Course 55123: 2 days Instructor Led In this 2-day course, students will continue their learning on the foundations of report writing

More information

Management Reports Centre. User Guide. Emmanuel Amekuedi

Management Reports Centre. User Guide. Emmanuel Amekuedi Management Reports Centre User Guide Emmanuel Amekuedi Table of Contents Introduction... 3 Overview... 3 Key features... 4 Authentication methods... 4 System requirements... 5 Deployment options... 5 Getting

More information

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 Query Studio Training Guide Cognos 8 February 2010 DRAFT Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 2 Table of Contents Accessing Cognos Query Studio... 5

More information

eschoolplus+ Cognos Query Studio Training Guide Version 2.4

eschoolplus+ Cognos Query Studio Training Guide Version 2.4 + Training Guide Version 2.4 May 2015 Arkansas Public School Computer Network This page was intentionally left blank Page 2 of 68 Table of Contents... 5 Accessing... 5 Working in Query Studio... 8 Query

More information

Writing Reports with Report Designer and SSRS 2014 Level 1

Writing Reports with Report Designer and SSRS 2014 Level 1 Writing Reports with Report Designer and SSRS 2014 Level 1 Duration- 2days About this course In this 2-day course, students are introduced to the foundations of report writing with Microsoft SQL Server

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

Polaris SQL Introduction. Michael Fields Central Library Consortium

Polaris SQL Introduction. Michael Fields Central Library Consortium Polaris SQL Introduction Michael Fields Central Library Consortium Topics Covered Connecting to your Polaris SQL server Basic SQL query syntax Frequently used Polaris tables Using your SQL queries inside

More information

T-SQL Training: T-SQL for SQL Server for Developers

T-SQL Training: T-SQL for SQL Server for Developers Duration: 3 days T-SQL Training Overview T-SQL for SQL Server for Developers training teaches developers all the Transact-SQL skills they need to develop queries and views, and manipulate data in a SQL

More information

3/3/2008. Announcements. A Table with a View (continued) Fields (Attributes) and Primary Keys. Video. Keys Primary & Foreign Primary/Foreign Key

3/3/2008. Announcements. A Table with a View (continued) Fields (Attributes) and Primary Keys. Video. Keys Primary & Foreign Primary/Foreign Key Announcements Quiz will cover chapter 16 in Fluency Nothing in QuickStart Read Chapter 17 for Wednesday Project 3 3A due Friday before 11pm 3B due Monday, March 17 before 11pm A Table with a View (continued)

More information

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide

SyncFirst Standard. Quick Start Guide User Guide Step-By-Step Guide SyncFirst Standard Quick Start Guide Step-By-Step Guide How to Use This Manual This manual contains the complete documentation set for the SyncFirst system. The SyncFirst documentation set consists of

More information

Microsoft Access 2007 Module 2

Microsoft Access 2007 Module 2 Microsoft Access 007 Module http://pds.hccfl.edu/pds Microsoft Access 007: Module August 007 007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College

More information

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 7 Introduction to Structured Query Language (SQL)

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 7 Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management Tenth Edition Chapter 7 Introduction to Structured Query Language (SQL) Objectives In this chapter, students will learn: The basic commands and

More information

CST272 SQL Server, SQL and the SqlDataSource Page 1

CST272 SQL Server, SQL and the SqlDataSource Page 1 CST272 SQL Server, SQL and the SqlDataSource Page 1 1 2 3 4 5 6 7 8 9 SQL Server, SQL and the SqlDataSource CST272 ASP.NET Microsoft SQL Server A relational database server developed by Microsoft Stores

More information

MIS2502: Data Analytics SQL Getting Information Out of a Database. Jing Gong

MIS2502: Data Analytics SQL Getting Information Out of a Database. Jing Gong MIS2502: Data Analytics SQL Getting Information Out of a Database Jing Gong gong@temple.edu http://community.mis.temple.edu/gong The relational database Core of Online Transaction Processing (OLTP) A series

More information

MIS2502: Data Analytics SQL Getting Information Out of a Database Part 1: Basic Queries

MIS2502: Data Analytics SQL Getting Information Out of a Database Part 1: Basic Queries MIS2502: Data Analytics SQL Getting Information Out of a Database Part 1: Basic Queries JaeHwuen Jung jaejung@temple.edu http://community.mis.temple.edu/jaejung Where we are Now we re here Data entry Transactional

More information

Designing and Managing a Microsoft Business Intelligence Solution Exam.

Designing and Managing a Microsoft Business Intelligence Solution Exam. Microsoft 78-702 Designing and Managing a Microsoft Business Intelligence Solution Exam TYPE: DEMO http://www.examskey.com/78-702.html Examskey Microsoft 78-702 exam demo product is here for you to test

More information

CSC Web Programming. Introduction to SQL

CSC Web Programming. Introduction to SQL CSC 242 - Web Programming Introduction to SQL SQL Statements Data Definition Language CREATE ALTER DROP Data Manipulation Language INSERT UPDATE DELETE Data Query Language SELECT SQL statements end with

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2010 Intellicus Technologies This document and its content

More information

Advanced SQL Tribal Data Workshop Joe Nowinski

Advanced SQL Tribal Data Workshop Joe Nowinski Advanced SQL 2018 Tribal Data Workshop Joe Nowinski The Plan Live demo 1:00 PM 3:30 PM Follow along on GoToMeeting Optional practice session 3:45 PM 5:00 PM Laptops available What is SQL? Structured Query

More information

MS-Access : Objective Questions (MCQs) Set 1

MS-Access : Objective Questions (MCQs) Set 1 1 MS-Access : Objective Questions (MCQs) Set 1 1. What Are The Different Views To Display A Table A) Datasheet View B) Design View C) Pivote Table & Pivot Chart View 2. Which Of The Following Creates A

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Sloan School of Management

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Sloan School of Management MASSACHUSETTS INSTITUTE OF TECHNOLOGY Sloan School of Management 15.561 IT Essentials Spring 2005 An Introduction to Microsoft Access * Lecture Script 1. Introduction Open Database: Northwind.mdb Select

More information

Implementing Table Operations Using Structured Query Language (SQL) Using Multiple Operations. SQL: Structured Query Language

Implementing Table Operations Using Structured Query Language (SQL) Using Multiple Operations. SQL: Structured Query Language Implementing Table Operations Using Structured Query Language (SQL) Using Multiple Operations Show Only certain columns and rows from the join of Table A with Table B The implementation of table operations

More information

Descartes Reporting Services. User s Guide. Version February 2012

Descartes Reporting Services. User s Guide. Version February 2012 Descartes Reporting Services Version 11.1.0036 February 2012 2012 The Descartes Systems Group Inc. All rights reserved. Information in this document is subject to change without notice. Descartes makes

More information

Crystal Reports 2008 OFT - 700

Crystal Reports 2008 OFT - 700 Crystal Reports 2008 OFT - 700 Today s road map Why use Crystal Reports Definition of a report and its components How to use the Standard Report Creation Wizard: query the database and organize the data

More information

ibaan Diagnostic Analyzer 1.0 User's Guide for Diagnostic Analyzer 1.0

ibaan Diagnostic Analyzer 1.0 User's Guide for Diagnostic Analyzer 1.0 ibaan Diagnostic Analyzer 1.0 User's Guide for Diagnostic Analyzer 1.0 A publication of: Baan Development B.V. P.O.Box 143 3770 AC Barneveld The Netherlands Printed in the Netherlands Baan Development

More information

Implementing Data Models and Reports with Microsoft SQL Server Exam Summary Syllabus Questions

Implementing Data Models and Reports with Microsoft SQL Server Exam Summary Syllabus Questions 70-466 Implementing Data Models and Reports with Microsoft SQL Server Exam Summary Syllabus Questions Table of Contents Introduction to 70-466 Exam on Implementing Data Models and Reports with Microsoft

More information

GIFT Department of Computing Science Data Selection and Filtering using the SELECT Statement

GIFT Department of Computing Science Data Selection and Filtering using the SELECT Statement GIFT Department of Computing Science [Spring 2013] CS-217: Database Systems Lab-2 Manual Data Selection and Filtering using the SELECT Statement V1.0 4/12/2016 Introduction to Lab-2 This lab reinforces

More information

Course Outline and Objectives: Database Programming with SQL

Course Outline and Objectives: Database Programming with SQL Introduction to Computer Science and Business Course Outline and Objectives: Database Programming with SQL This is the second portion of the Database Design and Programming with SQL course. In this portion,

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Prophet 21 World Wide User Group Webinars. Barry Hallman. SQL Queries & Views. (Part 2)

Prophet 21 World Wide User Group Webinars. Barry Hallman. SQL Queries & Views. (Part 2) Prophet 21 World Wide User Group Webinars SQL Queries & Views (Part 2) Barry Hallman Disclaimer This webinar is an attempt by P21WWUG members to assist each other by demonstrating ways that we utilize

More information

Oracle Syllabus Course code-r10605 SQL

Oracle Syllabus Course code-r10605 SQL Oracle Syllabus Course code-r10605 SQL Writing Basic SQL SELECT Statements Basic SELECT Statement Selecting All Columns Selecting Specific Columns Writing SQL Statements Column Heading Defaults Arithmetic

More information

Implementing Data Models and Reports with Microsoft SQL Server (466)

Implementing Data Models and Reports with Microsoft SQL Server (466) Implementing Data Models and Reports with Microsoft SQL Server (466) Build an analysis services multidimensional database Design dimensions and measures Given a requirement, identify the dimension/measure

More information

Introduction Microsoft Word CMPE 101 Fundamentals of Computer Engineering EXPERIMENT - 1

Introduction Microsoft Word CMPE 101 Fundamentals of Computer Engineering EXPERIMENT - 1 CMPE 101 EXPERIMENT 1 * INTRODUCTION TO MICROSOFT WORD AND EXCEL Aims 1. Getting used to the Graphical User Interface (GUI) of Windows Operating Systems. 2. Understanding how word processors work and developing

More information

Microsoft Access XP Queries. Student Manual

Microsoft Access XP Queries. Student Manual Microsoft Access XP Queries Student Manual Duplication is prohibited without the written consent of The Abreon Group. Foster Plaza 10 680 Andersen Drive Suite 500 Pittsburgh, PA 15220 412.539.1800 800.338.5185

More information

You can write a command to retrieve specified columns and all rows from a table, as illustrated

You can write a command to retrieve specified columns and all rows from a table, as illustrated CHAPTER 4 S I N G L E - TA BL E QUERIES LEARNING OBJECTIVES Objectives Retrieve data from a database using SQL commands Use simple and compound conditions in queries Use the BETWEEN, LIKE, and IN operators

More information

Electronic Sales Platform User s Manual

Electronic Sales Platform User s Manual Electronic Sales Platform User s Manual Version 1.1 2018 St. Petersburg 2 CONTENTS Preface... 3 1 Introduction... 4 1.1 Workstation Requirements and Settings... 4 1.2 Starting application... 5 2 Summary

More information

SQL Server Reporting Services

SQL Server Reporting Services www.logicalimagination.com 800.657.1494 SQL Server Reporting Services Course #: SS-104 Duration: 3 days Prerequisites This course assumes no prior knowledge of SQL Server Reporting Services. This course

More information

Access ComprehGnsiwG. Shelley Gaskin, Carolyn McLellan, and. Nancy Graviett. with Microsoft

Access ComprehGnsiwG. Shelley Gaskin, Carolyn McLellan, and. Nancy Graviett. with Microsoft with Microsoft Access 2010 ComprehGnsiwG Shelley Gaskin, Carolyn McLellan, and Nancy Graviett Prentice Hall Boston Columbus Indianapolis New York San Francisco Upper Saddle River Imsterdam Cape Town Dubai

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

CS 327E Lecture 2. Shirley Cohen. January 27, 2016

CS 327E Lecture 2. Shirley Cohen. January 27, 2016 CS 327E Lecture 2 Shirley Cohen January 27, 2016 Agenda Announcements Homework for today Reading Quiz Concept Questions Homework for next time Announcements Lecture slides and notes will be posted on the

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

Oracle Database 11g: SQL and PL/SQL Fundamentals

Oracle Database 11g: SQL and PL/SQL Fundamentals Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle Database 11g: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn In this course, students learn the fundamentals of SQL and PL/SQL

More information

Creating and using reports

Creating and using reports L E S S O N 6 Creating and using reports Lesson objectives To present data from your tables, you will need to generate reports. To create and use reports, you will: a b Create a standard report with data

More information

Instructor: Craig Duckett. Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables

Instructor: Craig Duckett. Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables Instructor: Craig Duckett Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables 1 Assignment 1 is due LECTURE 5, Tuesday, April 10 th, 2018 in StudentTracker by MIDNIGHT MID-TERM

More information

Kaseya 2. User Guide. Version 7.0. English

Kaseya 2. User Guide. Version 7.0. English Kaseya 2 Custom Reports User Guide Version 7.0 English September 3, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS

More information

SQL functions fit into two broad categories: Data definition language Data manipulation language

SQL functions fit into two broad categories: Data definition language Data manipulation language Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition Chapter 7 Beginning Structured Query Language (SQL) MDM NUR RAZIA BINTI MOHD SURADI 019-3932846 razia@unisel.edu.my

More information

Microsoft Access 2003 Edition for ECDL Syllabus 4.5 (UK only)

Microsoft Access 2003 Edition for ECDL Syllabus 4.5 (UK only) ECDL Module 5 WORKBOOK Databases Microsoft Access 2003 Edition for ECDL Syllabus 4.5 (UK only) PAGE 2 - ECDL MODULE 5 (OFFICE 2003) - WORKBOOK 1995-2007 Cheltenham Courseware Ltd. All trademarks acknowledged.

More information

Stat Wk 3. Stat 342 Notes. Week 3, Page 1 / 71

Stat Wk 3. Stat 342 Notes. Week 3, Page 1 / 71 Stat 342 - Wk 3 What is SQL Proc SQL 'Select' command and 'from' clause 'group by' clause 'order by' clause 'where' clause 'create table' command 'inner join' (as time permits) Stat 342 Notes. Week 3,

More information

1Z Oracle Database 11g - SQL Fundamentals I Exam Summary Syllabus Questions

1Z Oracle Database 11g - SQL Fundamentals I Exam Summary Syllabus Questions 1Z0-051 Oracle Database 11g - SQL Fundamentals I Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-051 Exam on Oracle Database 11g - SQL Fundamentals I 2 Oracle 1Z0-051 Certification

More information

Duration Level Technology Delivery Method Training Credits. Classroom ILT 5 Days Intermediate SQL Server

Duration Level Technology Delivery Method Training Credits. Classroom ILT 5 Days Intermediate SQL Server NE-20761C Querying with Transact-SQL Summary Duration Level Technology Delivery Method Training Credits Classroom ILT 5 Days Intermediate SQL Virtual ILT On Demand SATV Introduction This course is designed

More information

Simple Invoicing Desktop Database with MS Access 2013/2016. David W. Gerbing School of Business Administration Portland State University

Simple Invoicing Desktop Database with MS Access 2013/2016. David W. Gerbing School of Business Administration Portland State University Simple Invoicing Desktop Database with MS Access 2013/2016 David W. Gerbing School of Business Administration Portland State University July 7, 2018 CONTENTS 1 Contents 1 Create a New Database 1 2 Customer

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

Study Guide. PCIC 3 B2 GS3- Key Applications-Excel. Copyright 2010 Teknimedia Corporation

Study Guide. PCIC 3 B2 GS3- Key Applications-Excel. Copyright 2010 Teknimedia Corporation Study Guide PCIC 3 B2 GS3- Key Applications-Excel Copyright 2010 Teknimedia Corporation Teknimedia grants permission to any licensed owner of PCIC 3 B GS3 Key Applications-Excel to duplicate the contents

More information

Microsoft Access XP Edition for ECDL Syllabus 4.5 (UK only)

Microsoft Access XP Edition for ECDL Syllabus 4.5 (UK only) ECDL Module 5 WORKBOOK Databases Microsoft Access XP Edition for ECDL Syllabus 4.5 (UK only) PAGE 2 - ECDL MODULE 5 (OFFICE XP) - WORKBOOK 1995-2007 Cheltenham Courseware Ltd. All trademarks acknowledged.

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

More information

Querying Data with Transact-SQL

Querying Data with Transact-SQL Querying Data with Transact-SQL Course: 20761 Course Details Audience(s): IT Professional(s) Technology: Microsoft SQL Server 2016 Duration: 24 HRs. ABOUT THIS COURSE This course is designed to introduce

More information

JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x CREATING DASHBOARD REPORTS IN ORACLE BI PUBLISHER

JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x CREATING DASHBOARD REPORTS IN ORACLE BI PUBLISHER JUNE 2016 PRIMAVERA P6 8x, CONTRACT MANAGEMENT 14x AND UNIFIER 16x ABSTRACT An often requested feature in reporting is the development of simple Dashboard reports that summarize project information in

More information

70-466: Implementing Data Models and Reports with Microsoft SQL Server

70-466: Implementing Data Models and Reports with Microsoft SQL Server 70-466: Implementing Data Models and Reports with Microsoft SQL Server The following tables show where changes to exam 70-466 have been made to include updates that relate to SQL Server 2014 tasks. These

More information

Microsoft Office 2010: Introductory Q&As Access Chapter 2

Microsoft Office 2010: Introductory Q&As Access Chapter 2 Microsoft Office 2010: Introductory Q&As Access Chapter 2 Is it necessary to close the Navigation Pane? (AC 78) No. It gives you more room for the query, however, so it is usually a good practice to hide

More information

SQL Server Administration Class 4 of 4. Activant Prophet 21. Basic Data Manipulation

SQL Server Administration Class 4 of 4. Activant Prophet 21. Basic Data Manipulation SQL Server Administration Class 4 of 4 Activant Prophet 21 Basic Data Manipulation This class is designed for Beginner SQL/Prophet21 users who are responsible for SQL Administration as it relates to Prophet

More information

Access - Introduction to Queries

Access - Introduction to Queries Access - Introduction to Queries Part of managing a database involves asking questions about the data. A query is an Access object that you can use to ask the question(s). The answer is contained in the

More information

Quick Start Guide. Version R94. English

Quick Start Guide. Version R94. English Custom Reports Quick Start Guide Version R94 English December 12, 2016 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

INDEX. 1 Basic SQL Statements. 2 Restricting and Sorting Data. 3 Single Row Functions. 4 Displaying data from multiple tables

INDEX. 1 Basic SQL Statements. 2 Restricting and Sorting Data. 3 Single Row Functions. 4 Displaying data from multiple tables INDEX Exercise No Title 1 Basic SQL Statements 2 Restricting and Sorting Data 3 Single Row Functions 4 Displaying data from multiple tables 5 Creating and Managing Tables 6 Including Constraints 7 Manipulating

More information

VUEWorks Report Generation Training Packet

VUEWorks Report Generation Training Packet VUEWorks Report Generation Training Packet Thursday, June 21, 2018 Copyright 2017 VUEWorks, LLC. All rights reserved. Page 1 of 53 Table of Contents VUEWorks Reporting Course Description... 3 Generating

More information

Database Design Practice Test JPSFBLA

Database Design Practice Test JPSFBLA 1. You see field names, data types, and descriptions in: a. Datasheet View c. Form View b. Design View d. Property View 2. The data type for insurance policy numbers, such as 0012-M-340-25 or 43F33-7805,

More information

Working with Data and Charts

Working with Data and Charts PART 9 Working with Data and Charts In Excel, a formula calculates a value based on the values in other cells of the workbook. Excel displays the result of a formula in a cell as a numeric value. A function

More information

Prophet 21 World Wide User Group Webinars. Barry Hallman. SQL Queries & Views. (Basic Skill Level)

Prophet 21 World Wide User Group Webinars. Barry Hallman. SQL Queries & Views. (Basic Skill Level) Prophet 21 World Wide User Group Webinars SQL Queries & Views (Basic Skill Level) Barry Hallman Disclaimer This webinar is an attempt by P21WWUG members to assist each other by demonstrating ways that

More information

Based on the following Table(s), Write down the queries as indicated: 1. Write an SQL query to insert a new row in table Dept with values: 4, Prog, MO

Based on the following Table(s), Write down the queries as indicated: 1. Write an SQL query to insert a new row in table Dept with values: 4, Prog, MO Based on the following Table(s), Write down the queries as indicated: 1. Write an SQL query to insert a new row in table Dept with values: 4, Prog, MO INSERT INTO DEPT VALUES(4, 'Prog','MO'); The result

More information

Aster Data Basics Class Outline

Aster Data Basics Class Outline Aster Data Basics Class Outline CoffingDW education has been customized for every customer for the past 20 years. Our classes can be taught either on site or remotely via the internet. Education Contact:

More information

INTERMEDIATE SQL GOING BEYOND THE SELECT. Created by Brian Duffey

INTERMEDIATE SQL GOING BEYOND THE SELECT. Created by Brian Duffey INTERMEDIATE SQL GOING BEYOND THE SELECT Created by Brian Duffey WHO I AM Brian Duffey 3 years consultant at michaels, ross, and cole 9+ years SQL user What have I used SQL for? ROADMAP Introduction 1.

More information

3-Tier Application Model implies more stable, more secure, and faster operations (work load is

3-Tier Application Model implies more stable, more secure, and faster operations (work load is 1. Introduction GTMain GTMain is an integrated business solution for your company s sales, buying, and shipping, warehouse, accounting and supporting departments. GTMain delivers strong features to facilitate

More information

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year!

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year! EXAMGOOD QUESTION & ANSWER Exam Good provides update free of charge in one year! Accurate study guides High passing rate! http://www.examgood.com Exam : 70-460 Title : Transition Your MCITP: Business Intelligence

More information

Microsoft Access 2016 Intro to Select Queries

Microsoft Access 2016 Intro to Select Queries Microsoft Access 2016 Intro to Select Queries training@health.ufl.edu Access 2016: Intro to Select Queries 2.0 hours Queries compile data from tables into a desired dataset. You can choose multiple fields

More information

Designing Ad hoc Report. Version: 7.3

Designing Ad hoc Report. Version: 7.3 Designing Ad hoc Report Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Exam 2 Study Guide. Denny Hood Computer Science 101

Exam 2 Study Guide. Denny Hood Computer Science 101 Exam 2 Study Guide Denny Hood denny.hood@mail.wvu.edu Computer Science 101 A Brief Word About Your Exam Your exam will be MONDAY, APRIL 10. You will have 50 minutes to complete Exam 2. 1. If you arrive

More information

STOP DROWNING IN DATA. START MAKING SENSE! An Introduction To SQLite Databases. (Data for this tutorial at

STOP DROWNING IN DATA. START MAKING SENSE! An Introduction To SQLite Databases. (Data for this tutorial at STOP DROWNING IN DATA. START MAKING SENSE! Or An Introduction To SQLite Databases (Data for this tutorial at www.peteraldhous.com/data) You may have previously used spreadsheets to organize and analyze

More information

Fig. 1 Relationship View of Northwind.mdb

Fig. 1 Relationship View of Northwind.mdb Lab 6 Working with MS Access Forms LAB 6 Summary 1. Creating Multiple-Table or Linked Forms 2. Calculating Totals and Using Expressions 3. Creating Pop-Up Forms, Custom Dialog Boxes, and Message Boxes

More information

Microsoft Office 2010: Introductory Q&As Access Chapter 3

Microsoft Office 2010: Introductory Q&As Access Chapter 3 Microsoft Office 2010: Introductory Q&As Access Chapter 3 Is the form automatically saved the way the report was created when I used the Report Wizard? (AC 142) No. You will need to take specific actions

More information

Some Basic Aggregate Functions FUNCTION OUTPUT The number of rows containing non-null values The maximum attribute value encountered in a given column

Some Basic Aggregate Functions FUNCTION OUTPUT The number of rows containing non-null values The maximum attribute value encountered in a given column SQL Functions Aggregate Functions Some Basic Aggregate Functions OUTPUT COUNT() The number of rows containing non-null values MIN() The minimum attribute value encountered in a given column MAX() The maximum

More information

Lesson 2. Data Manipulation Language

Lesson 2. Data Manipulation Language Lesson 2 Data Manipulation Language IN THIS LESSON YOU WILL LEARN To add data to the database. To remove data. To update existing data. To retrieve the information from the database that fulfil the stablished

More information

Access 2003 Introduction to Report Design

Access 2003 Introduction to Report Design Access 2003 Introduction to Report Design TABLE OF CONTENTS CREATING A REPORT IN DESIGN VIEW... 3 BUILDING THE REPORT LAYOUT... 5 SETTING THE REPORT WIDTH... 5 DISPLAYING THE FIELD LIST... 5 WORKING WITH

More information

Fundamental Microsoft Jet SQL for Access 2000

Fundamental Microsoft Jet SQL for Access 2000 Fundamental Microsoft Jet SQL for Access 2000 (Microsoft Access 2000 Technical... Pagina 1 di 13 MSDN Home > MSDN Library > Office Solutions Development > Access 2000 > Technical Articles Fundamental Microsoft

More information

Assignment Grading Rubric

Assignment Grading Rubric Final Project Outcomes addressed in this activity: Overview and Directions: 1. Create a new Empty Database called Final 2. CREATE TABLES The create table statements should work without errors, have the

More information

DATABASE MANAGERS. Basic database queries. Open the file Pfizer vs FDA.mdb, then double click to open the table Pfizer payments.

DATABASE MANAGERS. Basic database queries. Open the file Pfizer vs FDA.mdb, then double click to open the table Pfizer payments. DATABASE MANAGERS We ve already seen how spreadsheets can filter data and calculate subtotals. But spreadsheets are limited by the amount of data they can handle (about 65,000 rows for Excel 2003). Database

More information

Aster Data SQL and MapReduce Class Outline

Aster Data SQL and MapReduce Class Outline Aster Data SQL and MapReduce Class Outline CoffingDW education has been customized for every customer for the past 20 years. Our classes can be taught either on site or remotely via the internet. Education

More information

Jarek Szlichta

Jarek Szlichta Jarek Szlichta http://data.science.uoit.ca/ SQL is a standard language for accessing and manipulating databases What is SQL? SQL stands for Structured Query Language SQL lets you gain access and control

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

AUSTIN COMMUNITY COLLEGE CONTINUING EDUCATION. INTERMEDIATE DATABASE/FILE AMANGEMENT (Access Intermediate) (12 hours) ITSW 1055 COURSE SYLLABUS

AUSTIN COMMUNITY COLLEGE CONTINUING EDUCATION. INTERMEDIATE DATABASE/FILE AMANGEMENT (Access Intermediate) (12 hours) ITSW 1055 COURSE SYLLABUS Course Description: Instruction in data validation, data manipulation, browsing through records, records selection and query, indexing, and sorting. Topics include modifying tables, using database wizards,

More information

Table of Contents COURSE OVERVIEW... 5

Table of Contents COURSE OVERVIEW... 5 Table of Contents COURSE OVERVIEW... 5 DISCUSSION... 5 THE NEW DATABASE FORMAT... 5 COURSE TOPICS... 6 CONVENTIONS USED IN THIS MANUAL... 7 Tip Open a File... 7 LESSON 1: THE NEW INTERFACE... 8 LESSON

More information

Submit the MS Access Database file that contains the forms created in this lab.

Submit the MS Access Database file that contains the forms created in this lab. A. Lab # : BSBA BIS245A-5B B. Lab 5B of 7: Completing Forms C. Lab Overview--Scenario/Summary TCO(s): 5. Given a physical database containing tables and relationships, create forms which demonstrate effective

More information

Activant Solutions Inc. SQL 2005: Basic Data Manipulation

Activant Solutions Inc. SQL 2005: Basic Data Manipulation Activant Solutions Inc. SQL 2005: Basic Data Manipulation SQL Server 2005 suite Course 4 of 4 This class is designed for Beginner/Intermediate SQL Server 2005 System Administrators Objectives System Stored

More information

Gloucester County Library System. Excel 2010

Gloucester County Library System. Excel 2010 Gloucester County Library System Excel 2010 Introduction What is Excel? Microsoft Excel is an electronic spreadsheet program. It is capable of performing many different types of calculations and can organize

More information