Oracle 8i Question Compile Error

I have used the following code before on a 10g db but I am having problems getting it to compile on 8.1.7.4 Im pretty sure it should still work thought.
create or replace procedure bulk_load as
cursor c1 is
     select * from schema.table;
TYPE t_select IS TABLE OF c1%ROWTYPE;
     t_data t_select;
BEGIN
OPEN c1;
LOOP
FETCH c1 BULK COLLECT INTO t_data LIMIT 1000;
     FORALL i in 1..t_data.COUNT
     INSERT INTO schema.table VALUES t_data(i);
     exit when c1%NOTFOUND;
     end loop;
commit;
close c1;
null;
end;
Line: 13 Column: 28 Error: PLS-00597: expression 'T_DATA' in the INTO list is of wrong type
Line: 13 Column: 1 Error: PL/SQL: SQL Statement ignored
Line: 15 Column: 63 Error: PLS-00518: This INSERT statement requires VALUES clause containing a parenthesised list of values
Line: 15 Column: 2 Error: PL/SQL: SQL Statement ignored
Line: 15 Column: 2 Error: PLS-00435: DML statement without BULK In-BIND cannot be used inside FORALL
Line: 14 Column: 11 Error: PL/SQL: Statement ignored
Any questions comments would be helpful
Thanks
Edited by: user11937852 on Jan 17, 2011 11:30 AM

If I am not mistaken BULK COLLECT has to be done per column in 8i:
open c1;
fetch c1 bulk collect into collection_1, collection_2, ...;

