Viewing error when invalid

hy i am using call dbms_java.dropjava('D:\oracle\9iDatabase\lib\AppelClient.jar\AppelClient.jar');
to load the class but it marking it as invalid
although if i try to add it as a java source to the database it compiles successfully
is there a way to view the error caused in appelClient.jar that made it invalid?
is there a difference between a java stored procedure and a java source compiled in the database?

dropjava does not load. Presumably you meant loadjava. If so, unless you use the -r (also knowb as -resolve) option, loadjava will not attempt to resolve (also known as validate) the classes that are loaded. It will create them, but leave
them invalid. For java classes, invalid really means "pending resolution". It may be that once a resolution attempt has been made (as would occur if one used -r in loadjava) a class will remain invalid. This then means that there is a problem that prevents resolution, almost always due to some referenced class not being present. One can query the usual error tables, eg USER_ERRORS to get more information. But if a class has been created without there yet having been an attempt to resolve it, it will be in invalid status without any entries in USER_ERRORS. Another way to attempt resolution on a class once it is present
(loaded) is to do ALTER JAVA CLASS "name of the class" RESOLVE;
There should be little difference between loading and compiling source vs
loading and resolving the .class files that result from that source, assuming that all such .class files are included in the load, and all referenced classes are either already present in the database or are also included in the load. That is, if one action results in valid classes, one would expect the other to as well.

