网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
Oracle9i extends the cursor sharing functionality with the new value of SIMILAR for the CURSOR_SHARING parameter. With CURSOR_SHARING = SIMILAR, cursors are shared for safe literals only. What is meant by ‘safe literals only’?()
A

No literal value is substituted for a shared cursor. 

B

Different execution plans are generated for substituted literal values. 

C

The substitution of a literal value will produce different execution plans. 

D

The substitution of any literal value will produce exactly the same execution plan.


参考答案

参考解析
解析: 暂无解析
更多 “单选题Oracle9i extends the cursor sharing functionality with the new value of SIMILAR for the CURSOR_SHARING parameter. With CURSOR_SHARING = SIMILAR, cursors are shared for safe literals only. What is meant by ‘safe literals only’?()A No literal value is substituted for a shared cursor. B Different execution plans are generated for substituted literal values. C The substitution of a literal value will produce different execution plans. D The substitution of any literal value will produce exactly the same execution plan.” 相关考题
考题 ( 32 ) 查询 “ 读者 ” 表的所有记录并存储于临时表文件 one 中的 SQL 语句是A ) SELECT * FROM 读者 INTO CURSOR oneB ) SELECT * FROM 读者 TO CURSOR oneC ) SELECT * FROM 读者 INTO CURSOR DBF oneD ) SELECT * FROM 读者 TO CURSOR DBF one

考题 阅读以下说明和C++程序,将应填入(n)处的字句写在对应栏内。【说明】字符串在程序设计中扮演着重要角色。现需要设计字符串基类string,包含设置字 符串、返回字符串长度及内容等功能。另有一个具有编辑功能的串类edlt_string,派生于string,在其中设置一个光标,使其能支持在光标处的插入、删除操作。【程序】include <iostream.h>include <stdio.h>include <string.h>class string{int length;char *data;public:int get_length() {return length;}char *get_data() {return data;}~string() {delete data;}int set data(int in_length, char *in_data);int set_data(char *data);void print() {cout<<data<<endl;}};class edit_string: public string{int cursor;public:int get_cursor() {return cursor;}void move_cursor(int dis) {cursor=dis;}int add_data(string *new_data);void delete_data(int num);};int string::set_data(int in_length,char *in_data){length=in_length;if(!data)delete data;(1)strcpy(data,in_data);return length;}int string::set data(char *in_data){(2)if(!data)delete data;(1)strcpy(data,in_data);return length;}int edit_string::add_data(string *new_data){int n,k,m;char *cp,*pt;n=new_data->get_length();pt=new_data->get_data();cp=this->get_data();m=this->get_length();char *news=new char[n+m+1];for(int i=0; i<cursor; i++)news[i]=cp[i];k=i;for(int j=0; j<n; i++,j++)news[i]=pt[j];cursor=i;for(j=k; j<m; j++,i++)(3)news[i]='\0';(4)delete news;return cursor;}void edit string::delete_data( int num){int m;char *cp;cp=this->get_data();m=this->get_length();for(int i=cursor; i<m; i++)(5)cp[i]='\0';}

考题 在Protel99 SE原理图编辑器中的光标形状和大小的选择上,在元件移动、对齐操作的过程中,为准确定位,常采用()。A.Small Cursor 90B.Large Cursor 90C.Small Cursor 45D.随意

考题 在Protel99 SE原理图编辑器中的光标形状和大小的选择上,在放置总线分支时,为准确定位以避免45°光标与总线分支重叠可选用()。A.Small Cursor 90B.Large Cursor 90C.Small Cursor 45D.随意

考题 ( 16 ) Oracle9i 是指 Oraclc9i 数据库、 Oracle9i 自【 16 】和 Oracle9i Developer Suite 的完整集成。

