InterviewSolution
Saved Bookmarks
| 1. |
What will happen if the data being loaded into a text column exceeds the maximum size of that type?(a) Extra memory will be allocated(b) Process terminate(c) Data will be truncated(d) Depend on the system |
|
Answer» Correct choice is (c) Data will be truncated To elaborate: Mysql cannot allocate dynamic memory therefore if data exceeds the memory then extra data will be truncated. |
|