Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: PL/SQL Questions
DECLARE
CURSOR c1 IS
SELECT *
FROM my_table
ORDER BY my_order;
BEGIN
OPEN c1;
FETCH c1 INTO r1;
IF c1%NOTFOUND THEN
END IF;
CLOSE c1;
END;
/
2. Not sure about this one, RTRIM(LTRIM(r1.text_field)) will get rid of any at the beginning or end. Have a look at the TRANSALATE function, this could save you having to write your own code to scan the text.
Ed Wallace wrote in message
<01be06b8$139c1da0$b44fe8cd_at_IT3483.garlock-inc.com>...
>Two questions - 1st - knowing that I'm not supposed to use an exit to
>terminate a cursor FOR loop, what is the best way to get a single 'row' of
>data? Is a cursor even the best way? One example of where I am doing this
>is I am selecting and ordering data. I am fetching into a list of
>variables the first ordered occurrence of this data. These variables are
>then written to an output file. Then I exit my cursor. Any better way to
>do this?
>
>2nd - Another problem I've come across is when I am fetching data from a
>cursor to make up a fixed width output file, one of the fields may contain
>tabs or carriage returns, which messes up the fixed-width file as they are
>interpreted. What is the best way to get rid of them or ignore them? Do I
>need to scan the string and do a replace or something?
>
>Thanks in advance
>
>Ed
>
>
>
Received on Tue Nov 03 1998 - 03:28:18 CST
![]() |
![]() |