Advertisement
Guest User

Untitled

a guest
Apr 18th, 2017
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. from this:
  2. DECLARE
  3.  
  4. tot_emps NUMBER;
  5. tot_depts NUMBER := 50;
  6. v_verylongresultname VARCHAR2(32767) := '';
  7. v_val VARCHAR2(50) := '';
  8. v_onechar VARCHAR2(1) := 'I';
  9.  
  10. to this:
  11. DECLARE
  12.  
  13. tot_emps NUMBER;
  14. tot_depts NUMBER := 50;
  15. v_verylongresultname VARCHAR2(32767) := '';
  16. v_val VARCHAR2(50) := '';
  17. v_onechar VARCHAR2(1) := 'I';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement