Vidyalelo
MySQL · Q776

MySQL

Programming · MySQL · question 776

Q776

The LOCAL capability for LOAD DATA does not need to be enabled explicitly.

A.
True
Answer
B.
False

Answer: Option A

Solution

Answer: Option A
Solution:
This question asks about the LOAD DATA command in MySQL and its LOCAL capability.

The LOCAL capability allows you to load data from a file on the server where MySQL is running, rather than from a remote server.

The question asks if you need to explicitly enable this capability.

The answer is False (Option B).

You do not need to explicitly enable the LOCAL capability. It is enabled by default in MySQL.

However, it's important to be aware of potential security implications of using LOCAL, as it could allow unauthorized access to files on the server.