Examine this startup script called startmydb.sql:
CONNECT myid/mypwd AS SYSDBA
STARTUP
EXIT
In Oracle8i, you could have executed this script by invoking Server Manager with the
command:
svrmgrl @startmydb.sql
Which alternative command could you use to run the startmydb.sql script with SQL*Plus to
start your Oracle 10g database?
A.
sqlplus -S @startmydb.sql
B.
sqlplus /NOLOG @startmydb.sql
C.
sqlplus -Sstartmydb.sql
D.
sqlplus @startmydb.sql
Explanation: