Why this request required 2 additional columns in GROUP BY

Hi all

This is my query:
SELECT "parent_level_id",
       "parent_level_name"
       "parent_level_id",                     
       "child_level_id",
       "child_level_name",
       "scenario_id",
       "scenario_name",
       "exported",
       "regress_cob",
       "scn_status_id",
       "tgt_scenario_name",
       "load_status_id",
       "load_count",
       "PRESENT_VALUE",
       "DELTA",
       "GAMMA",
       "VEGA",
       "PNL",
       "ORIGINAL_PRESENT_VALUE"

FROM
(
select   0-fssPV.feed_id                        as "parent_level_id",
         fssPV.feed_description                 as "parent_level_name",
         fssPV.book_id                          as "child_level_id",
         fssPV.book_display_name                as "child_level_name",
         fssPV.parent_scenario_id               as "scenario_id",
         fssPV.scenario_display_name            as "scenario_name",
         nvl(sc.exported, 'N')                  as "exported",
         nvl(fssPV.parent_regressed_cob_date,  fssPV.parent_cob_date)    as "regress_cob",
         fssPV.scn_status_id                    as "scn_status_id",
         fssPV.tgt_scenario_display_name        as "tgt_scenario_name",
         fssPV.load_status_id                   as "load_status_id",
         count(*)                               as "load_count",
        sum(fssPV.present_value)                as "PRESENT_VALUE",
         sum(fssPV.delta)                       as "DELTA",
         sum(fssPV.gamma)                       as "GAMMA",
         sum(fssPV.vega)                        as "VEGA",
         sum(fssPV.present_value) - sum (srbase.present_value) as "PNL",
         (
            select SUM(vsr.original_present_value) 

            from validated_position vp , validated_scenario_result vsr
            where
            VSR.FEED_INSTANCE_ID= fssPV.feed_instance_id
            AND VSR.COB_DATE= fssPV.cob_date
            and vsr.validated_position_id= vp.validated_position_id
             AND vsr.scenario_id in  (SELECT   distinct mn.node_id as "SCENARIO_ID"
                                       FROM     TABLE(pack_scenarios_overview.splitInListIntoLeaves(a_scenario_list, '$', l_cobdate)) nodeIds,
                                                marsnode mn
                                       WHERE    nodeIds.column_value = mn.node_id
                                       AND      mn.close_date is null
                                      )
                                      
                                     
         ) "ORIGINAL_PRESENT_VALUE" 
from   (

select fssTgts.*,
       mntgt.display_name        as "TGT_SCENARIO_DISPLAY_NAME",
       mnscenario.display_name   as "SCENARIO_DISPLAY_NAME",
       mnbook.display_name       as "BOOK_DISPLAY_NAME",
       fs.feed_description,
       sr.present_value,
       sr.delta,
       sr.gamma,
       sr.vega,
       p.position_id
from (
/** Treewalk to find Feed/Scenario dependencies **/
Select fssBooks.feed_id,
       fssLinks.cob_date,
       fssLinks.scenario_id,
       fssBooks.load_status_id,
       fssBooks.scn_status_id,
       fssBooks.tgt_scenario_id,
       fssBooks.book_id,
       fssBooks.regressed_cob_date,
       fssLinks.feed_instance_id,
       fssLinks.parent_cob_date,
       fssLinks.parent_tgt_scenario_id,
       fssLinks.parent_regressed_cob_date,
       fssLinks.parent_scenario_id,
       fssLinks.parent_feed_instance_id
from   (

/** Treewalk (backwards) to find underlying data over FSS control table **/
WITH fss AS
         /* Initial filter on feed_scenario_status for peformance           */
         /* cannot filter on scenario as we don't know the dependencies yet */
         ( select DISTINCT scenario_id,
                  f.cob_date,
                  f.scn_status_id,
                  f.regressed_cob_date,
                  f.tgt_scenario_id,
                  f.feed_id,
                  f.feed_instance_id
           from   feed_scenario_status f,
                  feed_group_xref fgx
           where    cob_date <= l_cobdate -- PVs for this cob must be loaded either today, or its regressed to a previous cob
           and    f.feed_id = fgx.feed_id
           and    fgx.feed_group_id like l_feed_group_id
           and    fgx.feed_id like l_feed_id
         )
  select   feed_instance_id,
           scenario_id,
           prior scenario_id,
           cob_date,
           feed_id,
           scn_status_id,
           regressed_cob_date,
           /* Need to maintain the root values to identify the scenarios that users are seeing */
           CONNECT_BY_ISLEAF "ISLEAF",
           CONNECT_BY_ROOT scenario_id        as "PARENT_SCENARIO_ID",
           CONNECT_BY_ROOT feed_id            as "PARENT_FEED_ID",
           CONNECT_BY_ROOT cob_date           as "PARENT_COB_DATE",
           CONNECT_BY_ROOT tgt_scenario_id    as "PARENT_TGT_SCENARIO_ID",
           CONNECT_BY_ROOT regressed_cob_date as "PARENT_REGRESSED_COB_DATE",
           CONNECT_BY_ROOT feed_instance_id   as "PARENT_FEED_INSTANCE_ID"
  from     fss
  start with fss.cob_date = l_cobdate

  connect by (prior fss.regressed_cob_date = fss.cob_date and
              prior fss.scenario_id = fss.scenario_id and
              prior fss.feed_id = fss.feed_id and
              prior fss.tgt_scenario_id is null
             ) -- Connect if regressed (rule: same feed/book/scenario, different cob)
          or (prior fss.tgt_scenario_id = fss.scenario_id and
              prior fss.cob_date = fss.cob_date and
              prior fss.feed_id = fss.feed_id and
              prior fss.feed_instance_id = fss.feed_instance_id
             ) -- and connect if paste as (rule: same feed/cob/book, different scenario)
  ) fssLinks,
  feed_scenario_status fssBooks
where isLeaf = 1
and   fssLinks.parent_feed_id = fssBooks.feed_Id
and   fssLinks.parent_cob_date = fssBooks.cob_date
and   fssLinks.parent_scenario_id = fssBooks.scenario_id
) fssTgts,
position p,
scenario_result sr,
marsnode mntgt,
marsnode mnbook,
marsnode mnscenario,
feed_static fs
where fssTgts.feed_id = fs.feed_id
and   fssTgts.parent_tgt_scenario_id = mntgt.node_id (+)
and   mntgt.close_date (+) is null
and   fssTgts.feed_instance_id = p.feed_instance_id
and   fssTgts.book_id = p.book_id
and   fssTgts.cob_date = sr.cob_date
and   fssTgts.scenario_id = sr.scenario_id
and   p.feed_instance_id = sr.feed_instance_id
and   p.position_id = sr.position_id
and   p.book_id = mnbook.node_id
and   mnbook.close_date is null
and   fssTgts.parent_scenario_id = mnscenario.node_id
and   mnscenario.close_date is null
) fssPV
left outer join scenario_control sc
  on fssPV.parent_feed_instance_id = sc.feed_instance_id
  and upper(fssPV.scenario_display_name) = upper(sc.scenario)
/* Join to SBM to calculate P&Ls */
left outer join scenario_base_map sbm
  on  fssPV.scenario_id = sbm.scenario_id
  and sbm.begin_cob_date <= l_cobdate
  and sbm.end_cob_date > l_cobdate
left outer join scenario_result srbase
  on  fssPV.cob_date = srbase.cob_date
  and fssPV.feed_instance_id = srbase.feed_instance_id
  and nvl(sbm.mapped_scenario_id, l_original_scn_id) = srbase.scenario_id
  and fssPV.position_id = srbase.position_id
/* Only display (root) scenarios that users have selected */
where fssPV.parent_scenario_id in (SELECT   distinct mn.node_id as "SCENARIO_ID"
                                   FROM     TABLE(pack_scenarios_overview.splitInListIntoLeaves(a_scenario_list, '$', l_cobdate)) nodeIds,
                                            marsnode mn
                                   WHERE    nodeIds.column_value = mn.node_id
                                   AND      mn.close_date is null
                                  )

group by fssPV.feed_id,
         fssPV.feed_description,
         fssPV.book_id,
         fssPV.book_display_name,
         fssPV.parent_scenario_id,
         fssPV.scenario_display_name,
         sc.exported,
         fssPV.parent_regressed_cob_date,
         fssPV.scn_status_id,
         fssPV.tgt_scenario_display_name,
         fssPV.load_status_id,
         fssPV.parent_cob_date
--         fssPV.feed_instance_id,
--         fssPV.cob_date
);
In this query for the initial section where I select the part "ORIGINAL_PRESENT_VALUE".
(
            select SUM(vsr.original_present_value) 

            from validated_position vp , validated_scenario_result vsr
            where
            VSR.FEED_INSTANCE_ID= fssPV.feed_instance_id
            AND VSR.COB_DATE= fssPV.cob_date
            and vsr.validated_position_id= vp.validated_position_id
             AND vsr.scenario_id in  (SELECT   distinct mn.node_id as "SCENARIO_ID"
                                       FROM     TABLE(pack_scenarios_overview.splitInListIntoLeaves(a_scenario_list, '$', l_cobdate)) nodeIds,
                                                marsnode mn
                                       WHERE    nodeIds.column_value = mn.node_id
                                       AND      mn.close_date is null
                                      )
                                      
                                     
         ) "ORIGINAL_PRESENT_VALUE" 
