单词 | create procedure | ||||||||||||
释义 | create procedure
更多释义 收起释义 例句释义: 创建存储过程,创建一个存储过程,为用户创建存储过程的权限 1. Listing 9 contains a code example of the SQL CREATE PROCEDURE statement used to register an RPG program as an external stored procedure. 清单9包含一个用于将一个RPG程序注册为一个外部存储过程的SQLCREATEPROCEDURE语句的代码示例。 www.ibm.com 2. All types of replication allow you to replicate stored procedure definitions: the CREATE PROCEDURE is copied to each Subscriber. 各种类型的复制都允许复制存储过程定义:将CREATEPROCEDURE复制到每个订阅服务器。 msdn2.microsoft.com 3. The next step in creating the stored procedure is to issue the CREATE PROCEDURE DDL to register the procedure in the database. 创建存储过程的下一步是执行CREATEPROCEDUREDDL,在数据库中注册该存储过程。 www.ibm.com 4. CREATE PROCEDURE statements cannot be combined with other SQL statements in a single batch. CREATEPROCEDURE语句不能与其他SQL语句在单个批处理中组合使用。 msdn2.microsoft.com 5. To create an autonomous procedure, the keyword AUTONOMOUS is specified on the CREATE PROCEDURE statement, as shown in Listing 2. 要创建自治过程,需要在CREATEPROCEDURE语句中指定关键字AUTONOMOUS,如清单12所示。 www.ibm.com 6. The result set forms the complete CREATE PROCEDURE statement used to create the custom stored procedure. 该结果集构成了用于创建自定义存储过程的完整CREATEPROCEDURE语句。 technet.microsoft.com 7. The result set forms the complete CREATE PROCEDURE statement necessary to create the custom stored procedure. 该结果集构成创建自定义存储过程所需的完整CREATEPROCEDURE语句。 technet.microsoft.com 8. If any of the above queries fail to return the desired remote procedure, error SQL1253N is thrown during CREATE PROCEDURE. 如果以上任何查询无法返回所需的远程过程,那么在执行CREATEPROCEDURE期间会抛出错误SQL1253N。 www.ibm.com 9. To avoid this scenario, use the RETURNS clause of the CREATE PROCEDURE statement to return data to the caller. 要避免这种情况,使用CREATEPROCEDURE语句的RETURNS子句来将数据返回给调用者。 www.ibm.com 10. Stored Procedures and User-Defined Functions Supports both the CREATE PROCEDURE and CREATE FUNCTION statements. 存储过程和用户定义函数支持CREATEPROCEDURE和CREATEFUNCTION语句。 www.ibm.com 1. The code changes from CREATE PROCEDURE to ALTER PROCEDURE, and the stored procedure appears in Server Explorer in the Stored Procedure node. 代码将从CREATEPROCEDURE变为ALTERPROCEDURE,并且该存储过程显示在“服务器资源管理器”中的“存储过程”节点下。 msdn2.microsoft.com 2. The CREATE PROCEDURE definition itself can include any number and type of SQL statements, except for the following statements. CREATEPROCEDURE定义自身可以包括任意数量和类型的SQL语句,但以下语句除外。 msdn2.microsoft.com 3. First look at the CREATE PROCEDURE statement to confirm what parameters each of the stored procedures expects. 先看一下CREATEPROCEDURE语句,确定每个存储过程所需要的参数。 www.ibm.com 4. For more information about deferred name resolution, see CREATE PROCEDURE (Transact-SQL). 有关延迟名称解析的详细信息,请参阅CREATEPROCEDURE(Transact-SQL)。 technet.microsoft.com 5. CREATE PROCEDURE statement was not issued to define a procedure at the current server. 没有通过发出CREATEPROCEDURE语句在当前服务器上定义过程。 www.ibm.com 6. Procedure parameters appear as a list in the CREATE PROCEDURE statement. 过程参数在CREATEPROCEDURE语句中作为列表出现。 www.ianywhere.com 7. Generates the CREATE PROCEDURE statement that creates a dynamic update stored procedure. 生成创建动态更新存储过程的CREATEPROCEDURE语句。 technet.microsoft.com 8. For information about data type restrictions, see CREATE PROCEDURE (Transact-SQL). 有关数据类型限制的信息,请参阅CREATEPROCEDURE(Transact-SQL)。 technet.microsoft.com 9. The CREATE PROCEDURE statement itself contains both the RESULT specification and the compound statement that forms its body. CREATEPROCEDURE语句本身包含RESULT规范以及构成其主体的复合语句。 www.ianywhere.com 10. Alternatively, you use the CREATE PROCEDURE statement to create procedures. 此外,可以使用CREATEPROCEDURE语句创建过程。 www.ianywhere.com 1. Modifies a previously created procedure that was created by executing the CREATE PROCEDURE statement. 修改先前通过执行CREATEPROCEDURE语句创建的过程。 msdn2.microsoft.com 2. One or more parameters can be declared in a CREATE PROCEDURE statement. 在CREATEPROCEDURE语句中可以声明一个或多个参数。 msdn2.microsoft.com 3. You can assign default values to procedure parameters in the CREATE PROCEDURE statement. 可以在CREATEPROCEDURE语句中将缺省值指派给过程参数。 www.ianywhere.com 4. To that end, you should change the CREATE PROCEDURE statement and the C code to allow for additional parameters. 为此,应该更改CREATEPROCEDURE语句和C代码,以允许使用更多的参数。 www.ibm.com 5. Here are some of the CREATE PROCEDURE implementation differences for the various platforms. 以下是各种平台在CREATEPROCEDURE实现方面的一些差异。 www.ibm.com 6. The CREATE PROCEDURE statement creates a procedure in the database. CREATEPROCEDURE语句在数据库中创建过程。 www.ianywhere.com 7. You can create federated procedures using the CREATE PROCEDURE (Sourced) statement. 可以使用CREATEPROCEDURE(Sourced)语句创建联邦过程。 www.ibm.com 8. In this example, we have chosen to fix the CREATE PROCEDURE statement instead of modifying the source code. 在这个例子中,我们选择修改CREATEPROCEDURE语句而不是修改源代码。 www.ibm.com 9. You can issue a remote procedure call using either Sybase Central or the CREATE PROCEDURE statement. 您可以使用SybaseCentral或CREATEPROCEDURE语句发布远程过程调用。 www.ianywhere.com 10. If a default value is provided in the CREATE PROCEDURE statement, missing parameters are assigned the default values. 如果在CREATEPROCEDURE语句中提供了缺省值,缺少的参数会被分配缺省值。 www.ianywhere.com 1. This essay mainly introduces the advantages in using procedure, and how to create procedure, and how to execute procedure. 介绍使用存储过程的优点,以及如何创建和执行存储过程。 www.dictall.com 2. You can create stored procedures using the CREATE PROCEDURE Transact-SQL statement. 您可以使用Transact-SQL语句CREATEPROCEDURE来创建存储过程。 msdn2.microsoft.com 3. It also shows how to take advantage of the result set syntax in the CREATE PROCEDURE statement. 还演示如何在CREATEPROCEDURE语句中利用结果集语法。 www.ibm.com 4. We will call our stored procedure "hello" : CREATE PROCEDURE hello AS EXTERNAL NAME helloworld. HelloWorldProc. 我们将该存储过程称作“hello” msdn2.microsoft.com 5. Generate the Create Procedure DDL, incorporating the user's modifications to the ddl, such as schema, WLM environment, and collection ID. 根据用户对ddl的修改,例如对模式、WLM环境和集合ID的修改,生成CreateProcedureDDL。 www.ibm.com 6. You may need to change the command delimiter away from the semicolon before entering the CREATE PROCEDURE statement. 在输入CREATEPROCEDURE语句前,您可能需要更改命令分隔符,使其不是分号。 www.ianywhere.com 7. Generates the object creation script (CREATE TABLE, CREATE PROCEDURE, and so on). 生成对象创建脚本(CREATETABLE、CREATEPROCEDURE等)。 msdn2.microsoft.com 8. Indicates that SQL Server will convert the original text of the CREATE PROCEDURE statement to an obfuscated format. 指示SQLServer将CREATEPROCEDURE语句的原始文本转换为模糊格式。 msdn2.microsoft.com 9. Once the assembly has been created, we can now access our HelloWorld method by using the create procedure statement. 在创建了该程序集之后,现在可以通过使用createprocedure语句访问我们的HelloWorld方法。 msdn2.microsoft.com 10. In the CREATE PROCEDURE statement, you can specify several options for that stored procedure. Here are a few of them that have significance 在CREATEPROCEDURE语句中,可以为存储过程指定几个选项。 www.ibm.com 1. These definitions are determined in the CREATE PROCEDURE statement of the federated procedure, not on the data source. 这些定义在联邦过程的CREATEPROCEDURE语句中决定,而不是数据源上。 www.ibm.com 2. She specifies EXECUTE AS CALLER in the CREATE PROCEDURE statement, as shown in this example 她在CREATEPROCEDURE语句中指定了EXECUTEASCALLER,如下例中所示 technet.microsoft.com 3. Execute the CREATE PROCEDURE DDL from the source against the target server to catalog the stored procedure 在目标服务器上执行来自源服务器的CREATEPROCEDUREDDL,以编目存储过程。 www.ibm.com 4. Create session Create sequence Create table Create any table Drop table Drop any table Create procedure 连接到数据库上创建序列创建表在任何模式中创建表删除表删除任何模式中的表创建存储过程 wenku.baidu.com 5. Use northwind Grant Create Table, Create Procedure To liquan 允许liquan创建表和存储过程。 blog.sina.com.cn |
||||||||||||
随便看 |
|
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。