2
votes
3answers
2k views
Does Oracle have an equivalent of MSSQL’s table variables?
In MSSQL, you can declare a table variable (DECLARE @table TABLE), which is produced while the script is run and then removed from memory.
Does Oracle have a similar function? Or am I stuc …
0
votes
3answers
708 views
Oracle: Program not forking correctly in SELECT CASE statement on a date
I'm currently working on a project that behaves differently depending on whether it is a public holiday or not (amongst other constraints, obviously). To this end, I'm trying to create a table tha …
0
votes
3answers
244 views
Abort a PL/SQL program
How do I get a PL/SQL program to end halfway through? I haven't been able to find any way to gracefully end the program if an exception occurs - if I handle it, it loops back into the code.
…
0
votes
4answers
336 views
Oracle cursor running through the last item twice
I have a a cursor loop that's building a string by concatenating the contents of a table together, using code along these lines:
OPEN cur_t;
LOOP
FETCH cur_t INTO v_texttoadd;
…
0
votes
2answers
449 views
How do I execute private procedures in an Oracle package?
This is my first attempt at creating a package, so I must be missing something really really obvious (nothing that I've Googled for seems to even consider it worth mentioning).
Obviously, i …
0
votes
Oracle cursor running through the last item twice
Simple answer, though possibly not the best:
OPEN cur_t;
LOOP
FETCH cur_t INTO v_texttoadd;
IF cur_t%found THEN
v_string := v_string || v_texttoadd;
END IF;
EXIT …
