Define SQL Azure Stored Procedures
A stored procedure is a pre-compiled collection of SQL statements that are stored under a name and processed as a unit. The SQL Azure Stored Procedure Editor simplifies the management of database-level and table-level stored procedures. The Code type determines if the stored procedure is intended to be a single procedure, generated for the entire database, or a set of procedures, generated once for each associated table.
The order in which you generate stored procedures to your database is important. The stored procedure code is generated according to the order in the SQL Azure Stored Procedure Editor.
To define SQL Azure stored procedures
The SQL Azure Stored Procedure Editor opens.
Note: Click New on the toolbar to create a new stored procedure. Use the Enter filter text box to filter a very large list of stored procedures to quickly locate the one that you want to define.
Specifies the name of the stored procedure. Change the name of the stored procedure in this field.
Specifies the schema of the database to which the stored procedure belongs. Select the schema from the drop-down list.
Specifies whether the stored procedure type is model-level or table-level. Select the type from the drop-down list.
Specifies to enable the stored procedure in the database.
Note: The Stored Procedure Browser icon , which opens the SQL Azure Procedure Browser, is only enabled for table-level stored procedures. The SQL Azure Procedure Browser lets you manage the tables and views that generate a table-level stored procedure.
Specifies to attach the selected stored procedure to each new table that you create. Clear the check box if you want to manually attach the stored procedure to new tables.
Generates SQL during forward engineering. Clear the check box if you do not want to generate SQL.
Specifies whether the stored procedure is generated as part of a pre-script. Select an option from the drop-down list.
Specifies the code type of the stored procedure and its associated values. Select one of the following code types from the drop-down list:
Specifies to use SQL code. Work with the following options when you select the SQL code type:
Recompile
Specifies that the SQL Azure database not store a plan for the stored procedure and that the stored procedure is compiled at runtime.
Startup
Specifies to execute the stored procedure upon startup of SQL Azure.
Specifies the permission level in effect when the stored procedure is executed.
Specifies the user whose permissions are in effect for the execution of the procedure.
Note: This option is only available if you have selected the Execute As User option in the Type drop-down list.
Specifies the parameters for the stored procedure and lets you select the order in which the parameters execute and the properties of each one.
Note: Click New on the toolbar to add a new parameter, or click Delete to delete the selected parameter.
The stored procedure is defined and the SQL Azure Stored Procedure Editor closes.
Copyright © 2017 erwin Inc.
All rights reserved.
|
|