exam questions

Exam 70-464 All Questions

View all questions & answers for the 70-464 exam

Exam 70-464 topic 7 question 14 discussion

Actual exam question from Microsoft's 70-464
Question #: 14
Topic #: 7
[All 70-464 Questions]

You need to implement a solution that addresses the bulk insert requirements.
What should you add to line 91 in usp_ImportOrderDetails?

  • A. TABLOCK,
  • B. MAXERRORS=0,
  • C. BATCHSIZE=1000,
  • D. LASTROW=0,
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️
BATCHSIZE specifes the number of rows in the BULK INSERT opetation to be copied to the server as one transaction at a time. If this transaction fails, SQL
Server commits or rolls back the transaction for every batch.
Incorrect Answers:
A: TABLOCK specifies that a table-level lock is acquired for the duration of the bulk-import operation.
B: MAXERRORS specifies the maximum number of syntax errors allowed in the data before the entire bulk-import operation is canceled. Each row that cannot be imported by the bulk-import operation is ignored and counted as one error.
D: LASTROW specifies the number of the last row to load. The default is 0, which indicates the last row in the specified data file.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Currently there are no comments in this discussion, be the first to comment!
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...