Similar Messages

  • Oracle JDBC Driver Compile Errors

    I'd like to try out this new Preview Edition but I get the following errors:
    Error(22,8): class oracle.jdbc.driver.OracleCallableStatement is not public; cannot be accessed from outside of package oracle.jdbc.driver
    Error(23,8): class oracle.jdbc.driver.OracleTypes is not public; cannot be accessed from outside of package oracle.jdbc.driver
    These erors occur at the import statements:
    import oracle.jdbc.driver.OracleCallableStatement;
    import oracle.jdbc.driver.OracleTypes;
    when I attempt to compile a JDev 10.1.3 project in the 11g Technology Preview Edition. Any idea why?
    TIA,
    Jeff

    We don't support project migration from 10.1.3 to the
    technology preview.
    Does the problem reproduce if you create a new
    project in 11tp?Shay,
    Thanks for the quick response. I created a new application in 11tp from scratch. I created a View Object and pasted the offending code into it and got the same compile errors. I actually got the code about a year ago from Steve's Not Yet Documented Applications. He has since removed the App from the page, changed the code and added it to the Dev Guide. The sample app showed how to bind a View object to a REF Cursor returned from a stored procedure and it looked something like this:
    CallableStatement cs = conn.prepareCall("{?=call package.name(P_CODIGO => ?)}");
    cs.rgisterOutParameter(1,OracleTypes.CURSOR);
    cs.setInt(2,16782);
    cs.executeQuery();
    ResultSet result = ((OracleCallableStatement)cs).getCursor(1);
    Changing the code to look more like what is now in the DEV GUIDE will more than likely work because he eliminates the need for the OracleCallableStatement.
    This brings me to my next point. If migration is not currently supported, will it be when the production release of JDEV 11g is available? Shame on me for just quickly skimming the release notes but when the import wizard ran on my project it did not warn me that the feature is not supported or that problems are likely. Upon resolving the issues with the callable statement, I had significant other compile errors in my jspx pages that will probably not be as trivial to fix. If project upgrades are not performed "easily" it will certainly push the 11g adoption date out considerably.
    Thanks again, your comments are always encouraged.
    Jeff

  • Compiled Error in Xcode for iphone game and other questions

    Dear all,
    Hi, I am a newbie of xcode and objective-c and I have a few questions regarding to the code sample of a game attached below. It is written in objective C, Xcode for iphone4 simulator. It is part of the code of 'ball bounce against brick" game. Instead of creating the image by IB, the code supposes to create (programmatically) 5 X 4 bricks using 4 different kinds of bricks pictures (bricktype1.png...). I have the bricks defined in .h file properly and method written in .m.
    My questions are for the following code:
    - (void)initializeBricks
    brickTypes[0] = @"bricktype1.png";
    brickTypes[1] = @"bricktype2.png";
    brickTypes[2] = @"bricktype3.png";
    brickTypes[3] = @"bricktype4.png";
    int count = 0;`
    for (int y = 0; y < BRICKS_HEIGHT; y++)
    for (int x = 0; x < BRICKS_WIDTH; x++)
    - Line1 UIImage *image = [ImageCache loadImage:brickTypes[count++ % 4]];
    - Line2 bricks[x][y] = [[[UIImageView alloc] initWithImage:image] autorelease];
    - Line3 CGRect newFrame = bricks[x][y].frame;
    - Line4 newFrame.origin = CGPointMake(x * 64, (y * 40) + 50);
    - Line5 bricks[x][y].frame = newFrame;
    - Line6 [self.view addSubview:bricks[x][y]]
    1) When it is compiled, error "ImageCache undeclared" in Line 1. But I have already added the png to the project. What is the problem and how to fix it? (If possible, please suggest code and explain what it does and where to put it.)
    2) How does the following in Line 1 work? Does it assign the element (name of .png) of brickType to image?
    brickTypes[count ++ % 4]
    For instance, returns one of the file name bricktype1.png to the image object? If true, what is the max value of "count", ends at 5? (as X increments 5 times for each Y). But then "count" will exceed the max 'index value' of brickTypes which is 3!
    3) In Line2, does the image object which is being allocated has a name and linked with the .png already at this line *before* it is assigned to brick[x][y]?
    4) What do Line3 and Line5 do? Why newFrame on left in line3 but appears on right in Line5?
    5) What does Line 4 do?
    Thanks
    North

    Hi North -
    macbie wrote:
    1) When it is compiled, error "ImageCache undeclared" in Line 1. ...
    UIImage *image = [ImageCache loadImage:brickTypes[count++ % 4]]; // Line 1
    The compiler is telling you it doesn't know what ImageCache refers to. Is ImageCache the name of a custom class? In that case you may have omitted #import "ImageCache.h". Else if ImageCache refers to an instance of some class, where is that declaration made? I can't tell you how to code the missing piece(s) because I can't guess the answers to these questions.
    Btw, if the png file images were already the correct size, it looks like you could substitute this for Line 1:
    UIImage *image = [UIImage imageNamed:brickTypes[count++ % 4]]; // Line 1
    2) How does the following in Line 1 work? Does it assign the element (name of .png) of brickType to image?
    brickTypes[count ++ % 4]
    Though you don't show the declaration of brickTypes, it appears to be a "C" array of NSString object pointers. Thus brickTypes[0] is the first string, and brickTypes[3] is the last string.
    The expression (count++ % 4) does two things. Firstly, the trailing ++ operator means the variable 'count' will be incremented as soon as the current expression is evaluated. Thus 'count' is zero (its initial value) the first time through the inner loop, its value is one the second time, and two the third time. The following two code blocks do exactly the same thing::
    int index = 0;
    NSString *filename = brickTypes[index++];
    int index = 0;
    NSString *filename = brickTypes[index];
    index = index + 1;
    The percent sign is the "modulus operator" so x%4 means "x modulo 4", which evaluates to the remainder after x is divided by 4. If x starts at 0, and is incremented once everytime through a loop, we'll get the following sequence of values for x%4: 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, ...
    So repeated evaluation of (brickTypes[count++ % 4]) produces the sequence: @"bricktype1.png", @"bricktype2.png", @"bricktype3.png", @"bricktype4.png", @"bricktype1.png", @"bricktype2.png", @"bricktype3.png", @"bricktype4.png", @"bricktype1.png", @"bricktype2.png", ...
    3) In Line2, does the image object which is being allocated has a name and linked with the .png already at this line *before* it is assigned to brick[x][y]?
    Line 2 allocs an object of type UIImageView and specifies the data at 'image' as the picture to be displayed by the new object. Since we immediately assign the address of the new UIImageView object to an element of the 'bricks' array, that address isn't stored in any named variable.
    The new UIImageView object is not associated with the name of the png file from which its picture originated. In fact the UIImage object which inited the UIImageView object is also not associated with that png filename. In other words, once a UIImage object is initialized from the contents of an image file, it's not possible to obtain the name of that file from the UIImage object. Note when you add a png media object to a UIImageView object in IB, the filename of the png resource will be retained and used to identify the image view object. But AFAIK, unless you explicitly save it somewhere in your code, that filename will not be available at run time.
    4) What do Line3 and Line5 do? Why newFrame on left in line3 but appears on right in Line5?
    5) What does Line 4 do?
    In Line 2 we've set the current element of 'bricks' to the address of a new UIImageView object which will display one of the 4 brick types. By default, the frame of a UIImageView object is set to the size of the image which initialized it. So after Line 2, we know that frame.size for the current array element is correct (assuming the image size of the original png file was what we want to display, or assuming that the purpose of [ImageCache loadImage:...] is to adjust the png size).
    Then in Line 3, we set the rectangle named newFrame to the frame of the current array element, i.e. to the frame of the UIImageView object whose address is stored in the current array element. So now we have a rectangle whose size (width, height) is correct for the image to be displayed. But where will this rectangle be placed on the superview? The placement of this rectangle is determined by its origin.
    Line 4 computes the origin we want. Now we have a rectangle with both the correct size and the correct origin.
    Line 5 sets the frame of the new UIImageView object to the rectangle we constructed in Lines 3 and 4. When that object is then added to the superview in Line 6, it will display an image of the correct size at the correct position.
    - Ray

  • Warning: Type created with compilation errors. sql : oracle 11gr2

    I'm trying to create a supertype customer service and subtype agent and supervisor, so they can inherent values however when I try to run this in oracle sql: a message comes up
    Warning: Type created with compilation errors.
    What is wrong with the code below?
    Create or replace type customer_s_type as object ( csID number, csName varchar(15), csType number ) NOT FINAL;  Create or replace type supervisor_type UNDER customer_s_type ( title varchar (10) );  Create or replace type agent_type UNDER customer_s_type (title varchar (10));  Create table supervisor of supervisor_type ( CONSTRAINT supervisor_PK PRIMARY KEY (csID));  Create table agent of agent_type (CONSTRAINT agent_PK PRIMARY KEY (csID));  create table customer_service( csID number(10), csType number(10), constraint supervisor_pk primary key(csID) );

    Wile creating TYPE you need to terminate with a back slash (/) semi colon does not work.
    Try like this
    create or replace type customer_s_type as object ( csid number, csname varchar(15), cstype number ) not final
    create or replace type supervisor_type under customer_s_type ( title varchar (10) )
    create or replace type agent_type under customer_s_type (title varchar (10))

  • Compiler error "oracle.xml.parser.v2.XMLElement" not found in class com.ora

    Compiler error "oracle.xml.parser.v2.XMLElement" not found in class com.oracle.demos......?
    I am currently testing a simple sample application with a java code similar to the one shown at
    the bottom of this post.
    However during deployment/compilation the compiler gives an error:
    Error(26,23): XMLElement not found in class com.oracle.demos.orderbooking.ApproveImpl
    Additionally similar other errors appear:
    Error(23,66): JAXBException not found in class com.oracle.demos.orderbooking.ObjectFactory
    Error(51,58): UnmarshalException not found in class com.oracle.demos.orderbooking.ObjectFactory
    Error(9,92): Element not found in interface com.oracle.demos.orderbooking.Approve
    What's wrong?
    It seems to me that I have to add some (more) *.jar files/libraries to the project?
    Which *.jars and where should I add them in JDeveloper?
    source code:
    package com.oracle.demos.orderbooking;
    public class ApproveImpl extends com.oracle.demos.orderbooking.ApproveTypeImpl implements com.oracle.demos.orderbooking.Approve
    public ApproveImpl(oracle.xml.parser.v2.XMLElement node)
    super(node);
    }

    Hai James this the response I am getting can you please tell what should I write inside ora:getNodeValue() to get the value of node <genReturnText>
    The drag and dropping the variable name is not working, I have to write the path manually but I dont know how.
    <ns1:getRoutingAndFrameJumpersResponse xmlns:ns1="com.NetworkInstallations">
    -<com.GetRoutingAndFrameJumpersOutput>
    <destination>
    SW
    </destination>
    <e2EData>
    busProcOriginator
    </e2EData>
    <genReturnCode>
    40777
    </genReturnCode>
    <genReturnText>
    EMW_Get_Routing_And_FrameJumpers_Succeeded
    </genReturnText>
    <supplCode>
    ISY002
    </supplCode>
    <supplText>
    Transaction successfully completed.
    </supplText>
    <severityCode>
    S
    </severityCode>
    <retriable>
    false
    </retriable>
    </com.GetRoutingAndFrameJumpersOutput>
    </ns1:getRoutingAndFrameJumpersResponse>

  • Oracle forms compilation error

    Hello all,
    I have issue in Oracle forms while compile.
    While compile the form, the browser is blank... and in start OC4J Instance below error appearing (while start the form server its initialized, if i compile the form below lines appearing in the start OC4J Instance window)
    FormsServlet init:
    configfileName: ....../forms/server/formsweb.cfg
    testMode: Fales
    Thanks and Regards,
    Muthu

    Muthu,
    Please always give your Forms, Java and Client OS version. This information is almost always needed!
    What is your Forms, Java and Client OS versions?
    While compile the form, the browser is blank...It sounds like you are trying to run your form from the Forms Builder. If this is true, you must configure your Forms installation to enable this.
    What configuration steps have you completed? Take a look at How to Configure Forms Builder to run forms locally to make sure you have completed all the necessary steps.
    Hope this helps,
    Craig...

  • Flash Professional Question: About the compiler error window

    Sorry if this is the wrong forum however I was unable to post a question to the Flash Professional forum for some wierd reason. Basically my question is, when I get an error in my console in Flash Professional is there an elegant way of zooming to my intended editor, Flash Builder? The built in code viewer is useless and a hassle to use.

    Launch the movie Flash Builder:
    Run > Test Movie will launch in Flash Pro and give compile errors in Flash Builder
    Run > Debug As.. will start a debug session (in browser or AIR) and you can debug it from Flash Builder (runtime errors, breakpoints, etc.)
    -Aaron

  • Getting compilation error while writing standalone for ddi_get8

    Hi All,
    I have already posted a thread regarding ddi_regs_map_setup solaris system call guidance.
    [Previous Query|https://forums.oracle.com/forums/thread.jspa?threadID=2314211&tstart=0]
    I am writing a standalone to use this system call.
    Below is my partial standalone where i have only the declaration part:
    #include <stdio.h>
    #include <sys/dditypes.h>
    #include <sys/conf.h>
    #include <sys/ddi.h>
    #include <sys/sunddi.h>
    int main()
    dev_info_t *dip;
    uint_t rnumber;
    ushort_t *dev_addr;
    offset_t offset;
    offset_t len;
    ushort_t dev_command;
    ddi_device_acc_attr_t dev_attr;
    ddi_acc_handle_t handle;
    dev_attr.devacc_attr_version = DDI_DEVICE_ATTR_V0;
    dev_attr.devacc_attr_endian_flags = DDI_STRUCTURE_LE_ACC;
    dev_attr.devacc_attr_dataorder = DDI_STRICTORDER_ACC;
    return 0;
    The standalone give the following compilation errors:
    ddiSystemcall.c: In function `main':
    ddiSystemcall.c:15: error: `ddi_device_acc_attr_t' undeclared (first use in this function)
    ddiSystemcall.c:15: error: (Each undeclared identifier is reported only once
    ddiSystemcall.c:15: error: for each function it appears in.)
    ddiSystemcall.c:15: error: syntax error before "dev_attr"
    ddiSystemcall.c:16: error: `ddi_acc_handle_t' undeclared (first use in this function)
    ddiSystemcall.c:17: error: `dev_attr' undeclared (first use in this function)
    ddiSystemcall.c:17: error: `DDI_DEVICE_ATTR_V0' undeclared (first use in this function)
    ddiSystemcall.c:18: error: `DDI_STRUCTURE_LE_ACC' undeclared (first use in this function)
    ddiSystemcall.c:19: error: `DDI_STRICTORDER_ACC' undeclared (first use in this function)
    Please let me know where am i going wrong.
    Thanks in advance.

    Hi,
    there is a WebCenter forum for WebCenter releated questions: WebCenter Portal
    Frank

  • Sqlserver_utilities use for migrating MS SQL to 9i - compilation error

    I've seen lot of questions about compilation error in the sqlserver_utilities particularly on Oracle 9i database where some procedure and functions are not compiled and required rewritten. The main issues seem to be with new features or tables/views not available in pre-10g such as regex, DBA_IND_STATISTICS, etc. Even though there is a IF clause (
    IF NOT DBMS_DB_VERSION.VER_LE_9_2 THEN) to prevent execution, however, it won't work for compilation standpoint.
    My question is that do we need to comment this section out or rewrite to work for 9i - for example, DBA_IND_STATISTICS view for last_analyzed is not in 9i, but we can use last_analyzed in USER_INDEXES. Is that the only option (manual labor work :-) to resolve this issue for 9i database?
    Thanks in advance,
    IC

    I think you made the right choice to go with 10g, 9i is obsolete anyway.
    The Migration Workbench come with SQL Developer might only work with 10g because it's built pretty new in 2007.
    You can try the older version of standalone Oracle Migration Workbench
    http://www.oracle.com/technology/tech/migration/workbench/index.html
    It support 9i, The Oracle Migration Workbench is a tool that simplifies the process of migrating
    Informix, and DB2 databases to the Oracle platform (Oracle9i and Oracle10g). Again, I still believe go with 10g is better choice.

  • Compilation error, When moving code from 32-bit to 64-bit

    Hello,
    This Code compile on 32 bit system, but Getting Compilation error fro 64 bit,
    :/export/home/pshirode/rel_v95/cc_lib > make
    Making dependencies...
    cc -g -D__EXTENSIONS__ -D_SVID_GETTOD -I../h -I/app/oracle/product/9.2_32/precomp/public -I. `getconf LFS_CFLAGS | head -1` -D UT_TRACE_FUNCTION -I. -m64 -xarch=sparcvis -library=iostream,no%Cstd -H -w -E 2>&1 >/dev/null Bitmap.cc BitmapData.cc BitmapInputTxnStream.cc BitmapOutputStream.cc UnexpectedException.cc FieldData.cc FieldDataCollection.cc FieldDefinition.cc FieldDefinitionCollection.cc OutputFixedStream.cc ParsingEngine.cc Schema.cc Statistics.cc String.cc TraceStream.cc TxnStream.cc c_api.cc SocketImpl.cc Socket.cc ServerSocket.cc UnixSocket.cc Thread.cc test.cc | grep -v License | grep -v command | ../dvl.bin/mkdep >.depends
    Dependencies updated...
    CC -g -D__EXTENSIONS__ -D_SVID_GETTOD -I../h -I/app/oracle/product/9.2_32/precomp/public -I. `getconf LFS_CFLAGS | head -1` -D UT_TRACE_FUNCTION -I. -m64 -xarch=sparcvis -library=iostream,no%Cstd -c Bitmap.cc
    "RuntimeException.h", line 131: Error: Function RuntimeException::~RuntimeException() can throw only the exceptions thrown by the function std::exception::~exception() it overrides.
    "RuntimeException.h", line 97: Error: Could not find std::exception::exception(const char*) to initialize base class.
    "RuntimeException.h", line 121: Error: xmsg is not a member of std::exception.
    "Bitmap.cc", line 62: Error: Cannot return int(Bitmap::*)()const from a function that should return int.
    4 Error(s) detected.
    make: *** [Bitmap.o] Error 4
    CFLAGS in Makefile
    # The system include directory must be specifically included first because some of the
    # ghost includes use system include file names (e.g., generic.h)
    # Modified these section to compile on TVLAPP1HAG
    CFLAGS += -D $(STDOUT_TRACE)
    #CFLAGS += -g -D$(MAINLINE) $(OUR_COLLECTION)
    #CFLAGS += -compat -Qoption ccfe -abirel=4.1
    #CFLAGS += -Qoption ccfe -abirel=4.1
    CFLAGS += -I. -m64 -xarch=sparcvis -library=iostream,no%Cstd
    #CFLAGS += -I. -mt
    # Add the flag for multi-threaded apps
    LDFLAGS += -lsocket -lnsl -lthread
    # declare an empty macro for compiler directive flags, to be command-line
    # driven (ie, for -D directives)
    CCFLAGS=
    CCFLAGS += -DRW_NO_CPP_RECURSION
    # The following manipulation of CC and overriding the .cc.o suffix
    # dependency is removed here to use what is supplied by default int
    # the h/common.mak file.
    #XX = CC
    #CC = CC
    #COMPILE = $(CC) -o $*.o $(CFLAGS) $(CCFLAGS) -c $*.cc
    #.cc.o:
    # $(COMPILE)
    #.DEFAULT:
    # $(COMPILE)
    #all: $(TEST_OBJS) $(PGM_EXEC)
    all: $(TEST_OBJS)
    #install:
    # $(INSTALL) $(PGM_EXEC)
    $(TEMPLATE_CONTAINER).o: $(TEMPLATE_CONTAINER).cc
    $(CC) -o $*.o $(CFLAGS) -pta -c $*.cc
    # Uncomment the following lines, and uncomment the appropriate MAINLINE
    # setting to create your desired test program for a cc_lib routine. Normally
    # we simply want to create the cc_lib .o files so this is commented out.
    #test exec
    $(PGM_EXEC): $(INCLUDES) $(TEST_OBJS)
    @echo Linking test...
    $(CC) -g -o $(PGM_EXEC) $(TEST_OBJS) $(LDFLAGS) $(ROOT)/util/libutil.a
    checksum:
    /export/home/pshirode/rel_v95/cc_lib > CC -V
    CC: Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25
    Please help ASAP

    This looks like exactly the same question you asked in the thread
    [http://forums.sun.com/thread.jspa?threadID=5335510]
    Please do not ask the same question in more than one thread.

  • Getting compilation errors in seeded jsps in R12

    Hi,
    We already had iStore 11i implemented since 8 years.
    Now we are implementing iStore R12.
    We have a custom jsp 'xxibeCCkpExpCheckout.jsp' in 11i, which we are migrating to R12.
    However in R12 we are getting following compilation errors in this jsp:
    ibeCCkpBHdrShipIncl.jsp:
    Error(841,1): PrintWriter not found
    Error(841,1): Writer not found
    ibeCCkpValBillPay.jsp
    Error(40,2): field optNewCreditCard not found
    Error(48,2): field optNewCreditCard not found
    Error(54,2): identifier errMap not found
    Error(64,2): identifier errMap not found
    Error(73,2): field errMap not found
    Please note that above seeded jsps are included in the custom jsp.
    Since the errors are coming through seeded jsps, we are not sure how to fix them.
    Any prompt help/suggestion in this regard is appreciated.
    Thanks

    Hello,
    Please review your custom jsp and note that the following are obsoleted packages for Release 12 -
    ibeCCkpCHdrShipIncl.jsp, ibeCCkpHdrShip.jsp, ibeCCkpHdrBillPay.jsp
    Confirm the ibeCCkpBHdrShipIncl.jsp is Release 12.1 version (ie version 120.6).
    Also, there are changes in ibeCCkpValBillPay.jsp for Release 12 as compared to 11i. Confirm your ibeCCkpValBillPay.jsp is Release 12.1 version (ie version 120.1.12010000.2 or higher).
    Confirm no errors for manual compile of the seeded jsp's and Confirm datestamp is current for class files in $COMMON_TOP/_pages
    References:
    Where Are The iStore Cached Java Classes In R12 ? (Doc ID:1149243.1)
    How to Enable Automatic Compilation of JSP pages in R12 Environment (Doc ID:458338.1)
    Please advise on any additional questions or issues.
    Thank You,
    Deborah Bourgeois, Oracle Customer Support

  • Compilation error warning

    Could someone please let me know that if it is a problem for querying database when there is compilation error warning?
    I've often received warning errors after creating a type, such as :" Type created with compilation error".
    Thanking in advance for your response.

    994819 wrote:
    I tried to get the following stored procedure to work... I've tried two different versions of the procedure... I have both versions below. I get a warning that the procedure was created but with compilation errors... this happens in Oracle 11g Express Edition... it references a function that I already created and has been tested.
    Version 1:
    create or replace procedure ins_ints(v1 number)
    as begin
    for i in 1..v1 loop
    insert into integers values(i,odd_even(i));
    end loop;
    end ins_ints;
    Version 2:
    create or replace procedure ins_ints(v1 in number)
    as begin
    for i in 1..v1 loop
    insert into integers values(i,odd_even(i));
    end loop;
    end ins_ints;
    Any idea whats wrong?
    Note: The odd_even function has the following function call:
    odd_even(v1 number) return varchar2
    again, just calling the funciton from the command line (SQL *Plus) works.
    Thanks!SHOW ERROR
    will display what the compiler does not like about your code
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ

  • Microsoft XL Compile error in hidden module:

    When i start and stop MS XL ,it give me this error message i chicked help and got this
    Compile error in hidden module: <module name>
    A protected module can't be displayed. This error has the following cause and solution:
    There is a compilation error in the code of the specified module, but it can't be displayed because the project is protected. Unprotect the project, and then run the code again to view the error.
    How i can Unprotect the project, and then run the code again to view the error.

    Is this an Oracle Database General question?Does it count if Oracle is installed on the machine? What about if an installation CD is near the keyboard?
    :-)

  • BIP in Word having 'Compile error in hidden module'

    Hi, I have a question refer to use BIP in Word.
    I installed BIP Desktop and I have BIP Toolbar, but when I try use Oracle BI Publisher -> Log On I see:
    Compile error in hidden module: UserForm_ProgressBar,
    When I try load data I see:
    compile error in hidden module: Class_TvwCommon
    and so on.
    I have Windows XP (SP3), BIP 10.1.3.4, Word 2002.
    Where is problem? Can anyone help me out?
    Thanks,
    Patrick

    Can you try this?
    1) Set the Template Builder for Word Language. After installing BI Publisher Desktop, go to BI Publisher Desktop program menu and set the UI language. Close any running Microsoft Office programs. Steps: All programs -> Oracle BI Publisher Desktop -> Template Builder for Word Language. Select your language and click OK.
    Rgds
    Chundi

  • Defect: Compilation Warnings hide Compilation Error messages.

    If you have a lot of pl/sql warnings generated in your procedures or packages (some of which I question as to their validity!), it won't show you the compilation errors. It should show errors first, and then, if space allows, warnings.
    I know there is a setting that lets you turn off the warnings, but that's a work-around, not a fix. :)

    I agree 100%. I've seen tools that can do this, but sqldev's project manager said long ago this is a "database limitation" and nothing could be done about it.
    Nevertheless, there's a request at http://htmldb.oracle.com/pls/otn/f?p=42626:39:6637246751078089::NO::P39_ID:3401, where you can vote for increasing prios.
    I thought I created one suggesting compiling 2 times internally if necessary: once without warnings to get the errors on top, then with warnings enabled to fill up the 20 available slots, but can't find it anymore...
    Regards,
    K.

