itgle.com

Your database interface is running. A user SCOTT starts a SQL *Plus session, and issues the following query:SQL> SELECT * FROM sales;Which process would retrieve the result from the database and return it to the client program?()A. User processB. Server p

题目

Your database interface is running. A user SCOTT starts a SQL *Plus session, and issues the following query:SQL> SELECT * FROM sales;Which process would retrieve the result from the database and return it to the client program?()

A. User process

B. Server process

C. System Monitor (SMON)

D. Process Monitor (PMON)

E. Checkpoint process (CKPT)


相似考题
参考答案和解析
参考答案:B
更多“Your database interface is running. A user SCOTT starts a SQL *Plus session, and issues th ”相关问题
  • 第1题:

    Youwanttoenabletheuser,Scott,tochangetotheGRP1consumergroupbyissuingthefollowingcode:SQL>EXECDBMS_SESSION.SWITCH_CURRENT_CONSUMER_GROUP(’SCOTT’,’GRP1’,FALSE);Howwillyougranttheswitchprivilegetotheuser,Scott?()

    A.byusingtheDBMS_SESSIONpackage

    B.bygrantingtheDBArole

    C.byusingtheDBMS_RESOURCE_MANAGERpackage

    D.byusingtheDBMS_RESOURCE_MANAGER_PRIVSpackage


    参考答案:D

  • 第2题:

    关于SQL*PLUS的叙述正确的是()

    A.SQL*PLUS是ORACLE数据库的专用访问工具

    B.SQL*PLUS是标准的SQL访问工具,可以访问各类关系型数据库

    C.SQL*PLUS是所有ORACLE应用程序的底层API

    D.SQL*PLUS是访问ORACLE数据库的唯一对外接口

    E.以上所述都不正确


    参考答案:A

  • 第3题:

    下面程序段执行完毕,页面显示的内容是()。 string strName; strName = "user_name"; Session["strName"] = "Mary"; Session[strName] = "John"; Response.Write(Session["user_name"]);

    A.Mary

    B.John

    C.user_name

    D.语法有错,无法正常运行


    错误信息

  • 第4题:

    request.setAttribute("user","svse");session.setAttribute("user","bob");使用{user}则显示

    A.null

    B.svse

    C.bob

    D.啥也没有


    正确答案:B

  • 第5题:

    在Oracle中,()是一个基于Web的SQL*Plus工具,能够在网页中执行SQL*Plus命令。

    A.SQL*Plus

    B.iSQL*Plus

    C.PL*SQL

    D.iPL*SQL


    参考答案:B

  • 第6题:

    若要从session中取出对象user,则EL表达式为${session.user} 。


    这是不可能的,因为应用程序A中的脚本程序只能写入信息到应用程序A的Session对象中,而应用程序B中的脚本程序也只能从应用程序B中的Session对象读取信息。不管是在应用程序A还是在应用程序B中,都是在处理不同的的Session对象,但是,可以通过设置Cookie来存储信息,在相同区域内的所有脚本程序都可以访问Cookie。