Let me present a scenario:
I have a type:
create or replace type last_line_t is object
(
city varchar2(100),
state varchar2(100),
zip zip_code_t
)
and I have a table type
create or replace type last_line_nt is table of last_line_t;
I want to edit the type by...
My apologies. I meant the SQL Window. I want to have multiple statements viewable and runnable at the same time in the SQL Window, instead of pressing Ctl + Up or Ctl + Down to traverse my different statements.
Thanks,
Michael
Greetings,
Is there a way to be able to view multiple statements in one Program Window, like Toad does? Toad will execute only one statement from the cursor to the first found ";[newline character]". How would I mimic that functionality?
Thanks,
Michael Hedgpeth