Maybe you are looking for

  • How to close the detach popup on click of a button in the panel collection

    Hi, I'm using Jdeveloper 11.1.2.3.0. I have an af table surrounded by panel collection. There is a button on panel collection to commit the changes in the table. Clicked detach button to view the table in full browser. On click of Commit button, the

  • Help installing Flex SDK 4.1 on Flex Builder 3 properly

    Flex Builder 3 comes with SDK for 2.0.1 and 3.2 by default, so I want to add Flex SDK 4.1 I downloaded it, made a directory in the Flex Builder 3 sdks folder, and unzipped the contents there. After adding it and selecting/checking it on Flex Builder,

  • Tcode for maintaining conditions in PO

    Hi all, I have created a new condition for 1% special excise duty on purchase. I have configured it on material type. what is the front end tcode for users to maintain this condition for different material types? Regards, Aisha Ishrat. ICI Pakistan L

  • Easy Cost Planning-prob Costing model

    Hello , I am creating costing model i want at time of Easy cost planning  court fee(Characteristics)   to be selected from drop down list i have made characteristic court fee ,in currency format (CKCM) while defining derivation rule(template), if i a

  • HT1848 Having trouble transferring music to my computer.

    I tried to click on the "transfer music from my iPhone" button but the music will not be transfered to my computer. For a second it worked with the Genius, I thought, but then when I disconnected my phone, the songs were no longer in the library. Is