Which of the following commands is used to retrieve database names from the local catalog for DRDA host databases on System i and System z?()A.LIST DB DIRECTORYB.LIST DCS DIRECTORYC.LIST NODE DIRECTORYD.LIST ACTIVE DATABASES

题目
Which of the following commands is used to retrieve database names from the local catalog for DRDA host databases on System i and System z?()

A.LIST DB DIRECTORY

B.LIST DCS DIRECTORY

C.LIST NODE DIRECTORY

D.LIST ACTIVE DATABASES


相似考题
更多“Which of the following commands is used to retrieve database names from the local catalog for DRDA host databases on System i and System z?() ”相关问题
  • 第1题:

    You wish to enable an audit policy for all database users, except SYS, SYSTEM, and SCOTT.You issue the following statements:SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SYS;SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SYSTEM;SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SCOTT;For which database users is the audit policy now active?()

    A. All users except SYS

    B. All users except SCOTT

    C. All users except sys and SCOTT

    D. All users except sys, system, and SCOTT


    参考答案:B

  • 第2题:

    [editgroups]user@hostshownode0{system{host-nameNODE0;}interfaces{fxp0{unit0{familyinet{address1.1.1.1/24;}}}}}node1{system{host-nameNODE1;}interfaces{fxp0{unit0{familyinet{address1.1.1.2/24;}}}}}Intheexhibit,whatisthefunctionoftheconfigurationstatements?()

    A.Thissectioniswhereyoudefineallchassisclusteringconfiguration.

    B.Thisconfigurationisrequiredformembersofachassisclustertotalktoeachother.

    C.Youcanapplythisconfigurationinthechassisclustertomakeconfigurationeasier.

    D.Thissectioniswhereuniquenodeconfigurationisapplied.


    参考答案:D

  • 第3题:

    下列选项中,循环会无限执行的是______。

    A.int i = 1 ; while (i < 10) System .out .print(“ ” + i) ;

    B.for(int i = 1 ; i < 10 ;i ++) System .out .print(“ ” + i);

    C.for(int i = 10 ; i > 0 ;i --) System .out .print(“ ” + i);

    D.int i = 1 ; while (true) { System .out .print(“ ” + i); i ++ ; if (i > 5) break ;


    C

  • 第4题:

    java中i与i是什么意思

    int i=3;

      int count=(i++)+(i++)+(i++);

      System.out.println(i);

      System.out.println(count);

      int j=3;

      count=(++j)+(++j)+(++j);

      System.out.println(j);

      System.out.println(count);

    在这个式子里面为什么i的值与j的值相等?


     

    i++++i都是对i进行+1的操作。

    它们的不同点:i++是在i值被使用后才+1,而++ii值在被使用之前就+1

     

    分析下您给的例子:

    首先分析count=(i++)+(i++)+(i++);运算是从左到右的,由于i++是在i值被使用后才+1所以第一个括号的(i++)应该为3,但是i的值变成了4,当运算第二个括号(i++)此时i的值是4所以第二个括号的(i++)为4但是此时i的值变成5了,类推第三个括号的(i++)为5但是此时i的值变成了6;也是说该等式变为count=3+4+5=12此时i的值为6.

    在分析int j=3;

      count=(++j)+(++j)+(++j); ++j的操作顺序是先将j1后在进行操作,所以第一个括号(++j)先将j1此时j变为4,所以括号的值相当于4

    第二个括号将j1j的值变为5;第三个括号将j1j的值变为6所以等式相当于 count=4+5+6)此时j的值是6   综上ij 相当。

    简单的说i++就是先使用的i的值然后再加1,而++i就是先将i+1,然后使用i改变后的值。

     

     

     

  • 第5题:

    下列程序使用系统标准输入System.in从键盘获得输入字符串,请选择正确的一项填入下列程序的横线处。 import java.io.*; public class ex26 { public static void main(String args[]) { byte buffer[] = new byte[128]; int n; try { n = for(int i = 0; i < n; i++) System.out .print ( (char)buffer [i] ); catch (IOException e) { System.out.print (e); } } }

    A.System.in.read(buffer)

    B.system.in.read(buffer)

    C.System.in.read0

    D.System.in(buffer)


    正确答案:A

  • 第6题:

    3、下列循环语句合法的是()

    A.while(int i<7){ System.out.println(“i is ”+i); i++; }

    B.int i=1; while(i){ System.out.println(“i is ”+i); }

    C.int i=0; for(int i=0;i<7;i++){ System.out.println(“i is ”+i); }

    D.int i=0; do{ System.out.println(“i is ”+i++); if(i==3) continue; }while(i<7);


    int i=0; do{ System.out.println(“i is ”+i++); if(i==3) continue; }while(i<7);