DBA Data[Home] [Help]

APPS.BIM_EDW_OPRNTIES_F_SIZE dependencies on DBMS_OUTPUT

Line 33: dbms_output.enable(1000000);

29: );
30:
31: BEGIN
32:
33: dbms_output.enable(1000000);
34:
35: OPEN c_cnt_rows;
36: FETCH c_cnt_rows INTO p_num_rows;
37: CLOSE c_cnt_rows;

Line 40: dbms_output.put_line('The number of rows is: ' || to_char(p_num_rows));

36: FETCH c_cnt_rows INTO p_num_rows;
37: CLOSE c_cnt_rows;
38:
39:
40: dbms_output.put_line('The number of rows is: ' || to_char(p_num_rows));
41: END; -- procedure cnt_rows.
42:
43:
44: PROCEDURE est_row_len(p_from_date DATE,

Line 111: dbms_output.enable(1000000);

107:
108:
109: BEGIN
110:
111: dbms_output.enable(1000000);
112:
113: OPEN c_1;
114: FETCH c_1 INTO
115: x_LEAD_LINE_ID,

Line 167: -- dbms_output.put_line(' ');

163: x_total := x_total + 16*ceil(x_INSTANCE + 1);
164:
165: x_total := x_total + 15*(x_constant + 1);
166:
167: -- dbms_output.put_line(' ');
168: dbms_output.put_line('The average row length is : ' || to_char(x_total));
169:
170: p_avg_row_len := x_total;
171:

Line 168: dbms_output.put_line('The average row length is : ' || to_char(x_total));

164:
165: x_total := x_total + 15*(x_constant + 1);
166:
167: -- dbms_output.put_line(' ');
168: dbms_output.put_line('The average row length is : ' || to_char(x_total));
169:
170: p_avg_row_len := x_total;
171:
172: END; -- procedure est_row_len.