Which two dynamic performance views would you query to determine the endian format of your platform? (Choose two.)
A.
V$DATABASE
B.
V$INSTANCE
C.
V$PLATFORM
D.
V$TABLESPACE
E.
V$CONTROLFILE
F.
V$TRANSPORTABLE_PLATFORM
Explanation:
SQL>SELECT d.PLATFORM_NAME, ENDIAN_FORMAT
FROM V$TRANSPORTABLE_PLATFORM tp, V$DATABASE d
Where to.platform_name=d.platform_name;
PLATFORM_NAME ENDIAN_FORMAT
——————————————- ————– Linux 64-bit for AMD Little
I agree with the answer. AF