473,654 Members | 3,038 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help Error 0922

2 New Member
Below is what I input into SQL Plus, I cannot determine why I am recieving this error. Any help is appreciated!


SQL> CREATE TABLE
2 Insurance_Info
3 (License_No varchar(20) primary
4 Policy_No varchar(30) alternate
5 Ins_Carrier varchar(50),
6 Ins_Address varchar(50),
7 Ins_City varchar(30),
8 Ins_State varchar(2),
9 Ins_Zip varchar(10),
10 Type_of_Coverag e varchar(30),
11 Years_W_Carrier varchar(10),
12 Amount_Per_Occu r varchar(20),
13 Aggreg_Amount varchar(20),
14 Effective_Date varchar(10),
15 Insur_Exp_Date varchar(10),
16 Claims_Made varchar(10),
17 Prev_Ins_Carrie r varchar(50),
18 Prev_Ins_Carrie r_Address varcha
19 Prev_Ins_Carrie r_City varchar(3
20 Prev_Ins_Carrie r_State varchar(
21 Prev_Ins_Carrie r_Zip varchar(10
22 Prev_Ins_Type_C overage varchar(
23 Prev_Ins_Policy _No varchar(30),
24 Prev_Years_W_Ca rrier varchar(10
25 Prev_Amount_Per _Occur varchar(2
26 Prev_Aggreg_Amo unt varchar(20),
27 Prev_Effective_ Date varchar(10)
28 Prev_Insur_Exp_ Date varchar(10)
29 Prev_Claims_Mad e varchar(10),
30 ADDED_TO_FILE_D ATE varchar(10),
31 ADD_USERID varchar(10),
32 LAST_EDIT_DATE varchar(10))
33
SQL>
SQL> /
(License_No varchar(20) primary key,
*
ERROR at line 3:
ORA-00922: missing or invalid option
Jul 23 '07 #1
3 3581
debasisdas
8,127 Recognized Expert Expert
To whom do you expect to add commas , and closing parenthesis to your code.

silly syntax error.....
Jul 23 '07 #2
Dfuga
2 New Member
To whom do you expect to add commas , and closing parenthesis to your code.

silly syntax error.....
What???? if you are saying I need commas after lines 3 and 4, I know, it has them. When I did a cut and paste they just did not appear here, they are in the code in SQL. I am still recieving the error. I will attempt to repost the code as I see other syntax errors.

SQL> CREATE TABLE
2 Insurance_Info
3 (License_No varchar(20) primary key,
4 Policy_No varchar(30) alternate key,
5 Ins_Carrier varchar(50),
6 Ins_Address varchar(50),
7 Ins_City varchar(30),
8 Ins_State varchar(2),
9 Ins_Zip varchar(10),
10 Type_of_Coverag e varchar(30),
11 Years_W_Carrier varchar(10),
12 Amount_Per_Occu r varchar(20),
13 Aggreg_Amount varchar(20),
14 Effective_Date varchar(10),
15 Insur_Exp_Date varchar(10),
16 Claims_Made varchar(10),
17 Prev_Ins_Carrie r varchar(50),
18 Prev_Ins_Carrie r_Address varchar(100),
19 Prev_Ins_Carrie r_City varchar(30),
20 Prev_Ins_Carrie r_State varchar(2),
21 Prev_Ins_Carrie r_Zip varchar(10)
22 Prev_Ins_Type_C overage varchar(50),
23 Prev_Ins_Policy _No varchar(30),
24 Prev_Years_W_Ca rrier varchar(10),
25 Prev_Amount_Per _Occur varchar(20),
26 Prev_Aggreg_Amo unt varchar(20),
27 Prev_Effective_ Date varchar(10),
28 Prev_Insur_Exp_ Date varchar(10),
29 Prev_Claims_Mad e varchar(10),
30 ADDED_TO_FILE_D ATE varchar(10),
31 ADD_USERID varchar(10),
32 LAST_EDIT_DATE varchar(10))
33 /
(License_No varchar(20) primary key,
*
ERROR at line 3:
ORA-00922: missing or invalid option
Jul 23 '07 #3
debasisdas
8,127 Recognized Expert Expert
use the following code

Expand|Select|Wrap|Line Numbers
  1. create table Insurance_Info
  2. (
  3. License_No varchar(20) primary key,
  4. Policy_No varchar(30) ,
  5. Ins_Carrier varchar(50),
  6. Ins_Address varchar(50),
  7. Ins_City varchar(30),
  8. Ins_State varchar(2),
  9. Ins_Zip varchar(10),
  10. Type_of_Coverage varchar(30),
  11. Years_W_Carrier varchar(10),
  12. Amount_Per_Occur varchar(20),
  13. Aggreg_Amount varchar(20),
  14. Effective_Date varchar(10),
  15. Insur_Exp_Date varchar(10),
  16. Claims_Made varchar(10),
  17. Prev_Ins_Carrier varchar(50),
  18. Prev_Ins_Carrier_Address varchar(100),
  19. Prev_Ins_Carrier_City varchar(30),
  20. Prev_Ins_Carrier_State varchar(2),
  21. Prev_Ins_Carrier_Zip varchar(10),
  22. Prev_Ins_Type_Coverage varchar(50),
  23. Prev_Ins_Policy_No varchar(30),
  24. Prev_Years_W_Carrier varchar(10),
  25. Prev_Amount_Per_Occur varchar(20),
  26. Prev_Aggreg_Amount varchar(20),
  27. Prev_Effective_Date varchar(10),
  28. Prev_Insur_Exp_Date varchar(10),
  29. Prev_Claims_Made varchar(10),
  30. ADDED_TO_FILE_DATE varchar(10),
  31. ADD_USERID varchar(10),
  32. LAST_EDIT_DATE varchar(10)
  33. )
  34.  

what is that alternate key in oracle syntax as specified in your code. ???
Jul 24 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

6
4330
by: wukexin | last post by:
Help me, good men. I find mang books that introduce bit "mang header files",they talk too bit,in fact it is my too fool, I don't learn it, I have do a test program, but I have no correct doing result in any way. Who can help me, I thank you very very much. list.cpp(main program) //-------------------------------------------------------------------------- - #pragma hdrstop #pragma argsused
5
2137
by: xuatla | last post by:
Hi, I encountered the following compile error of c++ and hope to get your help. test2.cpp: In member function `CTest CTest::operator+=(CTest&)': test2.cpp:79: error: no match for 'operator=' in '*this = CTest::operator+(CTest&)((+t2))' test2.cpp:49: error: candidates are: CTest CTest::operator=(CTest&) make: *** Error 1
9
3016
by: YZK | last post by:
Hello. I'm not a Web developer, just a user, and I think I may have somehow messed myself up majorly. I'm not quite sure how. Right now, javascript used by websites I go to either does not work at all, or works sporadically. I'm talking about things like Hotmail, Yahoo Address Book, buttons on various sites, etc.. I'm a computer person, but not a Web OR Javascript person. Is there any way I can "start over again?" Can I, a Windows 98...
8
5462
by: baustin75 | last post by:
Posted: Mon Oct 03, 2005 1:41 pm Post subject: cannot mail() in ie only when debugging in php designer 2005 -------------------------------------------------------------------------------- Hello, I have a very simple problem but cannot seem to figure it out. I have a very simple php script that sends a test email to myself. When I debug it in PHP designer, it works with no problems, I get the test email. If
1
4339
by: Dave | last post by:
I am having problems accessing DTS after install SP4 and was wondering if someone could offer some advice. I installed SP4 and got the following error after it competed. Unable to write to response file 'U:\WINDOWS\setup.iss' during recording. Please ensure enough space is available on target drive. I got the error 3 times (3 pop-ups).
6
1755
by: Jax | last post by:
I have Visual Studio 2002 Standard Edition. It has been working fine up to a point and now i'm at that point. Due to the limitations of the edition i am not using any of my own .dll's and instead have a range of .cs classes doing that role for me. Does that matter? I have four errors that I just dont understand, I really need some help on this or pointers to where I can find the
6
4984
by: James Radke | last post by:
Hello, I have a multithreaded windows NT service application (vb.net 2003) that I am working on (my first one), which reads a message queue and creates multiple threads to perform the processing for long running reports. When the processing is complete it uses crystal reports to load a template file, populate it, and then export it to a PDF. It works fine so far....
1
3704
by: Rahul | last post by:
Hi Everybody I have some problem in my script. please help me. This is script file. I have one *.inq file. I want run this script in XML files. But this script errors shows . If u want i am attach this script files and inq files. I cant understand this error. Please suggest me. You can talk with my yahoo id b_sahoo1@yahoo.com. Now i am online. Plz....Plz..Plz...
12
2451
by: =?Utf-8?B?ZGdvdw==?= | last post by:
I designed a "contact_us" page in visual web developer 2005 express along with EW2 after viewing tutorials on asp.net's help page. Features work like they should, but I cannot figure out how to send contact info to email or data base when the "send" button is pressed. I've watched the tutorials over & over again. I just can't get it. Link: http://www.syfloristonline.zipa.com/contact_us.aspx. Need help
0
8379
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8816
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8596
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7309
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6162
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5627
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4150
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4297
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1924
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.