Elie G.
Elie G.

Reputation: 1723

DataGrip skip lines during execution

Why does DataGrip skip lines when I execute my script?

enter image description here

It seems like it skips all the lines highlighted in green.

Isn't there any option which tells DataGrip to execute every line? I've been searching for several hours and even days to find this #$@!& option... (╯°□°)╯︵ ┻━┻

Note: I tried in console, from file, clicking the play button (), ..... but it still skip the green lines.

Upvotes: 0

Views: 130

Answers (1)

kassak
kassak

Reputation: 4184

These skipped statements are sqlplus statements. They are not part of oracle sql syntax (they are interpreted by sqlplus utility), so not supported by datagrip.

Upvotes: 1

Related Questions