Exam 11: Enhanced Database Techniques

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

Besides a stand-alone macro,what is the other type of macro?

(Multiple Choice)
4.9/5
(42)

Event-driven data macros are triggered by ________ events.

(Short Answer)
4.8/5
(36)

What is true about how Access handles macros when there are multiple actions in the macro?

(Multiple Choice)
4.8/5
(35)

The actions available in the Macro Designer are the same for data macros as for standalone or embedded macros.

(True/False)
4.8/5
(30)
Match the SQL keywords at the top with what would follow those words from the list at the bottom to accomplish the following: display three fields (Field1,Field2,Field3)from the Sample table,sorted by Field1 in ascending order,and with only those records where Field2 equals "FrogLegs" and put all those in a new table called "Delicacies".
INTO
Field2 DESC
WHERE
Field1,Field2,Field3
ORDER BY
Sample
Correct Answer:
Verified
Premises:
Responses:
INTO
Field2 DESC
WHERE
Field1,Field2,Field3
ORDER BY
Sample
FROM
Delicacies
SELECT
Field2="FrogLegs"
(Matching)
4.8/5
(33)

A data macro performs a series of actions when a specific form event occurs.

(True/False)
4.9/5
(38)

Which one of the four keywords in SQL is used to determine how rows will be sorted?

(Multiple Choice)
4.7/5
(33)

What company developed SQL?

(Multiple Choice)
4.8/5
(33)

If your SQL query does not include a WHERE statement,then how many records will be selected?

(Multiple Choice)
4.8/5
(42)

Stand-alone macros display as objects in the Navigation Pane.

(True/False)
4.7/5
(34)

Which one of the four keywords in SQL is used to specify what table the fields can be found?

(Multiple Choice)
4.9/5
(46)

A form that is based on a table that contains a(n)________ macro inherits the logic of the table.

(Short Answer)
4.7/5
(29)

The ________ Update event is triggered any time you enter or update data on a form.

(Short Answer)
4.9/5
(43)

To test a data macro,open the table and perform whatever the event was to which the macro has been attached and see if the proper action is performed.

(True/False)
4.8/5
(33)
Given this SQL statement,match the question with the correct answer: SELECT Contribution.SSN,Contribution.PayDate,Contribution.GrossPay,Contribution.[401KEmployee],Contribution.[401KMatch],Contribution.[401KTotal] INTO Archive FROM Contribution WHERE (((Contribution.SSN)="456667778"))ORDER BY Contribution.PayDate.
What would need to be done to sort the records in descending order?
ORDER BY Contribution.PayDate DESC
What would need to be done to not create the new table?
Delete WHERE (((Contribution.SSN)="456667778"))
What would need to be done to change the name of the new database to "Old"?
Delete ORDER BY Contribution.PayDate
Correct Answer:
Verified
Premises:
Responses:
What would need to be done to sort the records in descending order?
ORDER BY Contribution.PayDate DESC
What would need to be done to not create the new table?
Delete WHERE (((Contribution.SSN)="456667778"))
What would need to be done to change the name of the new database to "Old"?
Delete ORDER BY Contribution.PayDate
What would need to be done to sort by the default field?
INTO Old
What would need to be done to delete the criteria?
Delete INTO Archive
(Matching)
4.8/5
(29)

Which of the following is not considered a table event?

(Multiple Choice)
5.0/5
(44)

Which of the following is not correct about queries and SQL?

(Multiple Choice)
4.8/5
(36)

When you add an action to a macro and that action has several arguments,each of the arguments are required.

(True/False)
4.8/5
(39)

If you drag a table,query,form,or report to the Macro Designer,Access adds an action that opens the table,query,form,or report in edit/design mode.

(True/False)
4.8/5
(29)

What was developed to make it easier to create or modify macros?

(Multiple Choice)
4.8/5
(29)
Showing 81 - 100 of 100
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)