Need help on extending my TEMP tablespace (Ora ver - 8.1.7.0.0)

Hi
I am having problem in executing the SQL query with certain parameters in the WHERE clause.
ORA-01114: IO error writing block to file 4 (block # 524242)
ORA-27069: skgfdisp: attempt to do I/O beyond the range of the file
OSD-04026: Invalid parameter passed. (OS 524247)
ORA-01114: IO error writing block to file 4 (block # 524242)
ORA-27069: skgfdisp: attempt to do I/O beyond the range of the file
OSD-04026: Invalid parameter passed. (OS 524247)
I get the above listed error. And i assumed there may be some issue due to Temp tablespace. I also verified the space occupied by the TEMP tablespace and it was 99% occupied.
Kindly let me know is there a way to extend the space without affecting the existing DB content
Regards
Srinivasan B

Didn't you got a answer in your Getting error while executing the SQL ( ver 8.1.7.0.0), did you ?
Furthermore, don't worry about the TEMP tablespace utilization, Oracle doesn't freed space until you need it. By the way, how your TEMP tbs is defined (AUTOEXTEND, DATAFILE/TEMPFILE...) ?
Anyway, you have to be sure about the free space on your device. And check on metalink website to get some notes advices.
Nicolas.

Similar Messages

  • Need help to extend a EO based VO

    Hi All,
    I have VO which is EO based. All the select columns are displayed in an advance table on a page. Now i need to add another field in the advance table which is in another table.
    This is VO.xml file:
    <?xml version="1.0" encoding='windows-1252'?>
    <!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
    <!--$Header: OpportunityLineDetailsVO.xml 115.20.115200.3 2005/06/20 21:24:25 sekkiral ship $-->
    <ViewObject
    Name="OpportunityLineDetailsVO"
    OrderBy="creation_date"
    BindingStyle="Oracle"
    CustomQuery="true"
    RowClass="oracle.apps.asn.opportunity.server.OpportunityLineDetailsVORowImpl"
    ComponentClass="oracle.apps.asn.common.fwk.server.ASNViewObjectImpl"
    MsgBundleClass="oracle.jbo.common.JboResourceBundle"
    FetchMode="FETCH_AS_NEEDED"
    Passivate="All"
    UseGlueCode="false" >
    <SQLQuery><![CDATA[
    SELECT OpportunityLineEO.lead_id,
    OpportunityLineEO.lead_line_id,
    OpportunityLineEO.inventory_item_id,
    OpportunityLineEO.organization_id,
    OpportunityLineEO.uom_code,
    OpportunityLineEO.quantity,
    OpportunityLineEO.total_amount,
    OpportunityLineEO.forecast_date,
    OpportunityLineEO.creation_date,
    NVL(msit.description,mct.description) AS product_category,
    OpportunityLineEO.object_version_number,
    OpportunityLineEO.product_category_id,
    OpportunityLineEO.product_cat_set_id,
    OpportunityLineEO.attribute_category,
    OpportunityLineEO.attribute1,
    OpportunityLineEO.attribute2,
    OpportunityLineEO.attribute3,
    OpportunityLineEO.attribute4,
    OpportunityLineEO.attribute5,
    OpportunityLineEO.attribute6,
    OpportunityLineEO.attribute7,
    OpportunityLineEO.attribute8,
    OpportunityLineEO.attribute9,
    OpportunityLineEO.attribute10,
    OpportunityLineEO.attribute11,
    OpportunityLineEO.attribute12,
    OpportunityLineEO.attribute13,
    OpportunityLineEO.attribute14,
    OpportunityLineEO.attribute15,
    mskfv.concatenated_segments as item_number
    FROM as_lead_lines_all OpportunityLineEO,
    mtl_system_items_tl msit,
    mtl_categories_tl mct,
         mtl_system_items_b_kfv mskfv
    WHERE OpportunityLineEO.inventory_item_id = msit.inventory_item_id(+)
    AND OpportunityLineEO.organization_id = msit.organization_id (+)
    AND msit.language (+) = USERENV('LANG')
    AND OpportunityLineEO.product_category_id = mct.category_id
    AND mct.language = USERENV('LANG')
    AND mskfv.inventory_item_id (+) = msit.inventory_item_id
    AND mskfv.organization_id (+) = msit.organization_id
    ]]></SQLQuery>
    <DesignTime>
    <Attr Name="_isCodegen" Value="true" />
    <Attr Name="_version" Value="9.0.3.13.68" />
    <Attr Name="_CodeGenFlagNew" Value="4" />
    <Attr Name="_rowSuperClassName" Value="oracle.apps.asn.common.fwk.server.ASNViewRowImpl" />
    <Attr Name="_objectSuperClassName" Value="oracle.apps.asn.common.fwk.server.ASNViewObjectImpl" />
    </DesignTime>
    <EntityUsage
    Name="OpportunityLineEO"
    Entity="oracle.apps.asn.opportunity.schema.server.OpportunityLineEO" >
    <DesignTime>
    <Attr Name="_EntireObjectTable" Value="false" />
    <Attr Name="_queryClause" Value="false" />
    </DesignTime>
    </EntityUsage>
    <ViewAttribute
    Name="LeadId"
    IsUpdateable="while_insert"
    IsNotNull="true"
    EntityAttrName="LeadId"
    EntityUsage="OpportunityLineEO"
    AliasName="LEAD_ID"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="LeadLineId"
    IsUpdateable="while_insert"
    IsNotNull="true"
    EntityAttrName="LeadLineId"
    EntityUsage="OpportunityLineEO"
    AliasName="LEAD_LINE_ID"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="InventoryItemId"
    IsUpdateable="while_insert"
    EntityAttrName="InventoryItemId"
    EntityUsage="OpportunityLineEO"
    AliasName="INVENTORY_ITEM_ID"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="OrganizationId"
    IsUpdateable="while_insert"
    EntityAttrName="OrganizationId"
    EntityUsage="OpportunityLineEO"
    AliasName="ORGANIZATION_ID"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="UomCode"
    EntityAttrName="UomCode"
    EntityUsage="OpportunityLineEO"
    AliasName="UOM_CODE"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Quantity"
    EntityAttrName="Quantity"
    EntityUsage="OpportunityLineEO"
    AliasName="QUANTITY"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="TotalAmount"
    IsNotNull="true"
    EntityAttrName="TotalAmount"
    EntityUsage="OpportunityLineEO"
    AliasName="TOTAL_AMOUNT"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="ForecastDate"
    EntityAttrName="ForecastDate"
    EntityUsage="OpportunityLineEO"
    AliasName="FORECAST_DATE"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="CreationDate"
    IsNotNull="true"
    EntityAttrName="CreationDate"
    EntityUsage="OpportunityLineEO"
    AliasName="CREATION_DATE"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="ProductCategory"
    IsQueriable="false"
    IsPersistent="false"
    Precision="282"
    Type="java.lang.String"
    AliasName="PRODUCT_CATEGORY"
    ColumnType="VARCHAR2"
    Expression="PRODUCT_CATEGORY"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="282" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ObjectVersionNumber"
    EntityAttrName="ObjectVersionNumber"
    EntityUsage="OpportunityLineEO"
    AliasName="OBJECT_VERSION_NUMBER"
    Passivate="true"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="ProductCategoryId"
    IsUpdateable="while_insert"
    EntityAttrName="ProductCategoryId"
    EntityUsage="OpportunityLineEO"
    AliasName="ProductCategoryId"
    Passivate="true"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="ProductCatSetId"
    IsUpdateable="while_insert"
    EntityAttrName="ProductCatSetId"
    EntityUsage="OpportunityLineEO"
    AliasName="ProductCatSetId"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="SelectFlag"
    IsPersistent="false"
    Precision="1"
    Type="java.lang.String"
    AliasName="SELECT_FLAG"
    ColumnType="VARCHAR2"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="ItemNullFlag"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="ITEM_NULL_FLAG"
    ColumnType="VARCHAR2"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="ProcOrganizationId"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="PROC_ORGANIZATION_ID"
    ColumnType="Number"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="ProcInventoryItemId"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="PROC_INVENTORY_ITEM_ID"
    ColumnType="Number"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="EmptyString"
    IsPersistent="false"
    Precision="1"
    Type="java.lang.String"
    AliasName="EMPTY_STRING"
    ColumnType="VARCHAR2"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="AttributeCategory"
    EntityAttrName="AttributeCategory"
    EntityUsage="OpportunityLineEO"
    AliasName="AttributeCategory"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute1"
    EntityAttrName="Attribute1"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute1"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute2"
    EntityAttrName="Attribute2"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute2"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute3"
    EntityAttrName="Attribute3"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute3"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute4"
    EntityAttrName="Attribute4"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute4"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute5"
    EntityAttrName="Attribute5"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute5"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute6"
    EntityAttrName="Attribute6"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute6"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute7"
    EntityAttrName="Attribute7"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute7"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute8"
    EntityAttrName="Attribute8"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute8"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute9"
    EntityAttrName="Attribute9"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute9"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute10"
    EntityAttrName="Attribute10"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute10"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute11"
    EntityAttrName="Attribute11"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute11"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute12"
    EntityAttrName="Attribute12"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute12"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute13"
    EntityAttrName="Attribute13"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute13"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute14"
    EntityAttrName="Attribute14"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute14"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="Attribute15"
    EntityAttrName="Attribute15"
    EntityUsage="OpportunityLineEO"
    AliasName="Attribute15"
    ColumnType="VARCHAR2" >
    </ViewAttribute>
    <ViewAttribute
    Name="OppBestForecastAmount"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="VIEW_ATTR"
    ColumnType="VARCHAR2"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="OppWorstForecastAmount"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="VIEW_ATTR"
    ColumnType="VARCHAR2"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="OppForecastAmount"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="VIEW_ATTR"
    ColumnType="VARCHAR2"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="ItemNumber"
    IsPersistent="false"
    Precision="40"
    Type="java.lang.String"
    AliasName="Item_Number"
    ColumnType="VARCHAR2"
    Expression="Item_Number"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewLinkAccessor
    Name="OpportunityDetailsVO"
    ViewLink="oracle.apps.asn.opportunity.server.OpptyDetailsToLinesVL"
    Type="oracle.jbo.Row"
    Reversed="true"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    <ViewLinkAccessor
    Name="OpptyLineCmptPrdtDetailsVO"
    ViewLink="oracle.apps.asn.opportunity.server.OpptyLineToCmptPrdtDetailsVL"
    Type="oracle.jbo.RowIterator"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    <ViewLinkAccessor
    Name="OpportunityLineNonRevFrcstDetailsVO"
    ViewLink="oracle.apps.asn.opportunity.server.OpptyLineToNonRevFrcstDetailsVL"
    Type="oracle.jbo.RowIterator"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    <ViewLinkAccessor
    Name="OpportunityLineRevFrcstDetailsVO"
    ViewLink="oracle.apps.asn.opportunity.server.OpptyLineToRevFrcstDetailsVL"
    Type="oracle.jbo.RowIterator"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    </ViewObject>
    The corresponding EO.xml file is:
    <?xml version="1.0" encoding='windows-1252'?>
    <!DOCTYPE Entity SYSTEM "jbo_03_01.dtd">
    <Entity
    Name="xxdbdOpportunityCeddEO"
    DBObjectType="table"
    DBObjectName="XXDBD_CEDD"
    AliasName="xxdbdOpportunityCeddEO"
    BindingStyle="Oracle"
    UseGlueCode="false"
    CodeGenFlag="76"
    RowClass="dbdcustom.oracle.apps.asn.opportunity.schema.server.xxdbdOpportunityCeddEOImpl"
    DefClass="oracle.apps.fnd.framework.server.OAEntityDefImpl"
    CollClass="oracle.apps.fnd.framework.server.OAEntityCache" >
    <DesignTime>
    <Attr Name="_isCodegen" Value="true" />
    <Attr Name="_version" Value="9.0.3.13.97" />
    <AttrArray Name="_publishEvents">
    </AttrArray>
    </DesignTime>
    <Attribute
    Name="LeadId"
    IsNotNull="true"
    Type="oracle.jbo.domain.Number"
    ColumnName="LEAD_ID"
    ColumnType="NUMBER"
    SQLType="NUMERIC"
    TableName="XXDBD_CEDD"
    PrimaryKey="true" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </Attribute>
    <Attribute
    Name="LeadLineId"
    IsNotNull="true"
    Type="oracle.jbo.domain.Number"
    ColumnName="LEAD_LINE_ID"
    ColumnType="NUMBER"
    SQLType="NUMERIC"
    TableName="XXDBD_CEDD"
    PrimaryKey="true" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </Attribute>
    <Attribute
    Name="CeddDate"
    Type="oracle.jbo.domain.Date"
    ColumnName="CEDD_DATE"
    ColumnType="DATE"
    SQLType="TIMESTAMP"
    TableName="XXDBD_CEDD" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="7" />
    </DesignTime>
    </Attribute>
    <Key
    Name="XxdbdCeddPk" >
    <AttrArray Name="Attributes">
    <Item Value="dbdcustom.oracle.apps.asn.opportunity.schema.server.xxdbdOpportunityCeddEO.LeadId" />
    <Item Value="dbdcustom.oracle.apps.asn.opportunity.schema.server.xxdbdOpportunityCeddEO.LeadLineId" />
    </AttrArray>
    <DesignTime>
    <Attr Name="_DBObjectName" Value="XXDBD_CEDD_PK" />
    <Attr Name="_isPrimary" Value="true" />
    </DesignTime>
    </Key>
    </Entity>
    Now I extended the VO Object.
    The corresponding VO.xml file is:
    <?xml version="1.0" encoding='windows-1252'?>
    <!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
    <ViewObject
    Name="xxdbdOpportunityLineDetailsVO"
    Extends="oracle.apps.asn.opportunity.server.OpportunityLineDetailsVO"
    OrderBy="CREATION_DATE"
    BindingStyle="Oracle"
    CustomQuery="true"
    RowClass="dbdcustom.oracle.apps.asn.opportunity.server.xxdbdOpportunityLineDetailsVORowImpl"
    ComponentClass="dbdcustom.oracle.apps.asn.opportunity.server.xxdbdOpportunityLineDetailsVOImpl"
    MsgBundleClass="oracle.jbo.common.JboResourceBundle"
    UseGlueCode="false" >
    <SQLQuery><![CDATA[
    SELECT OpportunityLineEO.lead_id LEAD_ID,
    OpportunityLineEO.lead_line_id LEAD_LINE_ID,
    OpportunityLineEO.inventory_item_id,
    OpportunityLineEO.organization_id,
    OpportunityLineEO.uom_code,
    OpportunityLineEO.quantity,
    OpportunityLineEO.total_amount,
    OpportunityLineEO.forecast_date,
    OpportunityLineEO.creation_date,
    NVL(msit.description,mct.description) AS product_category,
    OpportunityLineEO.object_version_number,
    OpportunityLineEO.product_category_id,
    OpportunityLineEO.product_cat_set_id,
    OpportunityLineEO.attribute_category,
    OpportunityLineEO.attribute1,
    OpportunityLineEO.attribute2,
    OpportunityLineEO.attribute3,
    OpportunityLineEO.attribute4,
    OpportunityLineEO.attribute5,
    OpportunityLineEO.attribute6,
    OpportunityLineEO.attribute7,
    OpportunityLineEO.attribute8,
    OpportunityLineEO.attribute9,
    OpportunityLineEO.attribute10,
    OpportunityLineEO.attribute11,
    OpportunityLineEO.attribute12,
    OpportunityLineEO.attribute13,
    OpportunityLineEO.attribute14,
    OpportunityLineEO.attribute15,
    mskfv.concatenated_segments as item_number,
    xxdbdOpportunityCeddEO.cedd_date
    FROM as_lead_lines_all OpportunityLineEO,
    mtl_system_items_tl msit,
    mtl_categories_tl mct,
    mtl_system_items_b_kfv mskfv,
    xxdbd_cedd xxdbdOpportunityCeddEO
    WHERE OpportunityLineEO.inventory_item_id = msit.inventory_item_id(+)
    AND OpportunityLineEO.LEAD_ID=xxdbdOpportunityCeddEO.LEAD_ID
    and OpportunityLineEO.LEAD_LINE_ID=xxdbdOpportunityCeddEO.LEAD_LINE_ID
    AND OpportunityLineEO.organization_id = msit.organization_id (+)
    AND msit.language (+) = USERENV('LANG')
    AND OpportunityLineEO.product_category_id = mct.category_id
    AND mct.language = USERENV('LANG')
    AND mskfv.inventory_item_id (+) = msit.inventory_item_id
    AND mskfv.organization_id (+) = msit.organization_id
    ]]></SQLQuery>
    <DesignTime>
    <Attr Name="_isCodegen" Value="true" />
    <Attr Name="_version" Value="9.0.3.13.97" />
    <Attr Name="_CodeGenFlagNew" Value="36" />
    </DesignTime>
    <EntityUsage
    Name="xxdbdOpportunityCeddEO"
    Entity="dbdcustom.oracle.apps.asn.opportunity.schema.server.xxdbdOpportunityCeddEO"
    SourceUsage="oracle.apps.asn.opportunity.server.OpportunityLineDetailsVO.OpportunityLineEO"
    Reference="true" >
    <DesignTime>
    <Attr Name="_queryClause" Value="false" />
    <AttrArray Name="_srcAttributes">
    <Item Value="oracle.apps.asn.opportunity.schema.server.OpportunityLineEO.LeadLineId" />
    <Item Value="oracle.apps.asn.opportunity.schema.server.OpportunityLineEO.LeadId" />
    </AttrArray>
    <AttrArray Name="_dstAttributes">
    <Item Value="dbdcustom.oracle.apps.asn.opportunity.schema.server.xxdbdOpportunityCeddEO.LeadLineId" />
    <Item Value="dbdcustom.oracle.apps.asn.opportunity.schema.server.xxdbdOpportunityCeddEO.LeadId" />
    </AttrArray>
    </DesignTime>
    </EntityUsage>
    <ViewAttribute
    Name="ProductCategory"
    IsQueriable="false"
    IsPersistent="false"
    Precision="282"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="PRODUCT_CATEGORY"
    Expression="PRODUCT_CATEGORY"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    <Attr Name="_DisplaySize" Value="282" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="SelectFlag"
    IsPersistent="false"
    Precision="1"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="SELECT_FLAG"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ItemNullFlag"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="ITEM_NULL_FLAG"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ProcOrganizationId"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    ColumnType="Number"
    AliasName="PROC_ORGANIZATION_ID"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ProcInventoryItemId"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    ColumnType="Number"
    AliasName="PROC_INVENTORY_ITEM_ID"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="EmptyString"
    IsPersistent="false"
    Precision="1"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="EMPTY_STRING"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="OppBestForecastAmount"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    ColumnType="VARCHAR2"
    AliasName="VIEW_ATTR"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="OppWorstForecastAmount"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    ColumnType="VARCHAR2"
    AliasName="VIEW_ATTR"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="OppForecastAmount"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    ColumnType="VARCHAR2"
    AliasName="VIEW_ATTR"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ItemNumber"
    IsPersistent="false"
    Precision="40"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    AliasName="Item_Number"
    Expression="Item_Number"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="CeddDate"
    IsPersistent="false"
    Type="oracle.jbo.domain.Date"
    ColumnType="DATE"
    AliasName="CeddDate"
    Expression="Cedd_Date"
    SQLType="DATE" >
    </ViewAttribute>
    </ViewObject>
    Now my question is : Do I need to substitute the EO with the new EO that i have developed??
    And then how to proceed further.
    Please help me. This is very urgent.
    Thanx in advance.

    I have created a New EO for the custom table.
    And I have extended VO. The VO query has been changed as below:
    Original VO Query:
    SELECT OpportunityLineEO.lead_id,
    OpportunityLineEO.lead_line_id,
    OpportunityLineEO.inventory_item_id,
    OpportunityLineEO.organization_id,
    OpportunityLineEO.uom_code,
    OpportunityLineEO.quantity,
    OpportunityLineEO.total_amount,
    OpportunityLineEO.forecast_date,
    OpportunityLineEO.creation_date,
    NVL(msit.description,mct.description) AS product_category,
    OpportunityLineEO.object_version_number,
    OpportunityLineEO.product_category_id,
    OpportunityLineEO.product_cat_set_id,
    OpportunityLineEO.attribute_category,
    OpportunityLineEO.attribute1,
    OpportunityLineEO.attribute2,
    OpportunityLineEO.attribute3,
    OpportunityLineEO.attribute4,
    OpportunityLineEO.attribute5,
    OpportunityLineEO.attribute6,
    OpportunityLineEO.attribute7,
    OpportunityLineEO.attribute8,
    OpportunityLineEO.attribute9,
    OpportunityLineEO.attribute10,
    OpportunityLineEO.attribute11,
    OpportunityLineEO.attribute12,
    OpportunityLineEO.attribute13,
    OpportunityLineEO.attribute14,
    OpportunityLineEO.attribute15,
    mskfv.concatenated_segments as item_number
    FROM as_lead_lines_all OpportunityLineEO,
    mtl_system_items_tl msit,
    mtl_categories_tl mct,
         mtl_system_items_b_kfv mskfv
    WHERE OpportunityLineEO.inventory_item_id = msit.inventory_item_id(+)
    AND OpportunityLineEO.organization_id = msit.organization_id (+)
    AND msit.language (+) = USERENV('LANG')
    AND OpportunityLineEO.product_category_id = mct.category_id
    AND mct.language = USERENV('LANG')
    AND mskfv.inventory_item_id (+) = msit.inventory_item_id
    AND mskfv.organization_id (+) = msit.organization_id
    New VO Query is:
    SELECT OpportunityLineEO.lead_id LEAD_ID,
    OpportunityLineEO.lead_line_id LEAD_LINE_ID,
    OpportunityLineEO.inventory_item_id,
    OpportunityLineEO.organization_id,
    OpportunityLineEO.uom_code,
    OpportunityLineEO.quantity,
    OpportunityLineEO.total_amount,
    OpportunityLineEO.forecast_date,
    OpportunityLineEO.creation_date,
    NVL(msit.description,mct.description) AS product_category,
    OpportunityLineEO.object_version_number,
    OpportunityLineEO.product_category_id,
    OpportunityLineEO.product_cat_set_id,
    OpportunityLineEO.attribute_category,
    OpportunityLineEO.attribute1,
    OpportunityLineEO.attribute2,
    OpportunityLineEO.attribute3,
    OpportunityLineEO.attribute4,
    OpportunityLineEO.attribute5,
    OpportunityLineEO.attribute6,
    OpportunityLineEO.attribute7,
    OpportunityLineEO.attribute8,
    OpportunityLineEO.attribute9,
    OpportunityLineEO.attribute10,
    OpportunityLineEO.attribute11,
    OpportunityLineEO.attribute12,
    OpportunityLineEO.attribute13,
    OpportunityLineEO.attribute14,
    OpportunityLineEO.attribute15,
    mskfv.concatenated_segments as item_number,
    xxdbdOpportunityCeddEO.cedd_date
    FROM as_lead_lines_all OpportunityLineEO,
    mtl_system_items_tl msit,
    mtl_categories_tl mct,
         mtl_system_items_b_kfv mskfv,
              xxdbd_cedd xxdbdOpportunityCeddEO
    WHERE OpportunityLineEO.inventory_item_id = msit.inventory_item_id(+)
    AND OpportunityLineEO.LEAD_ID=xxdbdOpportunityCeddEO.LEAD_ID
    and OpportunityLineEO.LEAD_LINE_ID=xxdbdOpportunityCeddEO.LEAD_LINE_ID
    AND OpportunityLineEO.organization_id = msit.organization_id (+)
    AND msit.language (+) = USERENV('LANG')
    AND OpportunityLineEO.product_category_id = mct.category_id
    AND mct.language = USERENV('LANG')
    AND mskfv.inventory_item_id (+) = msit.inventory_item_id
    AND mskfv.organization_id (+) = msit.organization_id
    I have substituted the new VO with the old one.Then through personalition, i have added a new field and assigned cedd_date to the field.
    But when i open the page, when i create a line, all the values are going to the first able but this date value is not going to the custom table.
    Can someone please help me in this. This is very urgent.
    Thanx in advance.

  • Need Help with extending Airport Extreme w/802.11n

    I would like to find a way, if there is one, to extend the coverage of my Airport Extreme w/802.11n. My object is to be able to share my home network with a 2nd house on my property which is approx. 90-100' away from main house and Airport Extreme w/802.11n base station. This home base station is connected to my iMac and I would like to extend it to allow my Dell PC w/ Win XP in 2nd house to connect to the internet/share files/share printer.
    Is this possible and what would I need on the PC side to accomplish this wirelessly?
    Thank You in advance for your help.
    Daniel

    Is the 2nd house on a the same electrical box as the main house? If it's the same, then you can try the powerline ethernet solution.
    http://www.newegg.com/Product/Product.aspx?Item=N82E16833122168
    You will find it cheaper than most outdoor point-to-point bridge solutions.

  • Need help -To Restrict Huge temp file, which grows around 3 GB in OBIEE 11g

    Hi Team,
    I am working on OBIEE 11.1.1.5 version for a client specific BI application. we have an issue concerning massive space consumption in OBIEE 11g installed linux environment whenever trying to run some detail level drill down reports. While investigating, we found that whenever a user runs the drill down report a temp file named nQS_xxxx_x_xxxxxx.TMP is created and keep's growing in size under the below given folder structure,
    *<OBIEE_HOME>/instances/instance1/tmp/OracleBIPresentationServicesComponent/coreapplication_obips1/obis_temp/*
    The size of this temp file grows huge as much as around 3 GB and gets erased automatically when the drill down report output is displayed in UI. Hence when multiple users simultaneously try to access these sort of drill down reports the environment runs out of space.
    Regarding the drill down reports:
    * The drill down report has around 55 columns which is configured to display only 25 rows in the screen and allows the user to download the whole data as Excel output.
    * The complete rows being fetched in query ranges from 1000 to even above 100k rows. Based on the rows fetched, the temp file size keeps growing. ie., If the rows being fetched from the query is around 4000 a temp file of around 60 MB is created and gets erased when the report output is generated in screen (Similarly, for around 100k rows, the temp file size grows up to 3 GB before it gets deleted automatically).
    * The report output has only one table view along side Title & Filters view. (No Pivot table view, is being used to generate this report.)
    * The cache settings for BI Server & BI Presentation services cache are not configured or not enabled.
    My doubts or Questions:
    * Is there any way to control or configure this temp file generation in OBIEE 11g?
    * Why the growing temp file automatically gets deleted immediately after the report output generation in screen. Is there any default server specific settings governing this behaviour?
    * As per certain OBIEE article reference for OBIEE 10g, I learnt that for large pivot table based reports the temp file generation is quite normal because of huge in-memory calculations involved . However we have used only Table view in output but still creates huge temp files. Is this behaviour normal in OBIEE 11g. If not, Can any one Please suggest of any specific settings to be considered to avoid generating these huge files or atleast generate a compressed temp file.
    * Any other work around solution available for generating a report of this type without the generation of temp files in the environment?
    Any help/suggestions/pointers or document reference on this regard will be much appreciated. Please advice
    Thanks & Regards,
    Guhan
    Edited by: 814788 on 11-Aug-2011 13:02

    Hello Guhan,
    The temp files are used to prepare the final result set for OBI presentation server processing, so as long as long you dataset is big the tmp files will be also big and you can only avoid this by reducing your dataset by for example filtering your report.
    You can also control the size of your temp files by reducing the usage of the BI server.I mean by this if you are using any functions like for example sorting that can be handled by your database so just push to the DB.
    Once the report finished the BI server removes automatically the tmp files because it's not necessary anymore.you can see it as a file that is used for internal calculations once it's done the server gets rid of it.
    Hope this helps
    Adil

  • Move db-file of system temp tablespace

    Hallo all,
    There is the need to move the system temp tablespace file to another disk. The database version is 9.2.0.1 and runs on an M$ Windows 2000 version 5.00.2195 sp 4 Server.
    What is the work around for this task?
    Thanks!
    Best regards

    Hallo!
    Thanks for your efforts.
    I followed your instructions exactly and it's works for e. g. "system01.dbf". But it doesn't work for the datafile or temp tablespace (TEMP01.DBF). Here is a print out of alert.log. It shows the error-messages and the status of the database:
    Tue Feb 15 07:18:17 2005
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Tue Feb 15 07:18:17 2005
    ALTER DATABASE MOUNT
    Tue Feb 15 07:18:22 2005
    Successful mount of redo thread 1, with mount id 3673729017.
    Tue Feb 15 07:18:22 2005
    Database mounted in Exclusive Mode.
    Completed: ALTER DATABASE MOUNT
    Tue Feb 15 07:22:57 2005
    alter database rename file 'D:\oracle\oradata\ho01\temp01.dbf' to 'D:\oracle\oradata\TS-temp\temp01.dbf'
    Tue Feb 15 07:22:57 2005
    ORA-1511 signalled during: alter database rename file 'D:\oracle\oradata\ho01...
    Tue Feb 15 07:26:55 2005
    alter database rename file 'D:\oracle\oradata\HO01\TEMP01.DBF' to 'D:\oracle\oradata\TS-temp\TEMP01.DBF'
    Tue Feb 15 07:26:55 2005
    ORA-1511 signalled during: alter database rename file 'D:\oracle\oradata\HO01...
    May be there is something sqecial with this datafile.
    Bye!
    Stefan

  • How to identify temp tablespace user in the past

    hi,
    can anyone guide me on how to identify temp tablespace users and corresponding temp space amount they used in the past?
    we have this situation where in we need to identify the top temp tablespace user last jan 1 around a specific time.
    is this possible? do these get stored in one of the tables in the dictionary? any sql statement?
    thanks.

    900666 wrote:
    hi ckpt,
    thats unfortunate..=(
    anyways, any sql that can be used to capture current sessions with their used mb in temp tablespace? for future monitoring.
    thansk.Here is example
    SQL> SET LINESIZE 145
    SQL> SET PAGESIZE 9999
    SQL> SET VERIFY   off
    SQL>
    SQL> COLUMN tablespace_name       FORMAT a15               HEAD 'Tablespace Name'
    SQL> COLUMN username              FORMAT a15               HEAD 'Username'
    SQL> COLUMN sid                   FORMAT 99999             HEAD 'SID'
    SQL> COLUMN serial_id             FORMAT 99999999          HEAD 'Serial#'
    SQL> COLUMN contents              FORMAT a9                HEAD 'Contents'
    SQL> COLUMN extents               FORMAT 999,999           HEAD 'Extents'
    SQL> COLUMN blocks                FORMAT 999,999           HEAD 'Blocks'
    SQL> COLUMN bytes                 FORMAT 999,999,999       HEAD 'Bytes'
    SQL> COLUMN segtype               FORMAT a12               HEAD 'Segment Type'
    SQL>
    SQL> BREAK ON tablespace_name ON report
    COMPUTE SUM OF extents   ON report
    SQL> SQL> COMPUTE SUM OF blocks    ON report
    SQL> COMPUTE SUM OF bytes     ON report
    SQL>
    SQL>
    SQL> SELECT
      2      b.tablespace          tablespace_name
      3    , a.username            username
      4    , a.sid                 sid
      5    , a.serial#             serial_id
      6    , b.contents            contents
      7    , b.segtype             segtype
      8    , b.extents             extents
      , b.blocks              blocks
      9   10    , (b.blocks * c.value)  bytes
    FROM
    11   12      v$session     a
    13    , v$sort_usage  b
    14    , (select value from v$parameter
    15       where name = 'db_block_size') c
    16  WHERE
    17        a.saddr = b.session_addr
    18  /
    Tablespace Name Username           SID   Serial# Contents  Segment Type  Extents   Blocks        Bytes
    TEMP          SYSTEM            1333      4725 TEMPORARY LOB_DATA            1      128    1,048,576
                    SYSTEM            1562       444 TEMPORARY SORT               89   11,392   93,323,264
                    SYSADM            1602        80 TEMPORARY LOB_DATA            1      128    1,048,576
                    SYSTEM            1613     18693 TEMPORARY SORT               89   11,392   93,323,264
    sum                                                                          180   23,040  188,743,680
    SQL>

  • Oracle Alert - ORA-1652 Unable to extend the Temp Segment

    Hi Team,
    During our DB Reorg we have received the Oracle Alert - ORA-1652 Unable to extend the Temp Segment by 15485 in tablespace :PSAPBTABI.
    Our DBReorg got cancelled..
    We would like to know how we can resolve the above error so that we can reschedule the DB Reorg activity..
    Regds,
    Satyanarayana N

    Hi,
    If you are using UNIX OS, the temp files are created as sparse file due to the OS functionality.
    Altough you have assigned 49 GB the actual size will be very very less.
    You can check the actula file size with du or df command. To remove these sparse condition you will need to perform certain steps.
    Read this note and execute the steps given and then see the file size difference.
    548221 - Temporary Files are created as sparse files
    Do update the message if the OS is different.
    Regards,
    Nilesh

  • ORA-01652 in TEMP Tablespace

    Hi,
    We have the following errors:
    RMAN> crosscheck archivelog all;
    starting full resync of recovery catalog
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of crosscheck command at 01/07/2009 14:26:10
    RMAN-03014: implicit resync of recovery catalog failed
    RMAN-03009: failure of full resync command on default channel at 01/07/2009 14:26:10
    ORA-01652: unable to extend temp segment by in tablespace
    RMAN>
    We have tried to increase the size of the TEMP tablespace, but this operation keeps using up the entire temp tablespace. It's the temp tablespace in the target database that is filling up.
    We cannot keep increasing the size of the TEMP ts to fill the disk.
    We have also tried to create a new repository but this had the same outcome.
    I reckon there is something in the database tables, as one of our backups used the target control file as its repository. Should I remove the entries from these tables in the target tablespace to make the repository think there is no re-synching to be done?
    Regards,
    Tim.

    If you are sure that it is on the target DB what you can do is enable a trace for the event to see what triggers this error
    it doesnt have to be on temporary table because there are temp segments on normal tables used for index creation type operations as well so you need to find the problem before assuming it is temp tablespace error
    alter system set events '1652 trace name errorstack level 1';
    to turn off
    alter system set events '1652 trace name context off';
    If you cant find anything from trace then you can send the trace output here maybe somebody can catch something.
    Coskan Gundogar
    http://coskan.wordpress.com
    Edited by: coskan on Mar 30, 2009 4:28 PM

  • Need help about : ORA-14450 error

    ORA-14450: attempt to access a transactional temp table already in use
    Cause: An attempt was made to access a transactional temporary table that has been already populated by a concurrent transaction of the same session.
    what can i do to solve this error
    need help immediately

    Sounds like you have a transaction-specific global temporary table (ON COMMIT DELETE ROWS) and that mulitple transactions try to use it at the same time.
    You could make the table session-specific (ON COMMIT PRESERVE ROWS).
    BUT, there may be a reason why it was created this way and you therefore have a problem somewhere in the program logic.

  • ORA-30928: "Connect by filtering phase runs out of temp tablespace"

    i have created a query that is sued to display a data in a label. This particular query will then be stored into a program that we use. The query runs just fine until this morning when it returns the error ORA-30928: "Connect by filtering phase runs out of temp tablespace". I have Googled and found out that I can do any of the following:
    Include a NO FILTERING hint - but did not work properly
    Increase the temp tablespace - not applicable to me since this runs in a production server that I don't have any access to.
    Are there other ways to fix this? By the way, below is the query that I use.
    SELECT * FROM(
    SELECT
    gn.wipdatavalue
    , gn.containername
    , gn.l
    , gn.q
    , gn.d
    , gn.l2
    , gn.q2
    , gn.d2
    , gn.l3
    , gn.q3
    , gn.d3
    , gn.old
    , gn.qtyperbox
    , gn.productname
    , gn.slot
    , gn.dt
    , gn.ws_green
    , gn.ws_pnr
    , gn.ws_pcn
    , intn.mkt_number dsn
    , gn.low_number
    , gn.high_number
    , gn.msl
    , gn.baketime
    , gn.exptime
    , NVL(gn.q, 0) + NVL(gn.q2, 0) + NVL(gn.q3, 0) AS qtybox
    , row_number () over (partition by slot order by low_number) as n
    FROM
    SELECT
    tr.*
    , TO_NUMBER(SUBSTR(wipdatavalue, 1, INSTR (wipdatavalue || '-', '-') - 1)) AS low_number
    , TO_NUMBER(SUBSTR(wipdatavalue, 1 + INSTR ( wipdatavalue, '-'))) AS high_number
    , pm.msllevel MSL
    , pm.baketime BAKETIME
    , pm.expstime EXPTIME
    FROM trprinting tr
    JOIN CONTAINER c ON tr.containername = c.containername
    JOIN a_lotattributes ala ON c.containerid = ala.containerid
    JOIN product p ON c.productid = p.productid
    LEFT JOIN otherdb.pkg_main pm ON trim(p.brandname) = trim(pm.pcode)
    WHERE (c.containername = :lot OR tr.SLOT= :lot)
    )gn
    LEFT JOIN otherdb.intnr intn ON TRIM(gn.productname) = TRIM(intn.part_number)
    connect by level <= HIGH_NUMBER + 1 - LOW_NUMBER and LOW_NUMBER = prior LOW_NUMBER and prior SYS_GUID() is not null
    ORDER BY low_number,n
    WHERE n LIKE :n AND wipdatavalue LIKE :wip AND ROWNUM <= 300 AND wipdatavalue NOT LIKE 0
    I am using Oracle 11g too.
    Thanks for the help everyone.

    Hi,
    The documentation implies that the START WITH and CONNECT BY clauses should come before the GROUP BY clause. I've never known it to make a difference before, but you might try putting the GROUP BY clause last.
    If you're GROUPing by LEVEL, what's the point of SELECTing MAX (LEVEL)? MAX (LEVEL) will always be the same as LEVEL.
    What are you trying to do?
    Post some sample data (CREATE TABLE and INSERT statements) and the results you want from that data, and somebody will help you get them.

  • Need help in understanding the error ORA-01843: not a valid month - ECX_ACT

    Hello All,
    We need help in understanding the Transaction Monitor -> Processing Message (error "ORA-01843: not a valid month - ECX_ACTIONS.GET_CONVERTED_DATE").
    And how to enable the log for Transaction Monitor -> Processing Logfile.
    Actually we are trying to import the Purchase Order XML (OAG) into eBusiness Suite via BPEL Process Manager using the Oracle Applications Adapter. The process is working fine with expected payload until it reaches the XML Gateway Transaction Monitor, where we are getting this error.
    thanks
    muthu.

    Hello All,
    We need help in understanding the Transaction Monitor -> Processing Message (error "ORA-01843: not a valid month - ECX_ACTIONS.GET_CONVERTED_DATE").
    And how to enable the log for Transaction Monitor -> Processing Logfile.
    Actually we are trying to import the Purchase Order XML (OAG) into eBusiness Suite via BPEL Process Manager using the Oracle Applications Adapter. The process is working fine with expected payload until it reaches the XML Gateway Transaction Monitor, where we are getting this error.
    thanks
    muthu.

  • After many months of non-use, when I opened Photoshop CS4 Extended, I got an error message 148.3.  "Licensing for this product has stopped working."  I need help, please.

    After many months of non-use, when I tried to open Photoshop CS4 Extended, I got an error message 148.3.  "Licensing for this product has stopped working."  I need help, please.

    Error "Licensing has stopped working" | Windows
    Error "Licensing has stopped working" | Mac OS
    Mylenium

  • Error at new statement on extended program check need help

    Hi all ,
                       This is the code :
    LOOP AT i_stocks INTO wa_stocks WHERE NOT pulkt IS INITIAL AND
                             NOT bstkt IS INITIAL AND
                             NOT fprctr IS INITIAL AND
                             ( write_off_fix <> 0 OR
                               write_off_pup <> 0 ).
        AT NEW fprctr.
          CLEAR: l_prctrsum_fix, l_prctrsum_pup.
        ENDAT.
        IF wa_stocks-bukrs <> lastbukrs.
          lastbukrs = wa_stocks-bukrs.
          PERFORM document_header USING xreversal.
          i_counter = 1.
          CLEAR lastkostl.
        ENDIF.
        ADD wa_stocks-write_off_pup TO l_prctrsum_pup.
    ENDLOOP
    On Extended program check its says :
    The LOOP statement processing will be limited
    (FROM, TO and WHERE additions in LOOP)
    Interaction with group change processing (AT NEW, ...) is undefined
    (The message can be hidden with "#EC *)
    It means at statement   AT NEW fprctr .
    Need help , How can i resolve this error ?
    Regards .
    Edited by: ujjwal dharmak on Feb 19, 2010 9:55 AM
    Moderator message - Moved to the correct forum
    Edited by: Rob Burbank on Feb 19, 2010 9:04 AM

    Since you are using where condition in loop statement and also using the control break statement thats why it is showing the error for you.
    So if you want you can do like this
    loop at itab into wa.
    if not  wa-f1 is initial ....<and other conditions>.
    continue.
    endif.
    at new   f1.
    endat.
    endloop.
    It will resolve your problem but I am having the doubt how the at new will work properly...
    Regards
    Shiba Prasad Dutta

  • Need help on transportable tablespace, after convert and move datafile over

    I need help on transportable tablespace, after convert and move datafile over the target server, How do I plug them in to the ASM instance?
    And How do I start the database ? what controlfile I should use?
    Thanks.

    I got error like this:
    RMAN> copy datafile '/oracle_backup/stage/ar.269.775942363' to '+RE_DAT';
    Starting backup at 29-MAY-12
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 05/29/2012 17:46:21
    RMAN-20201: datafile not found in the recovery catalog
    RMAN-06010: error while looking up datafile: /oracle_backup/stage/ar.269.775942363
    How to deal with this?
    I deleted all the current target tablespaces including contents. Do I have to do anything to make the database recognize those converted datafiles?

  • I need help getting past the installation error "windows cannot fint TEMP file"

    I need help getting past the installation error "windows cannot find TEMP file"

    Seems like some who have tried two devices on the JMICRON IDE port have had trouble. Try without the hard drive and see if you get that error. If that is the case I would try a PATA to SATA converter for your hard drive and connect it to one of the Intel SATA Ports.
    http://www.newegg.com/Product/Product.aspx?Item=N82E16812107112
    http://www.amazon.com/ADDONICS-IDE-SERIAL-CONVERTER-ADIDESA/dp/B000090169
    http://www.compusa.com/products/product_info.asp?product_code=339900#ts
    http://www.xpcgear.com/ide2sata.html
    http://www.ubuyitdirect.com/-p-1045.html?currency=USD
    http://www.satasite.com/sata-ide-converter.htm
    http://www.pcgears.com/default.aspx?oid=187150
     

Maybe you are looking for

  • HT201401 Is there a way to fix/override the silent switch on my iphone 4?

    The silent switch on my phone doesn't do anything anymore. Sometimes my phone will vibrate randomly for prolonged periods of time as it switches itself on and off silent mode. Any advice is welcome.

  • Account assignment tab is missing in PR(item details)

    Hi When we create PR,we select 'K' in the Account assignment in the item overview details,which will allow us to fill the details for G/L account and cost center in the item details,but to surprise account assignment tab is missing ,even we checked t

  • Video transfer question for older mac 10.5.8

    I am trying to figure out how to transfer video from my JVC GR-D770U video camera to my PowerPC G5 running 10.5.8. I have the proper firewire cable but have been unable to find answer for my question on the internet that is specific to my situation.

  • Read Differentiation Value in Real Time

    HI! I have a analog input, and I am going to read the differentiation value of analog input in REAL time! I did try the differentiation.vi in Labview before, unfortunately it didn't work properly! Can anybody help me to solve this problem please! Tha

  • After 1 day, my iPhone 5S no longer recognizes my thumbprint.

    It seems that my thumbprint is no longer recognized the day after I set it.  I seem to have to make a new one each day.  I have the iPhone 5S and are running iOS 7.0.2