InterviewSolution
Saved Bookmarks
| 1. |
Which option executes all SQL statements in a SQL script irrespective of the number of errors?(a) –ensure(b) –violent(c) –force(d) –run |
|
Answer» Correct choice is (c) –force For explanation I would say: If SQL queries in a file are run using mysql in batch mode, mysql either quits after the first error. If the –force option is specified all the queries are executed indiscriminately. |
|