![]() |
![]() |
|
|
![]() |
![]() |
ALLBASE/SQL Database Administration Guide: HP 9000 Computer Systems > Chapter 7 Maintenance![]() Maintaining Applications |
|
The DBA is involved in maintaining applications as follows:
Before changes are made to a DBEnvironment, the impact of those changes on preprocessed statements should be weighed. The following information will help you be aware of which changes affect preprocessed statements. In full preprocessing mode, the preprocessor stores a section for each embedded statement except:
The statements listed above either require no authorization to execute or are executed based on information contained in the compilable preprocessor output files. In interactive mode, ALLBASE/SQL stores a section for the following SQL statements:
When a section is stored, ALLBASE/SQL actually stores what are known as an input tree and a run tree. The input tree consists of the uncompiled statement. The run tree is the compiled, optimized, executable form of the statement. If a section is valid at run time, ALLBASE/SQL executes the appropriate run tree when the SQL statement is encountered in the application program or procedure. If a section is invalid, ALLBASE/SQL determines whether the objects referenced in the sections exist and whether current authorization criteria are satisfied. If an invalid section can be validated, ALLBASE/SQL dynamically recompiles the input tree to create an executable run tree and executes the statement. If a section cannot be validated, the statement is not executed, and an error condition is returned to the program. The SYSTEM.SECTION view contains information about stored sections. The TYPE column defines the type of SQL statement in the section:
The STYPE column defines the section type:
The VALID column tells whether the section is valid or invalid. If a section is marked invalid, it is identified by a 0 in the VALID column. If a section is valid, it is identified by a 1. Refer to the "System Catalog" chapter for a description of all the columns in SYSTEM.SECTION. The example below illustrates the kind of information in the SYSTEM.SECTION view:
The first eleven rows in this query result describe some of the sections stored for the system views. The next two rows describe two views in the sample database: PurchDB.PartInfo and PurchDB.VendorStatistics. Views are always stored as invalid sections, because the run tree is always generated at run time when the view is queried. The remaining rows describe sections associated with preprocessed programs and procedures. Module CEXP11 contains two sections, one for executing the SELECT statement associated with a DECLARE CURSOR statement and one for executing a FETCH statement. Procedure ManufDB.FailureList contains one section, for an INSERT statement. For more information on preprocessing and cursors, refer to the appropriate ALLBASE/SQL Application Programming Guide and the ALLBASE/SQL Advanced Application Programming Guide. For more on procedures, see the ALLBASE/SQL Reference Manual chapter "Constraints, Procedures, and Rules." In order to monitor file space used for program modules and other stored sections, you need to perform the following tasks:
Note that through the ALTER TABLE, CREATE TABLE, CREATE PROCEDURE, CREATE RULE, CREATE VIEW, DECLARE CURSOR, and PREPARE statements you can specify a DBEFileSet for storing sections, table or long column data. If a DBEFileSet is not specified, the default DBEFileSet is used instead. Refer to the ALLBASE/SQL Reference Manual syntax for these statements and for the SET DEFAULT DBEFILESET, GRANT and REVOKE statements for complete information. Sections are stored in modules or procedures. ALLBASE/SQL generates a program module when an embedded SQL program is preprocessed. Any changes to an object accessed by a section will cause that section to be invalidated. For example, if you drop a table, all sections that assume the existence of that table will be invalidated. To enable ALLBASE/SQL to revalidate the section at run time, the table must be recreated before the section is executed. Likewise, all sections are marked invalid during migration of the DBEnvironment. ALLBASE/SQL automatically attempts to revalidate the sections at run time. The following statements, if they operate on an object accessed by a given section, will cause that section to be invalidated:
At run time, ALLBASE/SQL will automatically revalidate most of the sections invalidated by any of the statements listed above. If the sections cannot be revalidated by ALLBASE/SQL, the source code must be modified to reflect the changes in the DBEnvironment. ALLBASE/SQL will not automatically re-preprocess a program that has undergone source code modification. The program must be fully preprocessed with the C, COBOL, FORTRAN, or Pascal preprocessor. The following statements may require source code changes; each statement is followed by a suggestion on how to avoid changing the code and re-preprocessing the program:
The first time an invalidated section is executed (when you run a program or execute a procedure), there may be a decrease in performance while ALLBASE/SQL revalidates the section. If you want to validate sections before executing them, you can use the VALIDATE statement. To determine the space available in a DBEFileSet for stored sections, run SQLMON and go to Static Size screen. Examine the value of the TABLE PAGES field for every table whose owner is STOREDSECT. You can also determine how many sections are currently stored in the DBEnvironment by querying the SYSTEM.TABLE view. First, update statistics on the SYSTEM.SECTION view so that the NROWS column in the SYSTEM.TABLE is updated to show the current number of rows in the SECTION table. The NROWS column for SYSTEM.SECTION shows the number of sections in the DBEnvironment since the last UPDATE STATISTICS statement. The query in the example below shows 44 sections stored in the DBEnvironment with a total of 2 pages occupied by SYSTEM.SECTION:
Authorities govern who can preprocess, execute, and maintain an application that accesses a DBEnvironment. To preprocess an application for the first time, you need CONNECT authority for the DBEnvironment in which the module is to be stored. To preprocess an existing application, you need OWNER authority for that module and CONNECT authority for its DBEnvironment. At run time, the OWNER of the program must have authority to execute all SQL statements in the application if the program is to successfully execute. Dynamic statements are an exception. The individual running the program must have the authority to execute a statement that is dynamically preprocessed. An individual lacking OWNER or DBA authority must have RUN authority for the module and CONNECT authority for the DBEnvironment to be able to run a program that accesses the DBEnvironment. The DBA or module owner can grant RUN authority to users. Only users with DBA authority can grant CONNECT authority. To maintain a program (modifying code or updating RUN authority) you need OWNER authority for the module or DBA authority. Ownership cannot be transferred, but users with DBA authority can modify or preprocess the program or grant related authorities. Program development usually entails quite a bit of preprocessing and bug fixing before a program is ready for production. Therefore, developing an application in a production DBEnvironment is not a good idea for the following reasons:
The use of a separate DBEnvironment for development is recommended. When a program is ready to be moved to a production DBEnvironment, you can either re-preprocess the source in the new DBEnvironment or install the module using the ISQL INSTALL command. When a C, COBOL, FORTRAN, or Pascal program is preprocessed, the preprocessor creates a file in your current working directory called ModifiedSourceFileName.sqlm, which contains a copy of the module that can be installed in another DBEnvironment. The INSTALL command installs a module in another DBEnvironment. To use the INSTALL command, you need to have CONNECT or DBA authority for the DBEnvironment that will contain the new module. The following example illustrates the use of the INSTALL command:
ISQL copies the installable module from the file named ModifiedSourceFileName.sqlm. During installation, ALLBASE/SQL marks each section in the module valid or invalid, depending on the current objects and authorities in PartsDBE. Before a program can be preprocessed a second time, the previously stored module must be dropped. To do this, you can use the DROP MODULE statement in ISQL, or you can use the DROP option of the preprocessor command:
or
The DROP MODULE statement assumes that all related RUN authorities are to be dropped along with the module. Therefore, when using the DROP MODULE statement, use the PRESERVE option to preserve all related RUN authorities for the new version of the module:
The preprocessor, on the other hand, assumes that all related RUN authorities are to be PRESERVED unless revoked with the REVOKE option. Thus you do not need to specify PRESERVE with the preprocessor:
The DROP MODULE statement is also useful in conjunction with revised programs whose modules must be installed in a DBEnvironment different from that on which preprocessing occurred. Before using the INSTALL command to store the new module, you drop the existing module using the DROP MODULE statement, preserving or dropping related RUN authorities as required. |
![]() |
||
![]() |
![]() |
![]() |
|||||||||
|