Recent content by prasath n

  1. P

    Direct Connection through Pl-SQL developer

    Direct Connection through Pl-SQL developer 1) Is there option in PL-SQL developer to connect to db without having TNS entry, like the one we have in TOAD. 2) Can we connect to Oracle XE through PL-SQL developer? Thanks for your time.
  2. P

    Problem with DBMS_OUTPUT

    Hi Marco, Thanks for your reply. Still I have a clarification. Starting with 10g R2, Oracle lifted these restrictions. Line limit is extended to 32767 bytes from 255 bytes. Also, by default, buffer limit is set to unlimited. When
  3. P

    Problem with DBMS_OUTPUT

    Hi PL \ SQL Developer Experts, I work in PL/SQL developer version 7.1.5.1398 connecting to Oracle 10.2.0.1.0 The following snippet works fine DECLARE l_text VARCHAR2(4000) := rpad('1', 4000, '1'); BEGIN dbms_output.put_line(l_text); END; But the following snippet fails DECLARE l_text...
Back
Top