考题 已知如下类定义: class Base { public Base (){ //... } public Base ( int m ){ //... } protected void fun( int n ){ //... } } public class Child extends Base{ // member methods } 如下哪句可以正确地加入子类中?() A.private void fun( int n ){ //...}B.void fun ( int n ){ //... }C.protected void fun ( int n ) { //... }D.public void fun ( int n ) { //... }

考题 Given:Which two, inserted at line 11, will allow the code to compile?() A.public class MinMax? {B.public class MinMax? extends Number {C.public class MinMaxN extends Object {D.public class MinMaxN extends Number {E.public class MinMax? extends Object {F.public class MinMaxN extends Integer {

考题 查询“读者”表的所有记录并存储于临时表文件one中的SQL语句是( )。A.SELECT*FROM读者INTO CURSOR oneB.SELECT*FROM读者To CURSOR oneC.SELECT*FROM读者INTO CURSOR DBF oneD.SELECT*FROM读者To CURSoR DBF one

考题 查询“教师表”的全部记录并存储于临时文件one.dbf中的SQL命令是A.SELECT*FROM教师表INTO CURSOR oneB.SELECT*FROM教师表TO CURSOR 0neC.SELECT*FROM教师表INTO CURSOR DBF oneD.SELECT*FROM教师表TO CURSOR DBF one

考题 Oracle9i是指Oracle9i数据库、Oracle9i【 】和Oracle9i Developer Suite的完整集成。

考题 已知:Manager extends Employee观察:public Manager(String n,double s,int year,int month,int day) { super(n,s,year,month,day); bonus=0; }其中super是 ( )A.Object类B.Manager类C.Employee类D.Class类

考题 要下列Java Applet程序完整并能够正确运行,横线处应填入的内容是( )。 A.extends Thread 要下列Java Applet程序完整并能够正确运行,横线处应填入的内容是( )。A.extends ThreadB.extends AppletC.extends CharD.extends Float

考题 查询学生表S的全部记录并存储于临时表文件one中的SQL命令是( )。A.SELECT*FROM学生表INTO CURSOR oneB.SELECT*FROM学生表To CURSoR oneC.SELECT*FROM学生表INTO CURSOR DBF oneD.SELECT*FROM学生表TO CURSOR DBF one

考题 使下列程序正常运行并且输出“Hello!”,横线处应填写的内容是( )。A.extends ThreadB.extends FloatC.extends IostreamD.extends Stdio

考题 ( 31 )查询 “ 教师表 ” 的全部记录并存储于 临 时文件 one.dbf 中的 SQL 命令是A ) SELECT * FROM 教师表 INTO CURSOR oneB ) SELECT * FROM 教师表 TO CURSOR oneC ) SELECT * FROM 教师表 INTO CURSOR DBF oneD) SELECT * FROM 教师表 TO CURSOR DBF one

考题 在Oracle中,PL/SQL块中定义了一个带参数的游标:CURSOR emp_cursor(dnum NUMBER)IS SELECT sal,comm FROM emp WHERE deptno = dnum;那么正确打开此游标的语句是()A、OPEN emp_cursorB、OPEN emp_cursor FOR 20C、OPEN emp_cursor USING 20D、FOR emp_rec IN emp_cursor(20) LOOP … END LOOP

考题 以下关于ORACLE9i的叙述正确的是()A、ORACLE9i是一种关系型数据库服务器产品,是在ORACLE8i的基础上发展起来的。B、Oracle9i Application Server(AS)是一种面向Internet应用的数据库服务器。C、Oracle9i Developer Suite(DS)是一套面向于NET框架结构的开发工具集。D、ORACLE9i数据库服务器要在ORACLE9iAS和ORACLE9iDS的配合下才能提供服务。E、以上所述都不正确

考题 Oracle9i是指Oraclc9i数据库、Oracle9i自()和Oracle9iDeveloperSuite的完整集成。

考题 Which of the following best describes the lock protection provided by DB2 for the current row of a cursor?()A、The cursor is only protected from updates and deletes by concurrent applications.B、The row is only protected from positioned updates and deletes that reference another cursor of the same application.C、The cursor is protected from positioned updates and deletes that reference another cursor of a different application.D、The row is protected from updates and deletes by the current application and from positioned updates and deletes that reference another cursor of the same application.

考题 按(),光标逐字反方向放移动,在字下面现实光标。A、CURSOR↑B、CURSOR↓C、PAGE↓D、PAGE↓

考题 Oracle9i extends the cursor sharing functionality with the new value of SIMILAR for the CURSOR_SHARING parameter. With CURSOR_SHARING = SIMILAR, cursors are shared for safe literals only. What is meant by ‘safe literals only’?() A、No literal value is substituted for a shared cursor. B、Different execution plans are generated for substituted literal values. C、The substitution of a literal value will produce different execution plans. D、The substitution of any literal value will produce exactly the same execution plan.

考题 You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. The application uses the drag-and-drop functionality. You need to ensure that the drag-and-drop operation is stopped when a user moves the cursor outside the boundaries of the application form. Which enumeration member should you use?()A、DragAction.CancelB、DragAction.DropC、DragDropEffects.NoneD、DragDropEffects.All

考题 有关Oracle9i备份的描述,正确的是()。A、Oracle9i的逻辑备份不能进行数据库完全备份B、Oracle9i的逻辑备份只可以进行数据表级和用户级的备份C、Oracle9i的逻辑备份实际上是将备份对象按特定格式写入操作系统文件的过程D、Oracle9i的物理备份只能在联机状态下运行

考题 单选题Which of the following best describes the lock protection provided by DB2 for the current row of a cursor?()A The cursor is only protected from updates and deletes by concurrent applications.B The row is only protected from positioned updates and deletes that reference another cursor of the same application.C The cursor is protected from positioned updates and deletes that reference another cursor of a different application.D The row is protected from updates and deletes by the current application and from positioned updates and deletes that reference another cursor of the same application.

考题 单选题How can you change the cursor style in your form? ()A Open the form module property palette and set the Cursor Style property. B From the Tools menu, select Preferences--Runtime Settings. C Use the GET_APPLICATION_PROPERTY and SET_APPLICATION_PROPERTY built-ins. D You cannot change the cursor style.

考题 填空题Oracle9i是指Oraclc9i数据库、Oracle9i自()和Oracle9iDeveloperSuite的完整集成。

考题 单选题You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. The application uses the drag-and-drop functionality. You need to ensure that the drag-and-drop operation is stopped when a user moves the cursor outside the boundaries of the application form. Which enumeration member should you use?()A DragAction.CancelB DragAction.DropC DragDropEffects.NoneD DragDropEffects.All