home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 33.ddi / install / forms3_ver.out next >
Encoding:
Text File  |  1991-03-04  |  5.7 KB  |  189 lines

  1.  
  2.  
  3. #Verifying SQL*Forms30 ...
  4.  
  5.  
  6.                #########################################
  7.  
  8.   Checking for the presence of all files in DIST list  (silent if all
  9.   present) ...
  10.  
  11.  
  12.  
  13.        ###################################################################
  14.  
  15.   Checking to see if SQL*Forms executable is properly linked to its
  16.   other identities (silent if links are all in place)...
  17.  
  18.  
  19.   sqlforms30 is not linked to iac30
  20.   sqlforms30 is not linked to iad30
  21.   sqlforms30 is not linked to iag30
  22.   sqlforms30 is not linked to design30
  23.   sqlforms30 is not linked to convert30
  24.   sqlforms30 is not linked to generate30
  25.   runform30 is not linked to iap30
  26.  
  27.        ###################################################################
  28.  
  29.   Checking banners of Convert, Generate, and Runform...
  30.  
  31.  
  32. SQL*Forms Run Form: Version 3.0.14.0.2 Production on Sat Dec 15 06:23:11 1990
  33. Using Object*SQL Version 01.00.16.00.02 (Production)
  34. Using PL/SQL Version 01.00.30.00.01 (Production)
  35.  
  36.        ###################################################################
  37.  
  38.   Checking for creation of tables, synonyms, and indexes:
  39.  
  40.     Tables - form_app, form_blk, form_fld, form_trigger, form_trg, form_sqltxt,
  41.           form_page, form_map, form_comment, form_reference, form_procedurej
  42.     Synonyms - form_app, form_blk, form_fld, forms_page, form_map, form_sqltxt,
  43.            form_trg, form_trigger, form_comment, form_reference, 
  44.            form_procedure
  45.     Indexes - iform_app, iform_appnam, iform_blk, iform_fld, iform_trg, 
  46.           iform_trigger, iform_sqltxt, iform_page, iform_map, iform_comment,
  47.           iform_reference, iform_procedure
  48.  
  49.             (all should be found)...
  50.  
  51.  
  52. SQL> select table_name from all_tables
  53.   2  where table_name like 'FORM_%';
  54.  
  55. no records selected
  56.  
  57. SQL> select synonym_name, table_name from all_synonyms
  58.   2  where synonym_name like 'FORM_%';
  59.  
  60. no records selected
  61.  
  62. SQL> select index_name, table_name from all_indexes
  63.   2  where index_name like 'IFORM_%';
  64.  
  65. no records selected
  66.  
  67. SQL> select index_name, table_name, column_name from all_ind_columns
  68.   2  where index_name like 'IFORM_%';
  69.  
  70. no records selected
  71.  
  72. SQL> exit;
  73.  
  74.        ###################################################################
  75.  
  76.   Checking existence of IAPXTB table for scott/tiger...
  77.  
  78.  
  79. SQL> describe iapxtb;
  80. ERROR:
  81. ORA-00942: table or view does not exist
  82.  
  83.  
  84. SQL> exit;
  85.  
  86.        ###################################################################
  87.  
  88.   Making sure that user exits link...
  89.  
  90.  
  91. Make:  Don't know how to make sqlforms30x.  Stop.
  92.       User exit link test FAILED.
  93.  
  94.        ###################################################################
  95.  
  96.   Testing Insert Option of SQL*Forms Convert  (silent if passed)...
  97.  
  98.  
  99. SQL*Forms Convert - Application Insertion Verification Failed
  100.  
  101.   Testing Delete Option of SQL*Forms Convert  (silent if passed)...
  102.  
  103.  
  104. SQL*Forms Convert - Application Deletion Verification Failed
  105.  
  106.        ###################################################################
  107.  
  108.  
  109.   Testing basic execution of SQL*Forms Generate (silent if passed)...
  110.  
  111.  
  112. SQL*Forms Generate - Execution Verification Failed
  113.  
  114.        ###################################################################
  115.  
  116.   Checking f30demobld for scott/tiger (all tables should be found)...
  117.  
  118.  
  119. SQL>        describe scott.ord;
  120.  Name                            Null?    Type
  121.  ------------------------------- -------- ----
  122.  ORDID                           NOT NULL NUMBER(4)
  123.  ORDERDATE                                DATE
  124.  COMMPLAN                                 CHAR(1)
  125.  CUSTID                          NOT NULL NUMBER(6)
  126.  SHIPDATE                                 DATE
  127.  TOTAL                                    NUMBER(8,2)
  128.  
  129. SQL>        describe scott.item;
  130.  Name                            Null?    Type
  131.  ------------------------------- -------- ----
  132.  ORDID                           NOT NULL NUMBER(4)
  133.  ITEMID                          NOT NULL NUMBER(4)
  134.  PRODID                                   NUMBER(6)
  135.  ACTUALPRICE                              NUMBER(8,2)
  136.  QTY                                      NUMBER(8)
  137.  ITEMTOT                                  NUMBER(8,2)
  138.  
  139. SQL>        describe scott.price;
  140.  Name                            Null?    Type
  141.  ------------------------------- -------- ----
  142.  PRODID                          NOT NULL NUMBER(6)
  143.  STDPRICE                                 NUMBER(8,2)
  144.  MINPRICE                                 NUMBER(8,2)
  145.  STARTDATE                                DATE
  146.  ENDDATE                                  DATE
  147.  
  148. SQL>        describe scott.product;
  149.  Name                            Null?    Type
  150.  ------------------------------- -------- ----
  151.  PRODID                                   NUMBER(6)
  152.  DESCRIP                                  CHAR(30)
  153.  
  154. SQL>        describe scott.customer;
  155.  Name                            Null?    Type
  156.  ------------------------------- -------- ----
  157.  CUSTID                          NOT NULL NUMBER(6)
  158.  NAME                                     CHAR(45)
  159.  ADDRESS                                  CHAR(40)
  160.  CITY                                     CHAR(30)
  161.  STATE                                    CHAR(2)
  162.  ZIP                                      CHAR(9)
  163.  AREA                                     NUMBER(3)
  164.  PHONE                                    CHAR(9)
  165.  REPID                           NOT NULL NUMBER(4)
  166.  CREDITLIMIT                              NUMBER(9,2)
  167.  COMMENTS                                 LONG
  168.  
  169. SQL>        exit;
  170.  
  171.        ###################################################################
  172.  
  173.   Checking f30demodrop for scott/tiger (no tables should be found)...
  174.  
  175.  
  176. SQL>     select table_name from user_tables
  177.   2      where table_name = 'ORD'
  178.   3         or table_name = 'ITEM'
  179.   4         or table_name = 'PRICE'
  180.   5         or table_name = 'PRODUCT'
  181.   6         or table_name = 'SEQ';
  182.  
  183. no records selected
  184.  
  185. SQL>     exit;
  186.  
  187.                #######    Forms30.Verify Done    #######
  188.  
  189.