Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Increment at counter
"GREGORY KNESER" <gregoryk_at_futures.wharton.upenn.edu> wrote in message
news:9r6pqb$sp$2_at_netnews.upenn.edu...
> Changes below:
> : dbms_output.put_line('1. || v_counter || ' records inserted.');
This change too:
dbms_output.put_line('1. '||to_char(v_counter)||' records inserted.');
Otherwise you'd get a literal string of v_counter in the output and not the value of v_counter. Not sure if the TO_CHAR is necessary but I've had issues concatenating different datatypes before and it can't hurt.
-Matt Received on Wed Oct 24 2001 - 20:44:40 CDT
![]() |
![]() |