Even if fssPV.feed_instance_id and fssPV.cob_date are not used anywhere in the clause SELECT requires tobe added to the last clause GROUP BY else
the query if compile it successfully does giving "not a group of" error.

Can someone tell me why that is the problem and why these columns must be added to the final GROUP BY clause.

Rgds,
Aashish

Hi, Michael,

Aashish S. wrote:
Even if fssPV.feed_instance_id and fssPV.cob_date are not used anywhere in the clause SELECT requires tobe added to the last clause GROUP BY else
the query if compile it successfully does giving "not a group of" error.

In fact, you use both of these columns in the SELECT clause, when you calculate the original_present_value:

(
select SUM(vsr.original_present_value) 

from validated_position vp , validated_scenario_result vsr
where
VSR.FEED_INSTANCE_ID= fssPV.feed_instance_id
AND VSR.COB_DATE= fssPV.cob_date
and vsr.validated_position_id= vp.validated_position_id
AND vsr.scenario_id in  (SELECT   distinct mn.node_id as "SCENARIO_ID"
FROM     TABLE(pack_scenarios_overview.splitInListIntoLeaves(a_scenario_list, '$', l_cobdate)) nodeIds,
marsnode mn
WHERE    nodeIds.column_value = mn.node_id
AND      mn.close_date is null
)
) "ORIGINAL_PRESENT_VALUE" 

