| Author |
simple question about script format
|
ben oliver
Ranch Hand
Joined: Mar 28, 2006
Posts: 369
|
|
I need to create some oracle script and run it in oracle database I noticed some people use "/" at the end of the command. So which of the following two formats should I use ? Format a) or b) ? a) delete from XYZ; delete from ABC; insert into OPQ(c1,c2,c3) values(v1,v2,v3); insert into OPQ(c1,c2,c3) values(v4,v5,v6); ... b) delete from XYZ / delete from ABC / insert into OPQ(c1,c2,c3) values(v1,v2,v3) / insert into OPQ(c1,c2,c3) values(v4,v5,v6) /
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26173
|
|
Ben, It's a matter of personal preference. Either is fine.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
ben oliver
Ranch Hand
Joined: Mar 28, 2006
Posts: 369
|
|
|
thank you
|
 |
 |
|
|
subject: simple question about script format
|
|
|