Af:table - Programmatic mandatory check on a column

I have a usecase wher in, i need to programatically apply a mandatory check on a column inside a table.
User can add multiple rows in a table and only on the click of a button(say "Save"), all the rows in the table should be validated and those with missing value for mandatory column fields should be marked in RED. Say if user, adds 4 rows consecutively and he doesnt provide value for mandatory column of first and last rows, then tht specific fields should be marked in red.
Any pointers?

Hi,
create a boolen variable in managed bean and bind with mandatory field.
<af:inputText>
required="#{EditDetails.valueReqXX}"
binding="#{EditDetails.reasonCommentXX}"
</af:inputText>managed bean code :
private Boolean valueReqXX;
private RichInputText reasonCommentXX;
    public void setValueReqFhlmc(Boolean valueReqXX) {
        this.valueReqXX = valueReqXX;
    public Boolean getValueReqXX() {
        return valueReqXX;
    public void setReasonCommentXX(RichInputText reasonCommentXX) {
        this.reasonCommentXX= reasonCommentXX;
    public RichInputText getReasonCommentXX() {
        return reasonCommentXX;
public String buttonAction()
                valueReqXX = true;//or false based on logic
                AdfFacesContext.getCurrentInstance().addPartialTarget(reasonCommentXX);
return null;
}~Abhijit
Edited by: Abhijit Dutta on Oct 20, 2011 6:19 PM
Edited by: Abhijit Dutta on Oct 20, 2011 7:02 PM

Similar Messages

  • Check 2 tables(Table A and Table B) and figure out new columns present in Table A and add these new columns to Table B

    How to check 2 tables(Table A and Table B) and figure out new columns present in Table A and add these new columns to Table b.
    DDL-
    Create table A
    ( A INT,
    B INT,C VARCHAR(2)
    Create table B
    A INT,
    B INT
    Any advice on the best approach or method to achieve this.
    I understand that I need to check the schema of the columns and then do a match between 2 tables and find new columns and then alter my target table
    Mudassar

    Can you try this..
    CREATE TABLE A ( A INT, B INT, C VARCHAR(2) )
    CREATE TABLE B ( A INT, B INT )
    Declare @ColumnVar nvarchar(128),@DatatypeVar nvarchar(128)
    SELECT @ColumnVar=x.COLUMN_NAME, @DatatypeVar=x.DATA_TYPE
    FROM INFORMATION_SCHEMA.COLUMNS AS x
    WHERE TABLE_NAME = 'A'
    AND NOT EXISTS ( SELECT *
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE TABLE_NAME = 'B'
    AND COLUMN_NAME = x.COLUMN_NAME )
    Declare @SQL VarChar(1000)
    SELECT @SQL = 'ALTER TABLE B ADD ' + @ColumnVar + ' '+ @DatatypeVar
    Exec (@SQL)
    select * from B
    Please Mark This As Answer if it helps to solve the issue
    http://stackoverflow.com/questions/2614101/alter-table-my-table-add-column-int

  • Can you programmatically change the width of columns in a table control\indicator

    Is it possible to programmatically change the width of columns in a table control\indicator ie to fit to width of the data or in my case the header information.

    Create a property node (or reference) and use the 'Active Cell' property to select which column you want to change and then use the 'Cell size'--> 'Width' property to change the size.
    "There is a God shaped vacuum in the heart of every man which cannot be filled by any created thing, but only by God, the Creator, made known through Jesus." - Blaise Pascal
    Attachments:
    table.vi ‏33 KB

  • Check box als column in a standard table, how to get the selected row

    Dear experts,
    I habe standard tablt with check box as column. Now I want to get the current selected row structure and do some changes. How could I solve this problem? till now I just know to get the structure via lead selection.
    lo_node->get_element().
    lo_element = lo_node->get_static_attributes ( static_attributes = ls_row).
    How could I get the element through check-box in stead of lead selection. Many thanks!

    check this code
    To get the selected row number
    data: lr_element type ref to if_wd_context_element,
              lv_index type i.
      lr_element = wdevent->get_context_element( name = 'CONTEXT_ELEMENT'  ).
      lv_index = lr_element->get_index( ).
    Thanks
    Bala Duvvuri

  • While defining a columnar table, what is the purpose of column store type

    Hi folks
    I have two questions related to columnar table definition.
    1. What is the purpose of column store type.
    While defining a columnar table, what is the purpose of column store type (STRING ,CS_FIXEDSTRING,CS_INT etc) , when I define a table using the UI I see that the column is showing STRING but when I goto EXPORT SQL it does not show.  Is this mandatory or optional ?
    2.VARCHAR Vs. CHAR - In the UI when I create the table I do not see the CHAR option , but I do see lot of discussion where people are using CHAR for defining the columnar table. Not sure why UI dropdown does not show it. I also read that we should avoid using VARCHAR as those columns are not compressed, is that true, I thought the column store gives compression for all the columns. Are there certain columns which cannot be compressed .
    Please let me know where I can find more information about these two questions.
    Poonam

    Hi Poonam
    the CS_-data types are the data types that are used internally in the column store. They can be supplied but it is not at all required or recommended to do so.
    SAP HANA will automatically use the correct CS_-data type for every SQL data type in your table definitions.
    To be very clear about this: don't use the CS_-data types directly. Just stick to the SQL data types.
    Concerning VARCHAR vs CHAR: fixed character data types are not supported anymore and don't show up anymore in the documentation.
    I have no idea why you believe that VARCHAR columns are not compressed but this is just a myth.
    create column table charcompr (fchar char(20), vchar varchar(20));
    insert into charcompr (
        select lpad ('x', to_int (rand()*20), 'y'), null from objects cross join objects);
    -- same data into both columns
    update charcompr set vchar = fchar;
    -- perform the delta merge and force a compression optimization
    merge delta of charcompr;
    update charcompr with parameters ('OPTIMIZE_COMPRESSION' ='FORCE');
    -- check the memory requirements
    select COLUMN_NAME, MEMORY_SIZE_IN_TOTAL, UNCOMPRESSED_SIZE, COUNT, DISTINCT_COUNT, COMPRESSION_TYPE
    from m_cs_columns where table_name ='CHARCOMPR'
    COLUMN_NAME    MEMORY_SIZE_IN_TOTAL    UNCOMPRESSED_SIZE   COUNT   DISTINCT_COUNT  COMPRESSION_TYPE
    FCHAR       3661                    70285738            6692569 20              RLE
    VCHAR       3661                    70285738            6692569 20              RLE
    We see: compression and memory requirements are the same for both fixed and variable character sizes.
    - Lars

  • Using '=' to check for NULL column value

    We are currently encountering an issue where 10.1.0.5 is happily accepting a check on a column for a null value with what I have always known to be an invalid syntax.
    For instance:
    select col1 from my table where col1=null
    Although this is wrong and we are working on locating the queries formatted as such, what I am wondering is why is it working on the 10.1.0.5 version but we cannot get the same query to execute on 8i, 9i, 10.2.0...? Is there a flag that can be enabled to allow this compare?

    I am familiar with the correct syntax to be using. What I am looking for is a possible explanation as to why the query below returns the correct results on 10.1.0.5 and returns nothing in all other versions. I would expect the same behavior across all instances. See the two lines in bold "AREA=NULL" and "SUBAREA=NULL"
    SELECT DISTINCT
    UNIQID,
    MGRCOMMENT,
    REQ.CREATED_BY CREATED,
    C2.CNAME DEVELOPER,
    C5.CNAME PRODMGR,
    C3.CNAME ASSIGNED,
    C4.CONTACTID CURRENTUSER,
    ID,
    STATUSNAME,
    REQ.STATUS STATUSID,
    PRIORITYNAME,
    TITLE,
    MAS1.MODULENAME,
    MAS1.AREANAME,
    MAS1.SUBAREANAME,
    MIN1.MODULE,
    MIN2.AREA,
    MIN3.SUBAREA
    FROM REQ,
    PRIORITY,
    STATUS,
    (SELECT FIRST_VALUE(M1.MODULENAME)
    OVER (PARTITION BY REQUNIQID ORDER BY MODULENAME ROWS UNBOUNDED PRECEDING) MODULENAME, FIRST_VALUE(A1.AREANAME)
    OVER (PARTITION BY REQUNIQID ORDER BY AREA ROWS UNBOUNDED PRECEDING) AREANAME, FIRST_VALUE(SA1.SUBAREANAME)
    OVER (PARTITION BY REQUNIQID ORDER BY SUBAREANAME ROWS UNBOUNDED PRECEDING) SUBAREANAME, REQUNIQID
    FROM REQMOD, MOD M1, ARA A1, SBARA SA1
    WHERE M1.MODULEID = REQMOD.MODULE
    AND A1.AREAID = REQMOD.AREA
    AND SA1.SUBAREAID = REQMOD.SUBAREA) MAS1,
    (SELECT FIRST_VALUE(C2.CNAME) OVER (PARTITION BY REQUNIQID ORDER BY CNAME ROWS UNBOUNDED PRECEDING) CNAME, REQUNIQID
    FROM REQ_ASSIGN, CONTACT C2
    WHERE C2.CONTACTID = REQ_ASSIGN.CONTACTID
    AND ASSIGNMENT_TYPE=2) C2,
    (SELECT FIRST_VALUE(C5.CNAME) OVER (PARTITION BY REQUNIQID ORDER BY CNAME ROWS UNBOUNDED PRECEDING) CNAME, REQUNIQID
    FROM REQ_ASSIGN, CONTACT C5
    WHERE C5.CONTACTID = REQ_ASSIGN.CONTACTID
    AND ASSIGNMENT_TYPE=1) C5,
    (SELECT FIRST_VALUE(C3.CNAME)
    OVER (PARTITION BY REQUNIQID ORDER BY CNAME ROWS UNBOUNDED PRECEDING) CNAME, REQUNIQID
    FROM REQ_ASSIGN, CONTACT C3
    WHERE C3.CONTACTID = REQ_ASSIGN.CONTACTID
    AND ASSIGNMENT_TYPE<>2
    AND ASSIGNMENT_TYPE<>1) C3,
    (SELECT DISTINCT REQUNIQID, CONTACTID FROM REQ_ASSIGN WHERE CONTACTID=5) C4,
    (SELECT DISTINCT REQUNIQID, MODULE FROM REQMOD WHERE MODULE=1) MIN1,
    *(SELECT DISTINCT REQUNIQID, AREA FROM REQMOD WHERE AREA=NULL) MIN2,*
    *(SELECT DISTINCT REQUNIQID, SUBAREA FROM REQMOD WHERE SUBAREA=NULL) MIN3,*
    REQCOMMENTS
    WHERE PRIORITY.PRIORITYID = REQ.PRIORITY
    AND STATUS.STATUSID = REQ.STATUS
    AND MAS1.REQUNIQID = REQ.UNIQID
    AND C2.REQUNIQID = REQ.UNIQID
    AND C5.REQUNIQID = REQ.UNIQID
    AND C3.REQUNIQID = REQ.UNIQID
    AND C4.REQUNIQID = REQ.UNIQID
    AND MIN1.REQUNIQID = REQ.UNIQID
    AND MIN2.REQUNIQID = REQ.UNIQID
    AND MIN3.REQUNIQID = REQ.UNIQID
    AND REQCOMMENTS.REQUNIQID = REQ.UNIQID
    AND REQ.PROJECTID = 3;

  • Check on spatial column

    I have a table Entity2 with two spatial attributes (ghost and geometry) and I want add a topological constraints between them. Why does the following sql string do an error?
    ALTER TABLE Entity2 ADD CHECK (SDO_GEOM.RELATE(ghost,'inside+coveredby',geometry,0.005));

    This is an area I have been looking into a lot recently and am putting the final touches together on a "white paper" on this topic to be hosted on my website.
    The Oracle documentation says:
    Conditions of check constraints cannot contain the following constructs:
    1 Subqueries and scalar subquery expressions
    2 Calls to the functions that are not deterministic (CURRENT_DATE, CURRENT_TIMESTAMP, DBTIMEZONE, LOCALTIMESTAMP, SESSIONTIMEZONE, SYSDATE, SYSTIMESTAMP, UID, USER, and USERENV)
    3 Calls to user-defined functions
    4 Dereferencing of REF columns (for example, using the DEREF function)
    5 Nested table columns or attributes
    6 The pseudocolumns CURRVAL, NEXTVAL, LEVEL, or ROWNUM
    7 Date constants that are not fully specified
    Now 1 is allowed in the SQL92 standard (ie CHECK constraints with SubQueries or via ASSERTIONS) but Oracle does not support them.
    2 is a problem because sdo_geom.relate is not deterministic as can be seen from:
    SELECT object_name,
           procedure_name,
          deterministic
      FROM all_procedures
    WHERE owner = 'MDSYS'
       AND object_name = 'SDO_GEOM'
       AND procedure_name = 'RELATE'3 means you can't create your own function around this whose return type would be deterministic. Even if SDO_GEOM.RELATE was deterministic you can't use it because it is still classed as a user-defined (MDSYS user) function (try it with one of the SDO_GEOM deterministic functions etc SDO_MBR() IS NOT NULL to see that this is the case).
    The others don't affect this discussion.
    The only way that I can see that you can do this is to create a trigger.
    create trigger entity2_bi before insert
    on entity2
    As
    begin
    IF sdo_geom.relate(:new.ghost,'inside+coveredby',:new.geometry,0.005) <. 'TRUE' THEN
    raise_application_error(020000,'GHOST is not inside or covered by GEOMETRY',true);
    END IF;
    End;
    Hope this helps
    regards
    S

  • Which table stores the value of status column in leave request.

    Which table stores the value of status column in leave request.If i give pernr ,absence type and date how would i get the status
    Thanks
    Bala Duvvuri

    Hi,
    PTREQ_ACTOR      -              Request Participant
    PTREQ_ATTABSDATA    -           Request Data for Attendances/Absences
    PTREQ_BATCH              -      Time Stamp for Run of Background Jobs
    PTREQ_CKEY_MAPP      -        Cache Assignment Table
    PTREQ_HEADER             -      Request Header
    PTREQ_ITEM_TYPES       -        Request Item Types
    PTREQ_ITEMS                  -  Request Items
    PTREQ_NOTICE                -   Note for Request
    PTREQ_STATUS_CHK      -         Check Methods for Status Transitions
    PTREQ_STATUS_TRA      -         Status Transfers
    PTREQ_TYPE                    - Request Types
    PTREQ_XFEREVENTS       -        Permitted Status Transitions
    PTREQ_XFEREVNT_T        -       Texts for Status Transitions
    Value of staus column you can check it PTREQ_STATUS_CHK

  • Mandatory check failed for attribute process type of business object

    Hi Guys,
       Im facing an error with the Mandatory check failed for the attribute process type of the business object activity.
    I have the subscription business transaction customizing subscription assigned
    and the transaction types are visible when I create the activity but when I assign the transaction type then the following error is seen

    Hi,
    did you also synchronize the adapter object CRM_DNL_PROCTYP?
    Is the CDB table CDBC_PROC_TYPE properly filled in CDB respectively in your local DB?
    Regards,
    Wolfhard

  • Creating rich table programmatically

    hi all!
    I'm using ADF 11g v2.
    I was able to create the adf table programmatically but the the columns does not displays. I inspect the it doesn't have javax.faces.webapp.COMPONENT_IDS key in the properties, is this the reason why the column will not displays? If so, how to add it in the table and columns?
    here's my code snippet:
    RichTable myTable = new RichTable();
    myTable.setId('t1');
    myTable.setRowBandingInterval(0);
    myTable.setValueExpression("value", resolveExpression('#{bean.data}'));
    RichOutputText myText = new RichOutputText();
    myText .setId('ot1');
    myText.setValue("#{row.col1}" );
    RichColumn myCol = new RichColumn();
    myCol.setId('r1');
    myCol.setSortable(false);
    myCol.setHeaderText('Col1')
    myCol.getChildren().add(myText);
    myTable.getChildren().add(myCol);
    public static Object resolveExpression(String expression) {
    FacesContext facesContext = getFacesContext();
    Application app = facesContext.getApplication();
    ExpressionFactory elFactory = app.getExpressionFactory();
    ELContext elContext = facesContext.getELContext();
    ValueExpression valueExp =
    elFactory.createValueExpression(elContext, expression,
    Object.class);
    return valueExp.getValue(elContext);
    Where did I miss? Btw, the fething record keeps on spinning until it hangs. Thank in advance.

    hi Frank,
    Thanks for replying.
    Yes, the data is an ArrayList. And have typo error in the last post, the Fetching Data message displays endlessly but it doesn't hang and the table has var attribute which is "row".
    I bind the #{bean.data} to a declarative table and it is working fine. But the implementation is to be programmatic :-)

  • Create ADF Table programmatically.

    I'm trying to populate an af:table programmatically from the backing bean. I have successfully generated the table and the rows/columns. I'm however unable to specify the value of each cell.
    Here's my code snippet for populating a dummy table with just one column displaying employee's name.
    public class Employee {
          private String name;
          // A bean class with getters/setters
    public RichTable generateTable(){
          //create an array list of Employee as data
          List<Employee> data = createSampleData(); 
          RichTable _t = new RichTable();
          //set id, visible, etc. omitted.
          _t.setValue(data);
          _t.setVar("row");
          RichColumn rc = new RichColumn();
          RichOutputText rot = new RichOutputText();
    /**** Here's where the problem occurs ****/
         rot.setValue("#{row.name}");
    //set id, header etc for RichColumn. omitted
    //add output text and rich column as children to the table. omitted
    return _t;
    Using the codes shown I can get the table rendered with however many rows I created in the array list. Yet in each cell, instead having the name of the employee, the table shows the string #{row.name}
    The EL is not resolved but interpreted as a literal string.
    How can I set the value of the output text to refer to the value of the name attribute of each row?
    Thanks

    Hi,
    ELContext elContext = FacesContext.getCurrentInstance().getELContext();
    ExpressionFactory efact = FacesContext.getCurrentInstance(). getApplication().getExpressionFactory();
    ValueExpression valExpr = efact.createValueExpression( elContext,elExpression,Object.class);
    rot.setValueExpression( "value", valExpr);
    Frank

  • Integrity check fails on column key

    Dear DBA's,
    I am getting error while creating encrypted tablespace "ORA-S8342: Integrity check fails on column key"
    actually i am trying to work on Wallet,
    I created wallet key without auto login option initially and i created the tablespaces, user and tables associated to the tablespace.
    after that i dropped the tablespace, user and tables as well as wallet key using Metalink ID 757936.1.
    after that i created wallet key using orapki option after I tried to create the tablespace it is giving above error.
    kindly help me how to resolve this issue.
    I have one doubt that we can create encrypted tablespace only ones for a database instance?
    to create one more encrypted tablespace what will be the procedure to remove the previous encrypted tablespace?
    Best Regards,
    SG

    after that i created wallet key using orapki option after I tried to create the tablespace it is giving above error.Please log a SR for this issue.
    I have one doubt that we can create encrypted tablespace only ones for a database instance?You can create more than one.
    to create one more encrypted tablespace what will be the procedure to remove the previous encrypted tablespace?Drop the encrypted tablespace like dropping any other tablespace -- Use "DROP TABLESPACE <tablespace name> INCLUDING CONTENTS AND DATAFILES;" command.
    See this link in addition to Oracle documentation -- http://www.oracle-base.com/articles/11g/TablespaceEncryption_11gR1.php
    Thanks,
    Hussein

  • Putting a check box above column for selection in WD ALV

    Hi,
    Can anyone provide me a code snippet and help me how I can
    provide a check box above column for selection in WD ALV.
    Best Regards
    Sid

    Hi Sid,
    As far as I know we cannot put checkboxes directly above the Column headers.
    You can achieve this functionality in a round above method
    You can create a group of checkboxes above your ALV table with names of  columns to be selected beside each check box and proceed with your further processing.
    Also If you are just looking at which columns you need to select to be shown on the
    ALV output
    data: lr_standard_functions type ref to if_salv_wd_std_functions.
    lr_standard_functions ?= wd_this->r_table.
    lr_standard_functions->set_column_selection_allowed( ' ' ).
    Hope this is of some help.
    Regards,
    Ismail.
    Edited by: Ismail Basha on Jan 23, 2008 1:47 PM
    Edited by: Ismail Basha on Jan 24, 2008 3:23 AM

  • Warnings  Pool or cluster table selected to check/collect statistics

    Dear all,
    I am getting error in in db13 backup.
    We are using Sap Ecc5 and
    oracle 9i on Window 2003.
    Production Server I am facing problem suddenly in db13 the UpdateStatsEnded with Return code:    0001 Success with warnings   
    BR0819I Number of pool and cluster tables found in DDNTT for owner SAPPRD: 169
    BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.EPIDXB
    BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.EPIDXC
    BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.GLSP
    BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.GLTP
    BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.KAPOL
    BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.KOCLU
    BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.M_IFLM
    BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.VBCLU
    BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.VBFCL
    And in db02      
    Missing in R/3 DDIC  11   index
    MARA_MEINS
    MARA_ZEINR
    MCHA_VFDAT
    VBRP_ARKTX
    VBRP_CHARG
    VBRP_FKIMG
    VBRP_KZWI1
    VBRP_MATKL
    VBRP_MATNR
    VBRP_SPART
    VBRP_WERKS
    Please guide steps   how to build index  and Pool or cluster table problem.
    Thanks,
    Kumar

    > BR0819I Number of pool and cluster tables found in DDNTT for owner SAPPRD: 169
    > BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.EPIDXB
    > BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.EPIDXC
    > BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.GLSP
    > BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.GLTP
    > BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.KAPOL
    > BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.KOCLU
    > BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.M_IFLM
    > BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.VBCLU
    > BR0871W Pool or cluster table selected to check/collect statistics: SAPPRD.VBFCL
    Upto Oracle 9i the rulebased optimizer was still used for Pool/Clustertables for reasons of plan stability (e.g. always take the index).
    To ensure that this is the case, these tables/indexes mustn't have CBO statistics.
    Therefore these tables are usually excluded from getting CBO statistics via an DBSTATC entry. You can modify this setting in transaction DB21.
    > And in db02      
    >
    >
    Missing in R/3 DDIC  11   index
    >  MARA_MEINS
    >  MARA_ZEINR
    >  MCHA_VFDAT
    >  VBRP_ARKTX
    >  VBRP_CHARG
    >  VBRP_FKIMG
    >  VBRP_KZWI1
    >  VBRP_MATKL
    >  VBRP_MATNR
    >  VBRP_SPART
    >  VBRP_WERKS
    Well, these indexes have been setup just in the database and not (how it is supposed to be) via the SE11. As the indexes have a naming-scheme, that is not supported by the ABAP Dictionary, the easiest way to get away from the warnings is to check which columns are covered by the indexes, drop the indexes on DB level and recreate them via SE11.
    Best regards,
    Lars

  • Modify the Data Load wizard to remove the check for unique columns

    Hi,
    I'm trying to make a Data Loading Wizard into my application, which basically works nice except for one thing:
    I want to remove the check for unique columns, and insert ALL data which the users wants to upload.
    (Like the Data load utility under development).
    The reason is, that the data I want to upload is an export from my bank statements (in XLS / CSV format)
    And these exports don't have any primary key.
    Using the Apex wizard created Data Upload pages, I will loose data in case I had two identical payments in a day.
    Is there a way to do this, while keeping the pages created by the wizard to make Data Loading pages?
    apex 4.2.1

    I would suggest to load the data into a view and process the records into the real table(s) with instead-of-triggers. When you add a "1=2" where clause to the view, there never is any data and everything will be loaded.
    Otherwise you have to have a "real" PK value, like a timestamp or a statement_nr+line_nr.

Maybe you are looking for

  • SQLPlus login hangs because of "Thread 1 cannot allocate new log"

    Hi to everybody! Could you please give an advice how to overcome the following situation. In my 10GR2 database I have destination for archive logs placed in ASM disk group. When suddenly this disk group becomes overfilled I can not login into the dat

  • QT Pro key is invalid after reinstall

    I had to reinstall my OS and all of my software and now my QT Pro Key that I purchased earlier this year is not valid after the reinstall of QT 7.  Any ideas why?  Apple won't help at all.  I would have to pay $50 for technical support, which is dumb

  • Process does not appear in Task Manager Details list

    Hello, I've run into a problem while developing on Windows 8.1 where if a process crashes with a segfault, it occasionally continues to hold onto the file but disappears from the Task Manager's Details tab. If I use Sysinternals Handle utility I can

  • ACE# sh script code - Error: Called API is invalid or non-existant

    What is this ?? ACE# dir disk0:    2846 Jun 14 2010 15:40:33 NORDICID_PROBE ACE# sh script code NORDICID_PROBE Error: Called API is invalid or non-existant Hardware is ACE-4710-K9 and software A3(2.7) The probe itself is functioning ok according to s

  • Asha 210 downloads but doesn't run apps

    Hello, I have just bought a nokia asha 210 phone. I connect to the Nokia Store, find and download an application for this phone. But at the end, it just shows me a filename (with .jar extension) and says "unknown state" and I can't locate the appliac