Advertisement

02.28.2003 at 03:14AM PST, ID: 20533431
[x]
Attachment Details
[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!

7.0

Processing multiple commands

Asked by yerdaman in Oracle 3rd Party Tools

Tags: , ,

It's probably the easiest question on this site but I just can't seem to find a solution (and I only have 210 points!!) :

How can I issue multiple commands to Oracle without having to execute each one seperatley? I've checked out many web pages and they all indicate that a simple semicolon should work to terminate each line but Oracle simply returns

ORA-00911:invalid character

The code I'm attempting to run is as follows

DROP TABLE CC_CSCR; -- Control Record

CREATE TABLE CC_CSCR (
     KEY_CSCR                              VARCHAR2 (01),
     REFNO_CSCR                         NUMERIC   (06),
     PASSWD_CSCR                         VARCHAR2   (15),
     YEAR_CSCR                           NUMERIC   (04),
      PERD_CSCR                           NUMERIC   (04)
     );

INSERT INTO CC_
(KEY_CSCR, REFNO_CSCR, PASSWD_CSCR, YEAR_CSCR, PERD_CSCR
)
VALUES
(
'C','000000','STEVE','2003','05'
)

ANALYZE TABLE CC_CSCR COMPUTE STATISTICS;

CREATE UNIQUE INDEX
CC_CSCR_CC01 ON CC_CRCR
(
KEY_CSCR
);

ANALYZE INDEX CC_CSCR_CC01 ESTIMATE STATISTICS SAMPLE 20 PERCENT;

GRANT SELECT ON CC_CSCR TO ROLIVEDB;
GRANT UPDATE ON CC_CSCR TO ROLIVEDB;
GRANT INSERT ON CC_CSCR TO ROLIVEDB;
GRANT DELETE ON CC_CSCR TO ROLIVEDB;  

-- Now sign onto the read only version of this db and create the synonym
-- CREATE SYNONYM CC_CSCR FOR LIVEDB.CC_CSCR;Start Free Trial
 
 
[+][-]02.28.2003 at 03:36AM PST, ID: 8040923

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.28.2003 at 03:50AM PST, ID: 8040975

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.28.2003 at 04:16AM PST, ID: 8041089

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.28.2003 at 05:41AM PST, ID: 8041566

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.28.2003 at 07:42AM PST, ID: 8042530

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.06.2003 at 04:57AM PST, ID: 8079480

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Oracle 3rd Party Tools
Tags: multiple, commands, oracle
Sign Up Now!
Solution Provided By: konektor
Participating Experts: 4
Solution Grade: B
 
 
[+][-]01.19.2004 at 10:23PM PST, ID: 10152856

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32