oracle - Separation of statements in TOAD -
i long time sql server users , new oracle.
in sql server, can following
drop table blah; create table blah(yada int);
when run similar statement in oracle, drop runs fine create dosn't touched unless highlight line specifically.
i tried putting / between lines , didn't help.
can tell newb doing incorrectly?
thanks!
in toad can run current line in editor single statment, or run entire contents of editory script. if current line has more 1 statment, on the first gets executed if executing statement
shift-f9 runs current statement f5 runs entire contents.
note if current statement pl/sql block - entire blockl executed execute statement, if put begin..end around 2 statements run unit without running rest of whatever on editor. note execute statement intolerant of blank lines. run multi-line statment, not if there blank lines in it.
Comments
Post a Comment