PLS-00103 found 'string' but expected one of the following: 'string'"},
Cause: This error message is from the parser. It found a token (language element) that is inappropriate in this context. Action: Check previous tokens as well as the one given in the error message. The line and column numbers given in the error message refer to the end of the faulty language construct. 

解决方案 »

  1.   

    语法错误
    一般用法为
    type xxx is table of ....
    type xxx is varray of
      

  2.   

    snowy_howe说的及时,能不能来个例子?我写 type exchange_type is char(1) 还是报错,能不能帮我写个正确的.另外,我想知道这种type的语法,知道type xxx is table of 这种语法是如何定义的,该查哪些资料,oracle有象mssql一样的帮助文件吗?
      

  3.   

    type exchange_type is varray(1) of char(10);TYPE table_tray_id IS TABLE OF number
       Index by binary_integer;
      

  4.   

    如果我想 type je is numeric(10,2) 这样的精度效果,又该如何做呢?  有没有联机帮助可以查的? 或者有没有这方面的资料,我就不用问这么多问题了.  谢谢谢谢有没有较全面的pl/sql的帮助文件啊