Similar Messages

  • Unable to display tree view; Error when parsing an XML document (Premature end of file.)

    Hi folks,
    I am using a cascaded mapping in my OM. I have a graphical mapping followed by the Java mapping. It is a flat file to IDOC mapping. Everything works fine in Dev but when I transport the same objects to QA, the Operation mapping though it doesn't fail in ESR testing tool, gives the following message and there is no output generated for the same payload which is successfully tested in DEV. Please advise on what could be the possible reasons.
    Unable to display tree view; Error when parsing an XML document (Premature end of file.)

    kalyan,
    There seems to be an invalid xml payload which causes this error in ESR not generating the tree view. Please find the similar error screenshot and rectify the payload.
    Mutti

  • JavaMapping in PI 7.1 Error:Unable to display tree view; Error when parsing

    hi,
    i get by testing in PI 7.1 (operation mapping) this ERROR:
    "Unable to display tree view; Error when parsing an XML document (Content is not allowed in prolog.)"
    this is my java-programm-code:
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import com.sap.aii.mapping.api.StreamTransformation;
    import java.io.*;
    import java.util.Map;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.*;
    /*IMPORT statement imports the specified classes and its methods into the program */
    /Every Java mapping program must implement the interface StreamTransformation and its methods execute() and setParameter() and extend the class DefaultHandler./
    public class Mapping extends DefaultHandler implements StreamTransformation {
    Below is the declaration for all the variables we are going to use in the
    subsequent methods.
         private Map map;
         private OutputStream out;
         private boolean input1 = false;
         private boolean input2 = false;
         private int number1;
         private int number2;
         private int addvalue;
         private int mulvalue;
         private int subvalue;
         String lineEnd = System.getProperty("line.separator");
    setParamater() method is used to store the mapping object in the variable
    "map"
         public void setParameter(Map param) {
              map = param;
         public void execute(InputStream in, OutputStream out)
                   throws com.sap.aii.mapping.api.StreamTransformationException {
              DefaultHandler handler = this;
              SAXParserFactory factory = SAXParserFactory.newInstance();
              try {
                   SAXParser saxParser = factory.newSAXParser();
                   this.out = out;
                   saxParser.parse(in, handler);
              } catch (Throwable t) {
                   t.printStackTrace();
    As seen above execute() method has two parameters "in" of type
    InputStream and "out" of type OutputStream. First we get a new instance
    of SAXParserFactory and from this one we create a new Instance of
    SAXParser. To the Parse Method of SaxParser, we pass two parameters,
    inputstream "in" and the class variable "handler".
    Method "write" is a user defined method, which is used to write the
    string "s" to the outpurstream "out".
         private void write(String s) throws SAXException {
              try {
                   out.write(s.getBytes());
                   out.flush();
              } catch (IOException e) {
                   throw new SAXException("I/O error", e);
         public void startDocument() throws SAXException {
              write("");
              write(lineEnd);
              write("");
              write(lineEnd);
         public void endDocument() throws SAXException {
              write("");
              try {
                   out.flush();
              } catch (IOException e) {
                   throw new SAXException("I/O error", e);
         public void startElement(String namespaceURI, String sName, String qName,
                   Attributes attrs) throws SAXException {
              String eName = sName;
              if ("".equals(eName))
                   eName = qName;
              if (eName.equals("NUMBER1"))
                   input1 = true;
              if (eName.equals("NUMBER2"))
                   input2 = true;
         public void endElement(String namespaceURI, String sName, String qName)
                   throws SAXException {
              String eName = sName;
              if ("".equals(eName))
                   eName = qName;
              if (eName.equals("NUMBER1"))
                   input1 = false;
              if (eName.equals("NUMBER2"))
                   input2 = false;
         public void characters(char[] chars, int startIndex, int endIndex)
                   throws SAXException {
              String dataString = new String(chars, startIndex, endIndex).trim();
              if (input1) {
                   try {
                        number1 = Integer.parseInt(dataString);
                   } catch (NumberFormatException nfe) {
              if (input2) {
                   number2 = Integer.parseInt(dataString);
              if (input2 == true) {
                   addvalue = number1 + number2;
                   mulvalue = number1 * number2;
                   subvalue = number1 - number2;
                   write("" + addvalue + "");
                   write(lineEnd);
                   write("" + mulvalue + "");
                   write(lineEnd);
                   write("" + subvalue + "");
                   write(lineEnd);
    in developer studio 7.1 i dont get error.
    this happens by testing the mapping-programm in ESR.
    can somebody help me please?

    Make sure that the xml created out after the java mapping is a valid xml with only one root node.
    Regards,
    Prateek

  • Smart View error when opening Powerpoint files read-only

    Users are experiencing the following error when they open a Powerpoint file as read only. Using MS Office 2007 with Hyperion 11.1.2.1 Doesn't happen in edit mode. Error reappears every time user pages down to next slide. Quite annoying!
    Shape. Tags : Invalid request. Presentations cannot be modified.
    Has anyone experienced this issue and resolved it?
    Thanks,

    Source: My oracle support
    =============================================================================================================================
    Applies to:
    Hyperion Planning - Version: 11.1.2.1.000 and later [Release: 11.1 and later ]
    Information in this document applies to any platform.
    Symptoms
    In Smart View Version 11.1.2.1.000, when attempting to open a PowerPoint document that is already open by other user the following error occurs:
    ERROR : Shape.Tags: Invalid Request. Presentation cannot be modified.
    Cause
    This issue has been verified as Unpublished Bug 12418027: SMART VIEW ERROR : SHAPE.TAGS : INVALID REQUEST. PRESENTATION CANNOT BE MODIFIED
    The cause of the problem is that when a presentation is edited by another user, an exception will be thrown while trying to query the tags in the presentation from a different process.
    Solution
    This issue has been fixed in the Oracle Hyperion Smart View for Office, Release 11.1.2.0.000 Patch Set 1 (PS1): 11.1.2.1.102 Release.
    This patch is available via My Oracle Support:
    1. Log into the My Oracle Support portal.
    2. Choose the Patches & Updates tab.
    3. Enter the Patch Name or Number from the drop-down box.
    4. Perform a search for Patch:12968304 for your corresponding OS platform.
    5. The patch file includes both installers and the readme.
    Additional Information:
    Please refer to the patch readme for system requirements, dependencies, and installation instructions.

  • Report Viewer - error when creating connections

    What are the requirements for creating connection to report viewer web part? I'd like to set the parameters with values from a list.
    After...
    Create a blank page
    Add report viewer web part
    Add list web part
    Create connections (in the list Web Part, Connections, Send Row of Data to, Report Viewer = only option available)
    Description:
    An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.ArgumentNullException: Value cannot be null.
    Parameter name: strUrl
    Source Error:
    Server Error in '/' Application.
    Value cannot be null.
    Parameter name: strUrl
    Half Abude Scheidl
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [ArgumentNullException: Value cannot be null.
    Parameter name: strUrl]
    Microsoft.SharePoint.SPSite.MakeFullUrl(String strUrl) +27695030
    Microsoft.ReportingServices.SharePoint.UI.WebParts.ReportViewerWebPart.OnReportPathFromProvider(Object rowData) +219
    Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean bDeferExecuteTransform) +794
    Microsoft.SharePoint.WebPartPages.DataFormWebPart.PerformSelect() +72
    Microsoft.SharePoint.WebPartPages.DataFormWebPart.DataBind() +346
    Microsoft.SharePoint.WebPartPages.DataFormWebPart.EnsureDataBound() +24
    Microsoft.SharePoint.WebPartPages.DataFormWebPart.CreateChildControls() +712
    Microsoft.SharePoint.WebPartPages.BaseXsltListWebPart.CreateChildControls() +2189
    Microsoft.SharePoint.WebPartPages.WebPartMobileAdapter.CreateChildControls() +72
    System.Web.UI.Control.EnsureChildControls() +132
    Microsoft.SharePoint.WebPartPages.DataFormWebPart.Microsoft.SharePoint.WebPartPages.IConnectionData.GetData() +73
    Microsoft.SharePoint.WebPartPages.SPWebPartManager.BeginWebPartDataFetch() +200
    Microsoft.SharePoint.WebPartPages.SPWebPartManager.ActivateV2ConnectionsAndSharePointDataFetch() +123
    Microsoft.SharePoint.WebPartPages.SPWebPartManager.ActivateConnections() +511
    System.Web.UI.WebControls.WebParts.WebPartManager.OnPageLoadComplete(Object sender, EventArgs e) +70
    System.EventHandler.Invoke(Object sender, EventArgs e) +0
    System.Web.UI.Page.OnLoadComplete(EventArgs e) +11039550
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3160

    If you add a Shared Document list view web part and add connection to the report viewer web part (RVWP), there will be no error. Since when the RVWP gets row from list web part in the connection, it will get data from DocUrl column. And the row passed from
    Shared Document list view wp contains this column, whereas other list view wps don't.
    Datarow passed to RVWP by Shared Document list view wp:

  • Camera View error when display in IE11+Win7 Enterprise

    Hi all,
    When I accessed the VSOM url through IE 11 on VM with OS of Win7 Enterprise, there is an error as snapshot.
    But when access by another IE 11 based on PC with OS of Win7 Professional, it works well...
    I am wondering if any security setting here?? How can I resolve it? Thanks!
    Ziwei

    Thanks Scott,
    The error in VSOM7.5 is as below, but camera UI is working well to view.
    The VM for accessing VSOM is Win7 Enterprise + IE 11.

  • Event Viewer Error When Installing QuickTime in Windows 7

    Recently I installed QuickTime Player Version 7.7 (1680.34) on 64-bit Windows 7 workstation. There was an error in the Event Viewer:
    Faulting application name: MSiExec.exe, version: 5.0.7601.17514, time stamp: ox4ce792c4
    Faulting module name: QuickTime.qts_unloaded, version: 0.0.0.0, time stamp: ox4e13ba08
    Exception code: oxc0000005
    Fault offset: 0x7287a9e9
    Faulting process id: ox4f8
    Faulting application start time: 0x01cd1e60e81cd4ab
    Faulting application path: c:\windows\syswow64\MSiExec.exe
    Faulting module path: QuickTime.qts
    Report Id: 2708fa37-8a54-11e1-8bb1-d4bed98d5633
    The QuickTime function is OK.
    Any idea about this error?
    The same error happens whenever I install /remove the QuickTime.
    Thanks,
    Linda

    Faulting application path: c:\windows\syswow64\MSiExec.exe
    Taken at face value, the 32-bit Windows Installer Service is throwing the error.
    Doublechecking ... The QuickTime Player is successfully uninstalling and reinstalling for you, despite the error message?

  • Indesign CC view error when opening file

    When opening a file in Indesign CC, occasionally the application with all the tools are visible – but no page to be seen. The “save as” command is however active. When trying to close the application, the error message appears that there is an Indesign-error.
    When reopening Indesign, the application loads as usual and the missing file from the previous attempt now shows automatically. Does not make sense or...
    OS: Win7 (64 bit)
    Start disk: Samsung 500GB SSD
    Processor: Intel Core i7 CPU, 970 3,2GHz
    RAM: 24GB
    Display: NVIDIA GeForce GTX 580 (3GB)

    Probably won't help, but see Replace Your Preferences.
    Also i fyou've set your system display to Large Fonts it can casue all sorts of strange trouble in ID. See InDesign tools and panels don't respond to mouse clicks (Windows 7/Vista)

  • I am getting error when I try to generate Data Preview

    Hi Friends,
    I have created a view and Validated also activated which was successful, Now when I try to generate data preview it is giving me error
    The error says:
    com.sap.db.jdbc.exceptions.JDBCDriverException:SAP DBTech JDBC: [391] (at 130) : Invalidated view : P1163893/EXP_ONE: Line 1 Col 13(at POS 130)
    Kindly help what went wrong in this process.
    Thanks,
    Guna

    Hello,
    this is well known bug/feature of SAP HANA
    issue is explained in following SAP note:
    1612696 - "Invalidated view" error when using analytical views
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1612696]
    You need to execute following statements:
    grant select on schema <SCHEMA> to _SYS_REPO with grant option
    Where <SCHEMA> is schema of tables used in the view definition.
    (If you used several schemas - you need to do this for every schema.)
    Tomas

  • Invalid Bitmap Data error when Flex tries to play a Crossfade transition?

    Hi All,
    I've got a Grid like this in my Flex 4 app.  When the view that contains this Grid is visible, and the view is changed to another view, my application tries to play the Crossfade effect as the transition to the other view.  My transition is defined like this:
         <s:transitions>
              <s:Transition fromState="*" toState="*">
                   <s:Parallel>
                        <s:CrossFade duration="150" target="{this}" />
                   </s:Parallel>
              </s:Transition>
         </s:transitions>
    This applies the transition to any view.  There's only one effect in there at the moment but it's in a Parallel block since I've experimented with multiple transitions.
    Now, when I'm on a view where this Grid is visible, and I try to transition to another view, I get an "Invalid BitmapData" error.  HEre's the complete stack trace:
    ArgumentError: Error #2015: Invalid BitmapData.
         at flash.display::BitmapData/ctor()
         at flash.display::BitmapData()
         at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:99]
         at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
         at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
         at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
         at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
         at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
         at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
         at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
         at spark.utils::BitmapUtil$/getRealBounds()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:135]
         at spark.utils::BitmapUtil$/getSnapshot()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\utils\BitmapUtil.as:63]
         at spark.effects::AnimateTransitionShader/getValueFromTarget()[E:\dev\4.0.0\frameworks\projects\spark\src\spark\effects\AnimateTransitionShader.as:283]
         at mx.effects::Effect/http://www.adobe.com/2006/flex/mx/internal::captureValues()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\effects\Effect.as:1462]
         at mx.effects::CompositeEffect/http://www.adobe.com/2006/flex/mx/internal::captureValues()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\effects\CompositeEffect.as:377]
         at mx.effects::CompositeEffect/captureStartValues()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\effects\CompositeEffect.as:358]
         at mx.core::UIComponent/commitCurrentState()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9778]
         at mx.core::UIComponent/setCurrentState()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9701]
         at mx.core::UIComponent/set currentState()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\UIComponent.as:6087]
         at main/previousButton_clickHandler()[C:\Data\dev\Flex\main\src\main.mxml:48]
         at main/__previousButton_click()[C:\Data\dev\Flex\main\src\main.mxml:241]
    Here's what the grid looks like.  I experimented with adding and removing controls from the grid, and eventually narrowed it down to a a VGroup I've got in the grid.  If I remove that VGroup (and all it's children), the transition plays fine.  Add it back in, and everything blows up again.  I tried using a VBox instead of a VGroup, but there was no change--same error.  I also tried getting rid of horizontalAlign="center", and again, no change.
    <mx:Grid id='membershipGrid' >
         <mx:GridRow>
              <mx:GridItem>
              </mx:GridItem>
              <mx:GridItem>
                   <s:Label text="One Year" fontWeight="bold"/>
              </mx:GridItem>
              <mx:GridItem>
                   <s:Label text="Two Year" fontWeight="bold"/>
              </mx:GridItem>
              <mx:GridItem>
                   <s:Label text="5 Year" fontWeight="bold"/>
              </mx:GridItem>
              <mx:GridItem>
                   <!-- Comment out this VGroup, and everything works fine -->
                   <s:VGroup horizontalAlign="center">
                        <s:Label text="Monthly Autorenew"  fontWeight="bold"/>
                        <s:Label text="Payment plan option is not available" fontStyle="italic" />
                        <s:Label text="for multiple year memberhips." fontStyle="italic" />
                   </s:VGroup>
              </mx:GridItem>
         </mx:GridRow>
         <mx:GridRow>
              <mx:GridItem>
                   <s:Label text="Standard Membership" />
              </mx:GridItem>
              <mx:GridItem>
                   <s:RadioButton id="standardOneYear" group="{membershipTypeSelection}"
                                     label="{pricing.getMembership(MembershipName.STANDARD_ONE_YEAR).currencyPrice}" />
              </mx:GridItem>
              <mx:GridItem>
                   <s:RadioButton id="standardTwoYear" group="{membershipTypeSelection}"
                                     label="{pricing.getMembership(MembershipName.STANDARD_TWO_YEAR).currencyPrice}" />
              </mx:GridItem>
              <mx:GridItem>
                   <s:RadioButton id="standardFiveYear" group="{membershipTypeSelection}"
                                     label="{pricing.getMembership(MembershipName.STANDARD_FIVE_YEAR).currencyPrice}" />
              </mx:GridItem>
              <mx:GridItem horizontalAlign="center">
                   <s:RadioButton id="monthlyAutorenew" group="{membershipTypeSelection}"
                                     label="{pricing.getMembership(MembershipName.MONTHLY_AUTORENEW).currencyPrice}" />
              </mx:GridItem>
         </mx:GridRow>
    </mx:Grid>
    So, what's going on?  How can I get this transition to work?  Thanks!

    Flex harUI wrote:
    Sometimes that can happen if something gets sized too small.
    Thanks for suggesting that.  It got me thinking about some other things, and I then realized that the Grid itself was in a container with TileLayout, and a requestedColumnCount of 5.  That was a mistake--I had initially been playing with the TileLayout for my "grid" but then switched to using an actual mx:Grid control, and should have gotten rid of the TileLayout with the requestedColumnCount of 5.
    I changed my layout object to an instance of VerticalLayout, and now the problem has gone away.
    My theory, based on your suggestion that something might be sized "too small," is that when I added enough controls to my Grid (which all appeared in tile 1), tiles 2 through 5 got "too small" and thus Invalid BitmapData errors were thrown when the transition tried to figure out what bitmaps to fade in/out.
    Sound reasonable?
    Now I just have to re-enable all the other controls that I disabled while trying to hunt down this problem, and hopefully the Invalid BitmapData error won't recur.
      -Josh

  • Admin Tool Error When Viewing Data in Physical Layer nQSError: 43093

    I am trying to view the data in my Admin Tool in the Physical Layer, I am getting:
    [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 43093] An error occurred while processing the EXECUTE PHYSICAL statement.
    [nQSError: 17001] Oracle Error code: 904, message: ORA-00904: "STUDENT_NUMBER": invalid identifier at OCI call OCIStmtExecute.
    [nQSError: 17010] SQL statement preparation failed.
    I know why I am getting the ORA-00904 error (the data structure in the external database has changed the the column STUDENT_NUMBER does not exist). However, I am getting TNS Listener errors when trying to re-import the changed data structure (import -> through server). I have checked my ODBC connection and it seems that is not the issue. This functionality existed before (I did pull in the data structure, that is where my error is originating from). Is there something I am missing?
    Any insight is appreciated.
    Thank you,
    Kyle

    Hi,
    After an upgrade, these kind of issues can happen for several reasons as below
    1. Wrong OCI Call Interface. If ODBC 3.5 has been used an Interface in 10g, then the upgraded .rpd might still be using the same even when you have got a number of different options to choose from in 11g. To resolve issues of this type change the underlying database version in the physical layer of the .rpd. Once, you make this change you can see a variety of changes in the queries, performance etc for good.
    2. After you did a 'View Data' on the table, go through the NQQuery.log to see the query it is firing (Yes, you need to have log level set for this user though) and analyze it from the DB end. See, if you run the query in the DB it is fast, but if it is the Admin tool that hangs up with this query. In this case check the network speed, database settings, system DSN driver etc.
    Hope this helps.
    Thank you,
    Dhar

  • Intermittent  error when using the Disco Viewer client

    Hi, I have a user receiving the following intermittent error when using the Discoverer Viewer client:
    “The application encountered an invalid state.
    - Discoverer Beans XML Exception. Method: findNode Class: XMLUtils Error: Cannot find parent node. Parent element does not exist in XML document, looking for database_account/eul
    OracleBI Discoverer Viewer was unable to find the necessary data for displaying the results of this event. Please correct any errors and try again.”
    Any idea what this might be? Any help or direction would be very much appreciated! Thank you!

    Hello
    Is this related to a single machine or common to a single report or is it purely random?
    I did a search on your behalf and came up with nothing related to this error. You may therefore need to raise the problem with Oracle Support.
    Just out of curiosity which version of Discoverer are you using?
    Michael

  • I get this error when I go to imovie, I have instalerat on via appstore, but it does not work. The QuickTime components necessary to view, edit, import and export various types of films are not installed. The components included in the iMovie installer. R

    I get this error when I go to imovie, I have instalerat on via appstore, but it does not work.
    The QuickTime components necessary to view, edit, import and export varioustypes of films are not installed. The components included in the iMovie installer.Reinstalling iMovie.

    I get this error when I go to imovie, I have instalerat on via appstore, but it does not work.
    The QuickTime components necessary to view, edit, import and export varioustypes of films are not installed. The components included in the iMovie installer.Reinstalling iMovie.

  • Error when adding a partition to a materlialized view

    Hi,
    I am getting this error when adding a partition to a materialized view.
    ALTER MATERIALIZED VIEW mvedw.MV_CLM_CAPITN_F ADD PARTITION MAR2013 VALUES LESS THAN ('201304')
    ERROR at line 1:
    ORA-14074: partition bound must collate higher than that of the last partition
    Please advise.
    Regards,
    Narayan

    SQL> select TABLE_OWNER,TABLE_NAME,PARTITION_NAME,HIGH_VALUE from dba_tab_partitions where table_name =
    'MV_CLM_CAPITN_F' order by PARTITION_NAME 2
    3 ;
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F APR2009 '200905'
    MVEDW MV_CLM_CAPITN_F APR2010 '201005'
    MVEDW MV_CLM_CAPITN_F APR2011 '201105'
    MVEDW MV_CLM_CAPITN_F APR2012 '201205'
    MVEDW MV_CLM_CAPITN_F AUG2009 '200909'
    MVEDW MV_CLM_CAPITN_F AUG2010 '201009'
    MVEDW MV_CLM_CAPITN_F AUG2011 '201109'
    MVEDW MV_CLM_CAPITN_F AUG2012 '201209'
    MVEDW MV_CLM_CAPITN_F DEC2008 '200901'
    MVEDW MV_CLM_CAPITN_F DEC2009 '201001'
    MVEDW MV_CLM_CAPITN_F DEC2010 '201101'
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F DEC2012 '201301'
    MVEDW MV_CLM_CAPITN_F FEB2009 '200903'
    MVEDW MV_CLM_CAPITN_F FEB2010 '201003'
    MVEDW MV_CLM_CAPITN_F FEB2011 '201103'
    MVEDW MV_CLM_CAPITN_F FEB2012 '201203'
    MVEDW MV_CLM_CAPITN_F FEB2013 '201303'
    MVEDW MV_CLM_CAPITN_F JAN2009 '200902'
    MVEDW MV_CLM_CAPITN_F JAN2010 '201002'
    MVEDW MV_CLM_CAPITN_F JAN2011 '201102'
    MVEDW MV_CLM_CAPITN_F JAN2012 '201202'
    MVEDW MV_CLM_CAPITN_F JAN2013 '201302'
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F JUL2009 '200908'
    MVEDW MV_CLM_CAPITN_F JUL2010 '201008'
    MVEDW MV_CLM_CAPITN_F JUL2011 '201108'
    MVEDW MV_CLM_CAPITN_F JUL2012 '201208'
    MVEDW MV_CLM_CAPITN_F JUN2009 '200907'
    MVEDW MV_CLM_CAPITN_F JUN2010 '201007'
    MVEDW MV_CLM_CAPITN_F JUN2011 '201107'
    MVEDW MV_CLM_CAPITN_F JUN2012 '201207'
    MVEDW MV_CLM_CAPITN_F MAR2009 '200904'
    MVEDW MV_CLM_CAPITN_F MAR2010 '201004'
    MVEDW MV_CLM_CAPITN_F MAR2011 '201104'
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F MAR2012 '201204'
    MVEDW MV_CLM_CAPITN_F MAR2013 '201304'
    MVEDW MV_CLM_CAPITN_F MAY2009 '200906'
    MVEDW MV_CLM_CAPITN_F MAY2010 '201006'
    MVEDW MV_CLM_CAPITN_F MAY2011 '201106'
    MVEDW MV_CLM_CAPITN_F NOV2009 '200912'
    MVEDW MV_CLM_CAPITN_F NOV2010 '201012'
    MVEDW MV_CLM_CAPITN_F NOV2012 '201212'
    MVEDW MV_CLM_CAPITN_F OCT2009 '200911'
    MVEDW MV_CLM_CAPITN_F OCT2010 '201011'
    MVEDW MV_CLM_CAPITN_F OCT2011 '201111'
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F OCT2012 '201211'
    MVEDW MV_CLM_CAPITN_F SEP2009 '200910'
    MVEDW MV_CLM_CAPITN_F SEP2010 '201010'
    MVEDW MV_CLM_CAPITN_F SEP2011 '201110'
    MVEDW MV_CLM_CAPITN_F SEP2012 '201210'
    These are the list of partitions available.
    Regards,
    Narayan

  • Using SSRS local mode, receive invalid token error when trying to export the report when running in worker thread

    We're using ASP.net with .Net 4, developing with Visual Studio 2012.  We use SSRS 2012sp1 with local reports, so exporting the report ourselves instead of using a reportviewer control (and not using the SQL Reporting service).  The reports are
    executing fine when we export the report in the main thread, but if we spawn a worker thread and run a report there we receive the following error when calling Render():
    Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Failed to load expression host assembly. Details: Invalid token for impersonation - it cannot be duplicated.
    We only receive this when running a report that uses expressions on a separate thread.  I've tried running the application pool under all the default built-in accounts (NetworkService, etc), and under admin user accounts to no avail.
    This didn't occur with the previous version of our application which used .net 3.5.

    As mentioned, we are not using the Reportviewer control, we are rendering locally.  Not certain if that would make a difference.
    Also, I had tried using all the built-in accounts.  Just for kicks I changed it to LocalSystem again, then reset IIS (see image below).  I then tried to export the report in a worker thread and received the same error.
    Here is the text from the exception:
    Microsoft.Reporting.WebForms.LocalProcessingException: An error occurred during local report processing. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Failed to load expression host assembly. Details: Invalid token for impersonation - it cannot be duplicated.
    at Microsoft.ReportingServices.RdlExpressions.ReportRuntime.ProcessLoadingExprHostException(ObjectType assemblyHolderObjectType, Exception e, ProcessingErrorCode errorCode)
    at Microsoft.ReportingServices.RdlExpressions.ReportRuntime.LoadCompiledCode(IExpressionHostAssemblyHolder expressionHostAssemblyHolder, Boolean includeParameters, Boolean parametersOnly, ObjectModelImpl reportObjectModel, ReportRuntimeSetup runtimeSetup)
    at Microsoft.ReportingServices.OnDemandProcessing.Merge.Init(Boolean includeParameters, Boolean parametersOnly)
    at Microsoft.ReportingServices.OnDemandProcessing.Merge.Init(ParameterInfoCollection parameters)
    at Microsoft.ReportingServices.ReportProcessing.Execution.ProcessReportOdp.CreateReportInstance(OnDemandProcessingContext odpContext, OnDemandMetadata odpMetadata, ReportSnapshot reportSnapshot, Merge& odpMerge)
    at Microsoft.ReportingServices.ReportProcessing.Execution.ProcessReportOdp.Execute(OnDemandProcessingContext& odpContext)
    at Microsoft.ReportingServices.ReportProcessing.Execution.RenderReportOdpInitial.ProcessReport(ProcessingErrorContext errorContext, ExecutionLogContext executionLogContext, UserProfileState& userProfileState)
    at Microsoft.ReportingServices.ReportProcessing.Execution.RenderReport.Execute(IRenderingExtension newRenderer)
    at Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(IRenderingExtension newRenderer, DateTime executionTimeStamp, ProcessingContext pc, RenderingContext rc, IChunkFactory yukonCompiledDefinition)
    at Microsoft.Reporting.LocalService.CreateSnapshotAndRender(ReportProcessing repProc, IRenderingExtension renderer, ProcessingContext pc, RenderingContext rc, SubreportCallbackHandler subreportHandler, ParameterInfoCollection parameters, DatasourceCredentialsCollection credentials)
    at Microsoft.Reporting.LocalService.Render(String format, String deviceInfo, String paginationMode, Boolean allowInternalRenderers, IEnumerable dataSources, CreateAndRegisterStream createStreamCallback)
    at Microsoft.Reporting.WebForms.LocalReport.InternalRender(String format, Boolean allowInternalRenderers, String deviceInfo, PageCountMode pageCountMode, CreateAndRegisterStream createStreamCallback, Warning[]& warnings)
    --- End of inner exception stack trace ---
    at Microsoft.Reporting.WebForms.LocalReport.InternalRender(String format, Boolean allowInternalRenderers, String deviceInfo, PageCountMode pageCountMode, CreateAndRegisterStream createStreamCallback, Warning[]& warnings)
    at Microsoft.Reporting.WebForms.LocalReport.InternalRender(String format, Boolean allowInternalRenderers, String deviceInfo, PageCountMode pageCountMode, String& mimeType, String& encoding, String& fileNameExtension, String[]& streams, Warning[]& warnings)
    at Microsoft.Reporting.WebForms.LocalReport.Render(String format, String deviceInfo, PageCountMode pageCountMode, String& mimeType, String& encoding, String& fileNameExtension, String[]& streams, Warning[]& warnings)
    at Microsoft.Reporting.WebForms.Report.Render(String format, String deviceInfo, String& mimeType, String& encoding, String& fileNameExtension, String[]& streams, Warning[]& warnings)
    at IxSS.Infolinx.Report.MicrosoftInfolinxReport.ExportReport(String strFileFullyQualifiedPath, String strExportType, String strFilterDesc, Dictionary`2 extraParams, String area)
    at IxSS.Infolinx.Report.MicrosoftInfolinxReport.ExportReport(String strFileFullyQualifiedPath, String strExportType, String strFilterDesc, Dictionary`2 extraParams)

Maybe you are looking for

  • Intermittent Lock Timeout Exceptions with JE 5.0.58

    Hi, During tests, the system continues to experience Lock Timeout problems from time to time, even with the latest version 5.0.58. The collection contains data which is typically removed shortly after inserted, so records usually have a short lifetim

  • Input Tax  - difference between sap version 4.7 and version 5

    Hi All I done total customising of input tax on sap version 4.7 as well as version 5. now I want to enter following invoice through t.code F-43:-    Raw Material Cost                           50,000.00 Add:-  Excise                                  

  • BO XIR 3.1 Edge- Problem installing Fix Pack 1.1

    I am trying to install Fix Pack 1.1 for XIR3.1 Edge. The BO installation is installed on c:\businessobjects When asked for Server Instance and Service Name: SERVER INSTANCE = Server name SERVICE NAME = defaults to TomCat55 However, I get this error.

  • UCCX V7 Historical Reports

    Does anyone know how to to give standard users on UCCX V7 access to view historical reports , document id 51927 shows how to do it via the user configuration in the Tools>Historical Reporting Configuration page but the user configuration option is no

  • Wirte stamt truncating in spool

    Hi I want to increase the number of characters in a line to maximum. in report stmt the line-size defined as 760. but it is truncating in the output. Ex:WRITE:/4(75) 'Number of files read ',80 variable1.    WRITE:/4(75) 'Number of files read ',80 var