DBA Data[Home] [Help]

APPS.BIM_EDW_OPP_STATUS_M_SIZE dependencies on DBMS_OUTPUT

Line 25: dbms_output.enable(1000000);

21:
22:
23: BEGIN
24:
25: dbms_output.enable(1000000);
26:
27: OPEN c_cnt_rows;
28: FETCH c_cnt_rows INTO p_num_rows;
29: CLOSE c_cnt_rows;

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

27: OPEN c_cnt_rows;
28: FETCH c_cnt_rows INTO p_num_rows;
29: CLOSE c_cnt_rows;
30:
31: dbms_output.put_line('The number of rows is: ' || to_char(p_num_rows));
32: END; -- procedure cnt_rows.
33:
34:
35: PROCEDURE est_row_len(p_from_date DATE,

Line 75: dbms_output.enable(1000000);

71:
72:
73: BEGIN
74:
75: dbms_output.enable(1000000);
76:
77: OPEN c_1;
78: FETCH c_1 INTO
79: X_MEANING,

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

98: x_total := x_total + 2*ceil(x_INSTANCE + 1);
99:
100: x_total := x_total + 15*(x_constant + 1);
101:
102: -- dbms_output.put_line(' ');
103: dbms_output.put_line('The average row length is : ' || to_char(x_total));
104:
105: p_avg_row_len := x_total;
106:

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

99:
100: x_total := x_total + 15*(x_constant + 1);
101:
102: -- dbms_output.put_line(' ');
103: dbms_output.put_line('The average row length is : ' || to_char(x_total));
104:
105: p_avg_row_len := x_total;
106:
107: END; -- procedure est_row_len.