Advertisement

08.05.2008 at 09:39AM PDT, ID: 23622872
[x]
Attachment Details

How can i run multiple scripts in oracle at once?

[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.2
Zone:

Oracle 10.x

Tags:

oracle, 10g

I have created 10 tables in an Oracle 10g db and I am trying to run all of the scripts together at once.  Below is a code snippet, and I have copied this same format for the remaining 9 tables.  Do i need a semicolon somewhere or can this even be done?  
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
drop table activity;
create table activity(
 
day                      date,
remote_id                number,
subgroup_id              number,
sequence_id              number,
pipeline_id              number,
zone_id                  varchar(50),
meter_id                 varchar(50),
trader_id                varchar(50),
portfolio_id             varchar(50),
customer_name            varchar(50),
interconnect_grp_id      varchar(50),
fixed_price              number,
fixed_formula            varchar(250),
floating_formula         varchar(250),
price_type               varchar(50),
increments                number,
actual_volume            number(10),
scheduled_volume         number(10),
type                     varchar(50),
basis_point              varchar(50),
fuel_percentage          number(10),
create_user              varchar(50),
create_date              date,
modify_user              varchar(50),
modify_date              date
)
DROP SEQUENCE WHITEBOARD.ACTIVITY_SEQ;
 
CREATE SEQUENCE WHITEBOARD.ACTIVITY_SEQ;
Answered By: dvz
Expert Since: 04/21/1998
Accepted Solutions: 300
Computer Expertise: Advanced
Education: Trinity International University, Chicago, Illinoisnull, Master's Degree
dvz has been an Expert for 10 years 8 months, during which he has posted 2056 comments and answered 300 questions. dvz is just one of 761 experts in the Oracle 10.x Zone. 2 experts collaborated on this answer, which was graded an "A" by the asker.
 
 
20081119-EE-VQP-48 / EE_QW_2_20070628