Since the scalar subquery is correlated to the fsspv.feed_instance_id and fsspv.cob_date, it is depenedant on these columns, the same, say TRUNC (fsspv.cobb_date, 'YEAR') is depenedant on fsspv.cob_date.

You will have to perhaps put the SUM in the main query, not the scalar subquery, or replace the scalar subquery with a join (probably faster). Without knowing your table, or the results you want from your data, I can't say more.

Whenever you have a problem, post a small example of data (TABLE CREATED and instructions INSERT for all tables) and the desired results from these data.
Simplify the problem as much as possible. In this case, I think you can show that the problem is using just two tables, the alias fsspv and mn ones.
If you can illustrate your problem using commonly available tables, like those of the scott schema, then you don't need to display all data; just the results you want.

Looks like you're doing something like this:

SELECT       job
,       COUNT (*)     AS cnt
,       (          -- Begin scalar sub_query to compute min_loc
            SELECT     MIN (loc)
          FROM     scott.dept
          WHERE     deptno     = e.deptno
       ) min_loc     -- End scalar sub_query to compute min_loc
FROM       scott.emp     e
GROUP BY  job
,            deptno     -- Omitting this causes ORA_00979: not a GROUP BY expression
;

When you really should do something like this:

SELECT       job
,       COUNT (*)     AS cnt
,       MIN ( (          -- Begin scalar sub_query to compute min_loc
            SELECT     loc
          FROM     scott.dept
          WHERE     deptno     = e.deptno
           ) ) min_loc     -- End scalar sub_query to compute min_loc
FROM       scott.emp     e
GROUP BY  job
;

to achieve these results:

JOB              CNT MIN_LOC
--------- ---------- -------------
CLERK              4 CHICAGO
SALESMAN           4 CHICAGO
PRESIDENT          1 NEW YORK
MANAGER            3 CHICAGO
ANALYST            2 DALLAS

Tags: Database

