When running an append query, what happens if a record violates the primary key rule for the destination table?

A) The original record is selected.
B) The append query is rejected.
C) The record is rejected.
D) The record is added without the primary key field.


C

Computer Science & Information Technology

You might also like to view...

Describe the differences between a call to an inline function member and a function that is not declared inline.. What advantages are there to inline? What disadvantages?

What will be an ideal response?

Computer Science & Information Technology

What is the output of the following program?

``` public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; int v = values[0][0]; for (int row = 0; row < values.length; row++) for (int column = 0; column < values[row].length; column++) if (v < values[row][column]) v = values[row][column]; System.out.print(v); } } ``` a. 1 b. 3 c. 5 d. 6 e. 33

Computer Science & Information Technology

Category view offers the various Control Panel options organized into ten functional categories.??

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

This type of workstation requires upgraded graphics cards as well as high CPU power.

A. Home server B. Thick client C. Thin client D. Graphics and CAD/CAM design

Computer Science & Information Technology