SQL Plus Help [message #72692] |
Fri, 19 September 2003 03:37 |
Manish Kayasth
Messages: 1 Registered: September 2003
|
Junior Member |
|
|
Explain the differences between Start, @ and @@.
with giving some appropriate examples as soon as possible.
|
|
|
Re: SQL Plus Help [message #72701 is a reply to message #72692] |
Tue, 23 September 2003 11:57 |
ctg
Messages: 146 Registered: July 2002
|
Senior Member |
|
|
The START and @ do the same thing, that is how you tell sqlplus to execute a script file. And according to the Oracle Documentation (SQLPLUS users guide and reference manual) @@ is the same as @.
SQL> Start D:OracleOra92RdbmsAdminscott.sql
SQL> @ D:OracleOra92RdbmsAdminscott.sql
SQL> @@ D:OracleOra92RdbmsAdminscott.sql
|
|
|