Similar Questions

  • Why this request is the problem?

    Why my request is bad? no fault of strike.

    Thank you

    ---------

    Write a query to find products including the amount sold in one year should be higher than the average of the quantities of the product sold through all these years?
    select * from products p
    where exists(select 1 from sales s where s.product_id = p.product_id group by s.product_id having avg(s.quantity) > p.quantity)
    
    SQL Error: ORA-00904: "P"."QUANTITY": invalid identifier
    00904. 00000 -  "%s: invalid identifier"

    >

    Yes, it's

    CREATE TABLE 'TEST '. "" SALES ".
    (NUMBER(*,0) "SALE_ID",
    'PRODUCT_ID' NUMBER(*,0),
    NUMBER(*,0) 'YEAR ',.
    'QUANTITY' NUMBER(*,0),
    'PRICE' NUMBER(*,0)
    )

    >

    What about your table of products, the error message points to your PRODUCTS don't table not the SALES table.

  • Why this request does not give an error?

    The query below is from the HR schema that is included in the database.
    If we separate the subquery gives us an error, but if we execute all of the query, execute it, and sends us a result (fake, of course).

    SELECT last_name, department_id, job_id
    Employees
    WHERE department_id = (SELECT department_id
    Sites
    WHERE location_id = 1700);

    Hello

    Welcome to the forum!

    user7363993 wrote:
    The query below is from the HR schema that is included in the database.
    If we separate the subquery gives us an error, but if we execute all of the query, execute it, and sends us a result (fake, of course).

    In fact, the results are correct. Not what you were expecting, maybe, but they're right.
    If the request is reasonable or not is a separate issue.

    SELECT last_name, department_id, job_id
    Employees
    WHERE department_id = (SELECT department_id
    Sites
    WHERE location_id = 1700);

    If you simply run the subquery, you get an error because there is no column called department_id in any table that is in the scope. (Places would be the only scope table; in fact, the places would be the only table, period).

    What you posted is a correlated subquery . In a correlated subquery, you can reference columns of the query of the mother. Employees and locations of the tables are in scope in the subquery.
    It might be easier to understand if you wrote the query like this:

    SELECT  last_name
    ,      department_id
    ,      job_id
    FROM      employees     e
    WHERE      department_id = (
                             SELECT  e.department_id
                       FROM    locations         l
                       WHERE   l.location_id   = 1700
                   )
    ;
    

    It is 100% equivalent to the query you posted. I wasn't to give alias names to all tables and qualify the column names with those aliases in the subquery. Since there is no ambiguity (i.e. department_id exists only in the employees table and location_id exists only in the table of communities) the compiler doesn't care if you qualify the columns with the table alias or not.
    (Even if the same column exist in both tables, you would get an error. Locations being the only table in the FROM clause in the subquery, the compiler assumes that all of the columns named ambiguously came from this table.)

  • Help! I get the message: Code: 740 this request requires an elevation. What should I do?

    Try to download a free registry cleaner

    Right-click on the executable and select, run as administrator.
    This will give a high privilege.

    I hope this helps.

    Marilyn

  • R12 payment process Request Status Report add additional columns to the XML data.

    In 11i, we had modified the preliminary report of payment to include additional columns (distributions of invoice). R12, this report is obsolete and Oracle introduced a new report 'Payment process Request Status Report'. This query uses BI Publisher to generate the release of the final report. I can't edit the template for the output XML to the report has not
    contains data for distribution invoice account. We need to know how we can modify the XML data to include additional columns.

    For the disbursement of funds (payment instructions file) process, Oracle provides extensibility IBY_FD_EXTRACT_EXT_PUB package to build the custom XML element structure that can be added to the extracted XML payment generated by the Oracle payments. Do we have something similar to this report? Are there other options available?

    Thank you

    Hello

    The same "IBY_FD_EXTRACT_EXT_PUB" package also works for the payment request process status report. Please add the logic to get the distribution data in this package, and you'll see the new XML tags in this report also.

    I hope this helps.
    Serge

  • I am trying to open a file and make me notice that the required index.xml file is missing. Is it possible to access the file? I don't know why this happened.

    I am trying to open a file in Pages 09 and am getting notice has the required index.xml file is missing. Is it possible for me to access the file? I don't know why this happened.

    You open a file with Pages ' 09 Pages 5.x.

    You need to right-click on the file and open it with Pages 5.x (the one with the orange document icon).

    Peter

  • I try to install FontAwesomePS_1.0.0 for Photoshop CC15. This extension cannot be mounted, it requires the version of photoshop 64 to inclusively between 14.0 and 15.9. Can someone explain why this extension is not installed? Thank you!

    I try to install FontAwesomePS_1.0.0 for Photoshop CC15. This extension cannot be mounted, it requires the version of photoshop 64 to inclusively between 14.0 and 15.9. Can someone explain why this extension is not installed? Thank you!

    Looks like you are installing in the extensions manager that is no longer supported for 2015 of CC. Please refer to the CC app instead.

  • This operation requires an interactive kiosk to Windows - error during the installation of a MICROSOFT WIRED KEYBOARD 600

    Hello

    I get the error "this operation requires an interactive window station" during the installation driver for a new (working) Microsoft Wired Keyboard 600. I tried to disable my Avast! anti-virus program entirely to restart my system in selective mode with only Windows running programs to install the keyboard. None worked.

    The selective mode does not work. And Device Manager shows the device with the yellow triangle icon. With the code 28 error. "This operation requires an interactive window station.

    I'm using Windows Vista Home Premium (32 bit)

    Also the comfort curve keyboard 2000 from Microsoft that was previously used with this system can no longer install into any usb port. It only works in the USB port it was previously installed. IM happy that I can still use this keyboard, otherwise I would be even more crazy. Usually, I am not asking these questions, I'm the guy 'tech' at home, and I tried all possible options. This topic made me rage a little, because: Microsoft Keyboard on a Microsoft Windows computer does not work. I mean, what the hell.

    Sorry for the typo I made, the CCKeyboard2000 Im using now randomly constantly through... it is why he was replaced.

    Paul

    Hi Paul,.

    Please contact the Microsoft Community.

    I'll get to see the steps of troubleshooting from here-

    http://www.Microsoft.com/hardware/en-us/support/troubleshooting

    In addition, I would like to you contact Microsoft Hardware Support for assistance more.

    http://www.Microsoft.com/hardware/en-us/support/contact-us

    We know if you need help.

  • Sort by additional columns in vSphere Datastore Performance dashboard

    Hello

    I was wondering why I couldn't sort on one of the columns in the default dashboard for the vSphere "Datastore Performance". If I can't perform a sort on the values that I want to see that kind of defeats the purpose that he wanted to show?

    I can always manually scroll vertically to see the bottleneck manually, but it would be nice to have the ability to sort.

    Anyone know if it possible in some way, I have not discovered?

    SortingInAdditionalColumns.jpg

    Kind regards

    Erik Alm

    You are right that additional columns added to the widget resource attributes cannot be sorted (asc or desc). I share your frustration in that. For the moment, there is no way to do this in vC Ops 5.8. I look forward to changes in future versions that allow this feature.

  • Impossible to extract the data of an additional column in the table advance

    Hello

    We have an obligation to add an extra column to the table of advanced search. In addition, we need sort the table using this additional column.

    Now, we have achieved the following:

    1. the required VO was already extended previously and the additional column (LAST_UPDATE_DATE) is already present in the definition of the EO. So, we just added the tag for LAST_UPDATE_DATE in YOUR XML in the form:

    < ViewAttribute

    Name = "LAST_UPDATE_DATE".

    IsPersistent = "false".

    Type = "Oracle.jbo.domain.date"

    ColumnType = "DATE".

    AliasName = 'LAST_UPDATE_DATE. '

    Expression = "LAST_UPDATE_DATE."

    SQLType = 'DATE' >

    < / ViewAttribute >

    2 added a new MessageStyledText column, and updated the following property:

    Prompt = LastUpdateDate. Discover the Instance = TaskPerzSumVO. Display attribute = LAST_UPDATE_DATE. Sort Allowed = true

    The field is now visible in table advance and whenever we seek, attaches the value as ' 1901-01-01'. While I checked manually in the respective table, we have the appropriate data. But in the front end we do not get the data in our additional column of table in advance. In addition, if we try to sort the table by clicking the column LAST_UPDATE_DATE, we get the NPE error. Spec of NullPointerException is as follows:

    # # 0 in detail

    1. java.lang.NullPointerException

    at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:989)

    Kindly help us to obtain the appropriate data in the additional column. Thank you!

    Kind regards

    Zahid

    Hi Zahid,

    This is the error:

    29000: unexpected exception caught: oracle.jbo.NoObjException, msg = Houston-25003: TaskEO.LAST_UPDATE_DATE object of type entity activity not found

    Tag entity by its use should have only name of EO and not the name of the attribute.

    Use instead under the tag:

    EntityUsage = "TaskEO".

    Also, I mentioned that rather tags manually, add it please try Wizard VO to add this attribute in EO attributes available list.

  • Target table has 3 additional columns

    GG version 11.2.1.0.3
    Platform: RHEL 5.4
    DB: Oracle for Oracle (Source and target is 11.2.0.3)

    Use of GoldenGate we must replicate the LMD of a table (Uni-directonal) source to target.

    In the target, due to operational requirements, the table will have 3 additional columns. These 3 columns will fill separately by an application that is scheduled to run every midnight. .

    For the initial charge, we will make expdp, impdp from source to the target. Once the import is complete, we will launch the next column, adding commands in the target DB.
    alter table crtn_hdr_dtl add lv_rotate varchar2(30);
    alter table crtn_hdr_dtl add blnd_smt varchar2(30);
    alter table crtn_hdr_dtl add run_type varchar2(5) ;
    To process the additional columns in the target table, what are configuration changes that must be accomplished in the extracted parameter files and replicate for this table?

    In the param repeated file, instead of ASSUMETARGETDEFS you need to use SOURCEDEFS with a file of the source table definition. You can still use USEDEFAULTS in the COLMAP clause.
    No change is required to extract file param.

  • "This movie requires Quicktime" - cannot read TV shows

    I have a lot of TV purchased through iTunes, which are now unplayable. See the subject line of the message.

    • First, I played those shows in this version of iTunes (12.3.3)
    • Secondly - if something is purchased through iTunes, why does not automatically upgrade or transfer it to the platform?
    • Thirdly, no mention of this before it happens.

    I signed in and out and restarted iTunes, without result.

    Please notify.

    The official response from Apple seems to be to use QuickTime stand-alone player - If you see a message "this movie requires QuickTime" in iTunes - Apple Support -although I don't know how it will work with DRMd files. However the various threads on the subject suggest reopening iTunes in 32-bit mode (its 64-bit default mode does not have QuickTime):

    "This movie requires QuickTime, which is not supported by this version of iTunes."

    iTunes won't play on Mac quicktime videos more.

    To do this, close iTunes, locate its icon in the Finder, select the text and press command-i to open the Info Panel and check the "Open in 32-bit".

  • How to stop demand for files compressed in my Outlook Express? This request appears on my screen of many times while I'm working.

    How to stop demand for files compressed in my Outlook Express? This request appears on my screen of many times while I'm working, even when I go on the internet, it always appears & crashes me typing.  I have a lot of emails and I don't want to compress their files.

    original title: HOW can I STOP ASKING to COMPRESS the FILES in OUTLOOK EXPRESS

    How to stop demand for files compressed in my Outlook Express? This request appears on my screen of many times while I'm working, even when I go on the internet, it always appears & crashes me typing.  I have a lot of emails and I don't want to compress their files.

    Compress, (Compact in American English), removes waste of space, not your messages. Please read below, but if compact you and still get the prompt, after return. It is another question.

    Why OE insists on compacting folders when I close it? :
    http://www.insideoe.com/FAQs/why.htm#compact

    Compacting your folders periodically is a must to keep OE works fine and at some point, you may lose all your saved messages if you do not. When you delete or move messages, the space they used remains until you compact.

    Never touch anything until the compression is finished.* *.

    See:
    www.oehelp.com/OETips.aspx#2

    With SP2, Automatic compaction in the background has been removed because of problems he has caused. Now, you will get a prompt to compact after 100 closures of OE, you need to do, and do not touch anything until it's finished. If you compact manually, at your convenience, this will also set the counter to zero. See this for more information:
    http://www.insideoe.com/files/maintain.htm#compact

    If you are fully patched, you will now see a copy of your dbx files copied to the Recycle Bin as BAK files. If something goes wrong when compacting, the messages can be easily restored from this backup. A compact manual resets also the counter in the back of the registry to zero now.

    For more information, see the information framed in red here:
    www.oehelp.com/OETips.aspx#2

    To keep things running smooth and harden faster:

    Do not archive mail in default OE folders. It will eventually become corrupt and you may lose mail. Create your own folders defined by the user for mail storage and move your mail to them. Empty the deleted items folder regularly. Keep user created folders under 300 MB, and also empty as is possible to default folders.

    And backup often.

    Outlook Express Quick Backup (OEQB Freeware)
    http://www.oehelp.com/OEBackup/default.aspx

  • clear an error: invalid value "1.0.0.0" request-requires-System. "

    Hey everybody. Recently my app had accepted in App World, and now I have to finally move to sign my application. I followed the steps listed HERE, and everything was fine until I actually went to sign my bar... it throws the following error:

    clear an error: invalid value "1.0.0.0" request-requires-System. "

    I have searched the forums and found this but (which also led to this), I came across another problem. I've been working out of my project of Mobile Flex using the SDK of heroes and everything seemed fine. It debugged very well, installing BAR was very good and above all, it has been accepted by RIM. I thought it was no big thing, but now I run into issues. The discussions I linked to had a response from an official developer of running off of the latest version of the SDK (0.9.3), but my project says that the SDK is not compatible with mobile projects.

    Someone at - it suggestions? I hope I don't have to redo something here, but I tell myself that I'll do all what I need to do my application upwards and running as it should. Thanks in advance guys!

    Edit: another suggestion was actually go in my manifest file in the META-INF and remove this line of text. I can do this, but I don't know what effect it will have and I suppose you far, far smarter than me. If I try to go and screw with my files, it can't end well.

    Haha what do you mean you're not too bright. you really made the right decision here. in the first step of creating a project, you can choose the Flex SDK hero. You cannot choose the BB SDK because it works only as a reference library.

    If you go into Preferences > Flash Builder > target platforms, what do you see here?

  • Additional column in a table


    Hi all

    I would like to add an additional column in a table, and it must have the values Valiid or Invallid.

    I mean that I need to have the list of values for the invallid or column showing which.

    Please let me know, how to get there.

    Thank you

    Kumar.

    Hi Kumar,

    user624202 wrote:

    Hi all

    I would like to add an additional column in a table, and it must have the values Valiid or Invallid.

    I mean that I need to have the list of values for the invallid or column showing which.

    Please let me know, how to get there.

    Thank you

    Kumar.

    Assuming that you want to add the column to capture valid or not valid and store it in the database, if this is the case.

    1 Add this column that will contain the values for valid and invalid in the table to your query in a table

    Here I added the status column that will keep VALID and INVALID in the database

    select
    "EMPNO",
    "ENAME",
    "JOB",
    "MGR",
    "STATUS"
    from EMP
    

    2. go to the attributes of the region-> column to change the STATE of

    Goto column attributes

    Display as-> list of selection (named LOV)

    Named LOV-> select your Lov

    Attributes of tabular form Goto

    Owner of the reference Table-> select the scheme name

    Reference Table name-> the name of the table

    Name of column reference-> give the name of column

    Hope this helpe you,

    Kind regards

    Jitendra

Maybe you are looking for

  • How can I import bookmarks from my desktop

    My Firefox bookmarks can be imported on this unit

  • How can I add Java SE 8 of my browser

    I have a www.runthemodel.com/models/2006 application which requires Java to run 8. I have Java 8 is installed on my desktop. When can I access the site, I get a message 'a plugin is required to run the content. When can I access the site on my laptop

  • HP Touchsmart IQ510 to play games?

    Hi, my girlfriend brought one of them, yesterday, the Comet and its brilliant, I just have a few questions. I tried to install The Elder Scrolls Oblivion and after that, the installation and I press 'play' it comes up with an error message saying...

  • Error Windows update "0x8024402F" after you connect with domain name

    Working Group to update windows. But the same working group is impossible to get the update when connecting with the field. The two cases, we use our local DNS server address. No problem with most of the windows 7/2008 R2. Customers Windows XP are no

  • Dvd r Bank does nothing

    Bank dvd r disc has no name DVD r dvd of MR I have files of weighting to burn I put the blank dvd in eject tells you to put the dvd in. I can play other DVDs on power dvd ok my computer inspiron 150 moveis.