Mysql Setup
- INFORMATION_SCHEMA is not based on the SQL standard.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
‘INFORMATION_SCHEMA’ is another way to access information about the databases and its objects (metadata). It is based on the ‘SQL standard’, although some content is MySQL-specific.
- MySQL supports shared-memory connections on Windows.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
MySQL supports shared memory connections on Windows. This capability is disabled by default. In order to enable it, the server is started with the ‘–shared-memory’ option.
- The option used to specify the socket file pathname is ______________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
The default socket file usually is ‘/tmp/mysql.sock’. Operating system distributions that include MySQL often use a different location. The –socket option is used to specify explicitly.
- Which option is used to specify to the server the IP number of the server host on which the server should listen?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
If the server host has more than one IP number, the server can be specified the one that it should use when listening for connections by starting it with a ‘–bind-address’ option.
- The server listens on a network port for TCP/IP connections unless started with the option ______________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
On all the platforms the server listens on a network port for the TCP/IP connections, unless and until it is started with the –skip-networking option. The default port number is 3306.