Sorin
Sorin

Reputation: 910

Double 'at' symbol meaning in PL/SQL

I know that @ symbol followed by a path means executing that script in PL/SQL. What does @@ followed by a path mean?

Upvotes: 2

Views: 3942

Answers (1)

Damith
Damith

Reputation: 63105

@@{url | file_name[.ext] } [arg...]

Runs a script. This command is almost identical to the @ ("at" sign) command. When running nested scripts it looks for nested scripts in the same path or url as the calling script. Only the url form is supported in iSQL*Plus. The @@ command functions similarly to @ and START.

Ref :http://docs.oracle.com/cd/B19306_01/server.102/b14357/ch12003.htm

Upvotes: 5

Related Questions