Help: Group By condition

Hello folks am actually trying to figure whether we can use the following condition i.e "to_char(sysdate, 'FMMon YYYY')," in the group by clause, Or can we use the alias "Period" instead,Can anyone please throw some light on this.
SELECT Client. Client Name,
"CUBS SNAPSHOT". HMG Flag,
select TRUNC (SYSDATE, 'MONTH') - 1 from dual AS PeriodThruDate,
select to_char(sysdate, 'FMMon YYYY') from dual AS Period
FROM "CUBS SNAPSHOT", Client
GROUP BY Client. Client Name,
"CUBS SNAPSHOT".CLIENT,
"CUBS SNAPSHOT".TYPE,
"CUBS SNAPSHOT".clipStatus,
"CUBS SNAPSHOT".SUBTYPE,
to_char(sysdate, 'FMMon YYYY'),
"CUBS SNAPSHOT". HMG Flag,
TRUNC (SYSDATE, 'MONTH') - 1
Thanks

Hi,
As you may have noticed, this site normally compresses white-space.
To post formatted text (and code should always be formatted), type these 6 characters:
{code}
(small letters only, inside curly brackets) before and after sections of formatted text, to preserve spacing.
SYSDATE is treated as a constant in GROUP BY queries.
You can have constants in the GROUP BY clause if you really want to, but there's no point. If you have a GROUP BY clause anyway, adding constants to it won't change the results.
You can't use a column alias in the GROUP BY clause of the same query where it was defined.
I think the following is syntactically correct:
SELECT    Client.Client          Name,
       "CUBS SNAPSHOT".HMG     Flag,
       ( select  TRUNC (SYSDATE, 'MONTH') - 1
         from       dual
       )               AS PeriodThruDate,
       ( select  to_char (sysdate, 'FMMon YYYY')
         from       dual
       )               AS Period
FROM        "CUBS SNAPSHOT",
       Client
GROUP BY  Client.Client,
             "CUBS SNAPSHOT".CLIENT,
       "CUBS SNAPSHOT".TYPE,
       "CUBS SNAPSHOT".clipStatus,
       "CUBS SNAPSHOT".SUBTYPE,
       to_char(sysdate, 'FMMon YYYY'),          -- Why?
       "CUBS SNAPSHOT".HMG,
       TRUNC (SYSDATE, 'MONTH') - 1               -- Why?
;Scalar-sub-queries (like PeriodThruDate and Period) must be enclosed in parentheses. You don't have to use a sub-query in these two cases. Instead of
( select  TRUNC (SYSDATE, 'MONTH') - 1
  from       dual
)                    AS PeriodThruDate,you could say:
TRUNC (SYSDATE, 'MONTH') - 1      AS PeriodThruDate,The query above is doing a cross-join betwee the two tables. That's not necessarily an error, but it almost certainly isn't what you want. Every table in the FROM clause is usually referenced in at least one join condition.
I suggest writing much smaller queries, and adding to them one or two lines at a time. You'll find it much easier to locate and fix mistakes that way.
That is, don't wite 14 lines of code and then try to run it.
Write maybe 2 lines. Test it, and make corrections as necessary.
When it does what it's supposed to dio perfectly, add another line or two and test again.

Similar Messages

  • Material Fright Group related Condition record is not captured in billing

    Dear all,
       As i am creating Credit Memo with respect to Credit memo Request (Sales Order) and my freight condition record is maintained in Material Freight Group level. This field is there in Sales Order but when i am creating Credit memo it is not captured and also i am unable to find Material Freight Group field in Billing Document.
    Please help urgently.
    Regards,
    Chirag Pedhadiya.

    Hi...
          But why we have to write this code in User Exit. Is this Standard SAP Problem ??
    I just wonder that in Delivery Related Billing Document it is finding Material Freight Group related Condition record in Billing means in Billing Pricing it is getting value in Material Freight Group filed and set this condition record value, though there is no any field like MFRGR (Material Freight group) in Billing Tables VBRK or VBRP.
    So for Order related Billing Document only why this filed is not getting any value in Pricing ??
    Thnaks,
    Chirag  Pedhadiya.

  • How to set required for group of condition type in the same condition class

    Hello,
              we have a group of condition type with the same condition class B, the last one have been set, and all of others will be inactive.
    but we don't set any required for all the condition types in pricing control, so if user don't set any of them, the sales order or billing is still saved. that is a risk.How can i fix it? Thanks.
    Sophie

    Hello,
      incompletion log is not available in invoices.
    You have different options:
    - activate a validation in FI when the Billing document is released into accounting,  so that te release into accounting is not allowed if the invoice amount is zero;
    - define a subtotal in the pricing procedure as sum of the pricing conditions of your group, then develop a custom routine to be assigned in the formula "CalType" (field T683S-KOFRM) where an error should be raised if the amount of the subtotal is zero (use as an example formula 48);
    Best regards,
    Andrea

  • Help tracking the condition of a form

    Hi All
    Thank you for viewing my post.
    I am a relavtive beginner with Livecycle but have got a reasonable grasp on scripting with javascript etc.
    Here's my problem.
    I have created an internal order acknowledgement form.
    This form is filled in by our internal sales dept, and in the form they indicate the reviews required to process the order e.g. engineering review, operations review, sales review or a combination of them.
    They do this via checkboes.
    Currently when they submit the form, I have background script that saves the form based on specific information in the form i.e. order number + initals of user + customer name + todays date.pdf on our server (using the trusted application method). After this operation a Mailto command is specified to mail the form to the departments that are ticked.
    Each department that is selected for review then has its own comments area and submit button on the form. Once the department has reviewed the order and done whatever work is required for it they simply submit the form which in turn gets saved as order number + initals of user + customer name + todays date + departmentname review completed.pdf, and emails the form back to the order processor.
    OK this all works great!!
    But it now means I have up to 4 forms being saved for each order, which is OK but now I have been asked to make it more tracable for metrics.
    i.e. if a department looks at the folder where the forms are stored can they view quickly the forms requiring their attention.
    So I have a few options but not sure how to achieve any of them.
    1. - When each file is saved it then deletes the last? - risky because if it is open at hte time on anybodys computer this process wont happen, and I am not sure if it is possible to delete files with javascript through adobe reader?
    2. - export certain fields on each submit  (just the order number, customer name and current status of submit buttons) to a single external file which I can then interrogate with excel or something similar). This sounds good but I have no idea how.
    3. use a mysql database to collect the data from these fields but again not sure what is involved with this / or if its possible.
    ANY HELP IS MUCH APPRECIATED.
    THANK YOU IN ADVANCE.

    Hi Paul
    Thankyou for your response.
    Is it possible to move a file from one directory to another using
    JavaScript under adobe control?
    Thankyou for the invite to your seminar I will attend.
    Thanks
    Graham
    pguerett <[email protected]>
    19/03/2010 15:44
    Please respond to
    [email protected]
    To
    Graham Spaull <[email protected]>
    cc
    Subject
    Help tracking the condition of a form
    Understand your issue and typically this is handled by a Process
    Management or workflow product. LiveCycle has an option for this but it
    might be overkill for what you are trying to do. Anyways regarding your
    points:
    1. You cannot delete anything from th efile system form inside of Acrobat
    (because of security)
    2. You cannot export specific fields, you can export all of the data then
    manipulate it using some 3rd party program. Think in terms of submitting
    it to a srver then having a server program extract the bits you needd and
    do the update.
    3. You can have the forms communicate with a DB but that requires the need
    for another LiveCycle module called Reader Extensions to allow Reader
    users to access the DB, If you are using Acrobat then that is not a
    requirement. I am giving a presentation on this topic next Tues (23rd of
    Mar) at 12 EST. If you are interested you can register here:
    http://acrobatusers.com/events/2220/tech-talk-database-connected-forms
    Paul

  • Multiple Groups of Conditions in Smart Mailboxes

    In Yosemite Mail is it possible to create more than one group of conditions for a smart mailbox?
    In iTunes, when creating smart playlists, you can press OPTION while clicking on the '+' sign to add conditions. A new group of conditions can be added.
    I do not see anything similar in Mail.
    Thanks,
    b.

    I think you miss the point.
    I'm looking to make a smart mailbox to show mail with
    (Condition A AND Condition B)
    OR
    (Condition A AND Condition C)
    OR
    (Condition X AND Condition Y)
    Thanks,
    b.

  • Oracle BI Answers Problem Using Group By condition.

    Hi All,
    I'm new to Oracle BI. i have a requirment to count the number of opened request and number of closed request(month wise) from a table which have fallowing columns:
    Date logged(Date) Status(character) Date closed(date)
    8/12/2008 open null
    8/19/2008 closed 8/21/2008
    I also neeed the total closed request for a particular month irrespective of the opened month.( eg. if a request was raised in Apr and was closed in Aug shoulb be counted.)
    For this requirment i modified the select query:
    SELECT new_event.Month saw_0, new_event.opened saw_1, new_event.closed saw_2, new_event.Cmonth saw_3 FROM
    (SELECT MONTHNAME(Events."Logged Date/time") as MONTH , COUNT(Events.Status) as opened,0 as closed,0 as Cmonth FROM Incidents WHERE ("Assigned Service Dept"."Assigned SVD" = 'WHG DSG SUPPORT') AND (Events.Status IN ('Open', 'Closed')) GROUP BY MONTHNAME(Events."Logged Date/time")
    UNION
    SELECT MONTHNAME(Events."Logged Date/time") as MONTH ,0 as Opened, COUNT(Events.Status) as closed,0 as Cmonth FROM Incidents WHERE ("Assigned Service Dept"."Assigned SVD" = 'WHG DSG SUPPORT') AND Events.Status = 'Closed' GROUP BY MONTHNAME(Events."Logged Date/time")
    UNION
    SELECT MONTHNAME(Events."Closure Date") as MONTH ,0 as Opened,0 as closed, COUNT(Events.Status) as Cmonth FROM Incidents WHERE ("Assigned Service Dept"."Assigned SVD" = 'WHG DSG SUPPORT') AND Events.Status = 'Closed' GROUP BY MONTHNAME(Events."Closure Date")) new_event
    ORDER BY saw_0, saw_2, saw_3
    Using This query i'm able to get the fallowing result set.
    Month opened closed Cmonth
    Apr 25 0 0
    0 0 27
    0 25 0
    Aug 27 0 0
    0 0 21
    0 10 0
    So I want to do a group by month and sum of closed, opened and cmonth column.
    But when i add the group by condition i'm getting the error as "GROUP BY Condition Needed"
    Thanks,
    Sumit

    Ignore the SQL let Analytics handle that for you, the key here is to get your model correct.
    You need a Time Dimension (ie. a table full of calendar dates) which you join to your Fact table date columns in the Physical layer.
    In the logical layer fact table you should have two columns #Open and # Closed - these will be based on a case condition sum aggregate ie.
    No. Open
    CASE WHEN closed_date IS NULL THEN 1
    ELSE 0
    END
    No. Closed
    CASE WHEN closed_date IS NOT NULL THEN 1
    ELSE 0
    END
    If you then make sure you join your Time Dimension (create an alias for each instance) to the open and closed dates you'll be able to have a count of the items closed by Year/Month/Week/Date etc...

  • Group By condition in result package

    Hi Experts,
    I have a requirement, where I need to write a logic to populate few key figures of a Cube.
    Logic is based on Group by condition on 3 fields of the result package. (Need to implement in end routine)
    Is there any way that I can do a select statement on the result package fields and then put a group by clause to get my aggregated data.
    I need to fill up the key figures in the cube itself (cant take it to BEx).
    Please let me know how to proceed for it.
    Thanks
    El.

    Githen, Thanks for the reply.
    I am thinking of another option of implementing it. Let me know your thoughts
    There is a DSO on the top of this Cube, If I use all the fields which I want to use in "Group By" condition as key fields of the DSO.
    Then would it automatically aggreagate the rows based on the conditions? Will it suffice the requirement?
    Thanks
    El.

  • Using identy Group as condition

    Hi ,
    I wanna create a authorization Policy using two identity Group as condition . But i juste heve "OR " as operator for those two condition !!I wanna i use operator and is this Possible ???

    Configuring Policy Elements Conditions
    Cisco ISE provides a way to create conditions that are individual, reusable policy elements that can be referred from other rule-based policies. Whenever a policy is being evaluated, the conditions that comprise it are evaluated first.
    Under Policy > Policy Elements > Conditions, the initial Conditions pane displays the following policy
    element condition options: Authentication, Authorization, Profiling, Posture, Guest, and Common.
    Simple Conditions
    Simple Condition Format
    This type uses the form attribute operand value. Rule-based conditions are essentially a comparison of values (the attribute with its value), and these can be saved and reused in other rule-based policies. Simple conditions take the format of A operand B, where A can be any attribute from a Cisco ISE dictionary and B can be one of the values that attribute A can take.
    Compound Conditions
    Compound Condition Format
    Authorization policies can contain conditional requirements that combine one or more identity groups using a compound condition that includes authorization checks that can return one or more authorization profiles. This condition type comprises one or more simple conditions that use an AND or OR relationship. These are built on top of simple conditions and can be saved and reused in other rule-based policies. Compound Conditions can take any of the following forms:
    • (X operand Y) AND (A operand B) AND (X operand Z) AND ... (so on)
    • (X operand Y) OR (A operand B) OR (X operand Z) OR ... (so on)
    (*Where X and A are attributes from the Cisco ISE dictionary and can include username and device type.
    For example, compound conditions can take the following form:
    – DEVICE: Model Name Matches Catalyst6K AND Network Access: Use Case Equals Host
    Lookup.)
    Creating New Authorization Policy Element Conditions
    Use this procedure to create new authorization policy element conditions (simple or compound).
    To create new authorization policy element conditions, complete the following steps:
    Step 1 Click Policy > Policy Elements> Conditions > Authorization> Simple Conditions (or Compound
    Conditions).
    The Conditions page appears listing all existing configured authorization policy element conditions.
    Step 2 To create a new simple condition, click Create.
    The Simple Conditions page displays.
    Step 3 Enter values in the following fields to define a new simple condition:
    • Name—Enter the name of the simple condition.
    • Description—Enter the description of the simple condition.
    • Attribute—Click to choose a dictionary from the drop-down list of dictionary options, and choose an
    attribute from the corresponding attribute choices.
    • Operator—Enter Equals or Not Equals.
    • Value—Enter a value that matches the selected attribute.
    Step 4 Click Submit to save your changes to the Cisco ISE database and create this authorization condition.
    The Name, Attribute, Operator, and Value fields in simple conditions are required and are marked with an asterisk (*).
    For Complete Reference visit:
    http://www.cisco.com/en/US/docs/security/ise/1.0/user_guide/ise10_authz_polprfls.pdf

  • I need help with the conditional build tag option RoboHelp 10

    I need help with the conditional build tag option. I want to apply CBT to content in a topic. I looked at the Help topics and believed that I applied the feature correctly. Howver, it is not working as desired. In the 2nd sentence below I want the text highlighted in blue to only appear for the printed output and the text printed in purple to only appear for the .htm /online output. Please help.
    There are common tasks used to manage the folders in the Navigator and the folders
    in the BBS Folders Viewer Grid. For more information on these common tasks see Help
    and Support in Success Enterprise. click the links below.

    Hi there
    Using tagging is a two part process.
    Part One
    You create and apply the tags to the information you wish to control.
    Part Two
    You create a Build Expression that is used when you generate your output. The Build Expression typically reads something like: NOT Tag1 (or whatever your tag name is)
    Then when you generate and use the Build Expression, the information tagged is not included in the build.
    Cheers... Rick

  • How to display or suppress a field in the group footer conditionally

    Hi,
         I am working with crystal report XI R2
         My requirement is that suppress the filed on group footer if it is duplicating .Also display only once for the first record in  each page  if it runs in to more than one page .
    For example suppose my report is to display all the students name in a college on department basis.
    Then do the grouping on department ,then display the names  like
    Page 1
    Department                      +Student+
    Computer                             Ram
                                                    Ravi
                                                    Seetha
    Electronics                          Anvar
                                                  Deepak
                                                  Geetha
    Page 2  
    Electronics                          Hari
                                                  Karthik
                                                    Xavier
    Maths                                     Sini   etc.......
      Inorder to suppress the duplcated department name ,i am taking the count of the student names for each department and if the   count is more than 1 then suppressing it.
        But i am not able to display it conditionall on each page for the first record ,if the repor is running in different pages..
       Please let me know if you require more information regarding teh same.
    Thanks in advance,
    Smitha
    Edited by: smitha thomas on Nov 17, 2010 9:58 AM
    Edited by: smitha thomas on Nov 17, 2010 9:59 AM
    Edited by: smitha thomas on Nov 17, 2010 10:02 AM

    Right click the department name column and go to format field and  select supress if duplicate...this will remove duplicates
    to get it displayed in each page
    create a formula say F1 and place the column inside the formula
    and conditionally supress for each page
    This may help
    Thanks,
    Ganesh

  • Need help for filter condition

    Hello All,
    I am currently using Oracle 10g and stuck for the filter condition.
    We have incident numbers and 5 activities to complete that incident. All the activities are same for each incident. When status of all the activities are done the incident is supposed to be completed.
    In my scenario, I want to select only those incidents where 2 (activity BB and CC) of 5 activities have status 'Done' and 1 activity (activity DD) has status 'Done' or 'Not Applicable'. I have tried to do this by certain filter combinations but couldnt achieve required result. I hope I will get this query answered here.
    Below is sample table.
    Incident Number
    Activity Name
    Activity Status
    10
    AA
    In Progress
    10
    BB
    Done
    10
    CC
    In Progress
    10
    DD
    Done
    10
    EE
    Not Started
    20
    AA
    In Progres
    20
    BB
    Done
    20
    CC
    Done
    20
    DD
    Not Applicable
    20
    EE
    Done
    My selection criteria is
    Activity Name
    Activity Status
    BB
    Done
    CC
    Done
    DD
    Done or Not Applicable
    Now, in this case I would like to see incident number 20 only in my result as it has BB activity Done, CC activity Done and DD activity Not Applicable which serves my criteria.
    Any help will greately appreciated.
    Thanks,
    Shantanu

    971628 wrote:
    Hi RaminHashimzadeh,
    My selection criteria is
    Activity Name
    Activity Status
    BB
    Done
    CC
    Done
    DD
    Done or Not Applicable
    I dont want incident numbers where status of activity BB and CC = Not Applicable. It should only be 'Done' for BB and CC. It could be 'Done' or 'Not Applicable' only for DD activity. Your query would not serve my requirement.
    OK
    check this :
    select Incident from t
    group by Incident
    having count(case when (ActivityStatus = 'Done' and Activity in ('BB','CC')) or
                           (ActivityStatus in ('Done','Not Applicable') and Activity = 'DD')
                       then 1 end) = 3
    Ramin Hashimzade

  • Help needed with 'Conditions' for field with read only on demand

    Hy guys,
    I really need your help now, i have two items named P22_LOGIN_TYPE (..wich can be 'Default' or 'Special') and P22_PASSWORD, i need to turn to 'read only' the second item when the first item is 'Default', i'v tryied the conditional option but with no success, i know is managed from there but it's not working for me, it seems that i don't know exactly how to do it. By the way, i have APEX 2.2.
    I need an exact guide (explanation) on how to do it, thank you very much.
    Best regards,
    Victor

    Firstly you could set your First item to be a select list with submit. Make the branch go to the same page.
    Secondly, on the read-only conditions for your second item, use the condition when item in expression 1 = value in expression 2, and set that to 'Default' in expression 2.
    Essentially this will re-submit your page when you make a selection either 'Default' or 'Special'. If 'Default' is selected, then the PASSWORD item will be rendered as read-only. If you don't want to display the PASSWORD item at all, you can put the above condition for the read-only, into the conditions section of the item.
    Hope this helps and is not too confusing. It reads a lot worse than it actually is ;)
    Cj

  • Help with pricing condition??

    Hi Guyz,
    I have a requirement with my client, the want to supply material to an external customer at an intercompany price(ZPR9). So whenever a sales order is created for this specific customer it should pull the price from Intercompany price(ZPR9).  I have a option to create new pricing procedure and new pricing condition but this condition should pick up the price from ZPR9 so that we don't have to define the price manually like we do in PR00.
    I can't able to assign ZPR9 to my new pricing procedure because ZPR9 is use for intercompany and this customer doesn not belong to any of our company code.So the situation is i have to define new pricing procedure and new pricing condition but this condition should pull the price from ZPR9.
    when I see the details of ZPR9(condition type) its condition category is assigned as 'Y' which is customer reserve Y. I am not sure what this is.So could you plz advice how to handle this whole scenario. Appreciate your help.
    thanks
    Mohammed.

    mohammed,
    This type of requirement is hard to handle and if you do it in a wrong way, whoever support this process later will have a hard time.
    Anyway, I think one of the twisted ways of doing this is to use Alternative Culculation routine and put the logic to get the condition right out of price condition table (A*) of ZPR9. This is not flexible at all because this involves hard coding, so I do not recommend this.
    The message I can get from your client is "We don't want to maintain the same condition here and there," but sometimes they have to deal with it, because the nature of the condition type is very different from business point of view.
    Having said that, in order for them to have easier way to create the condition, maybe you can develop a custom ABAP to copy ZPR9 condition into the new condition you might be creating, and either have them run the program every time they update ZPR9 or schedule the job.
    Hope this helps.
    Akio

  • Please Help| group policy site failure

    hey all, i have some big problem in my network.
    i have 3 site named by city. 
    tel aviv-server 2012
    beer sheva-server 2008r2
    netanya-server 2008 r2
    i crete gpo(computer management)  that deny access to mmc.exe
    computer management--->windows settings--->securtiy--->file system
    and add---> %systemroot%/system32/mmc.exe and deny access to user.
    now i go to check the gpo in client side with gpresult /scope computer /r and see that some computers in tel aviv site connected to netanya/beer sheva site.
    what can i do ?
    i have a situation that not matter what i do i cant release mmc.exe to users. 

    Hi eranvak,
    Before going further, would you please let me confirm something more? Would you please descript how you configure
    the group policy summarily? For example, when you create the GPO, where the GPO link to? Did you directly link GPO to the default Domain? Or in GPMC, right click the site and select
    Link an Existing GPO…? Or any other I misunderstand, please feel free to let me know.
    In addition, you descript “enable the inheritance option”, did you mean that just uncheck
    Block Inheritance option?
    Sorry for my confusion. Thanks for your understanding.
    There are two articles for Group Policy Inheritance. Please refer to.
    Group Policy Inheritance
    http://technet.microsoft.com/en-us/library/cc739343(v=ws.10).aspx
    Managing inheritance of Group Policy
    http://technet.microsoft.com/en-us/library/cc757050(v=ws.10).aspx
    Hope this helps.
    Best regards,
    Justin Gu

  • Query help - group by

    Hi all,
    I need to get the sum(sal) and sum(comm) using select query..
    I am using group by..but unable to get the result..
    For example..if the table is
    eno     ename     job     sal      comm     deptno
    1234     john     manager     2000 1     10
    1235     andrew     salesman     1000     2     20
    1236     steven     manager     2000 3     20
    1237     robert     clerk      600     4     10
    1238     laura     manager     2000      5     20
    1239     dan     salesman     500     6     30
    1240     james     clerk     500     7     10
    I need to display all the columns by select query and the result should be as follows:
    eno     ename     job     sal     comm     deptno     sum(sal)     sum(comm)
    1234     john     manager     2000     1     10     6000     9
    1235     andrew     salesman     1000     2     20     1500      8
    1236     steven     manager     2000     3     20     6000      9
    1237     robert     clerk     600     4     10     1100     11
    1238     laura      manager     2000     5     20     6000      9
    1239     dan      salesman     500     6     30     1500      8
    1240     james      clerk     500     7     10     1100     11
    I appreciate your help...thanks !

    Use anaytic SUM:
    SQL> select  empno,
      2          ename,
      3          job,
      4          sal,
      5          comm,
      6          deptno,
      7          sum(sal) over(partition by deptno) sum_sal,
      8          sum(comm) over(partition by deptno) sum_comm
      9    from  emp
    10  /
         EMPNO ENAME      JOB              SAL       COMM     DEPTNO    SUM_SAL   SUM_COMM
          7782 CLARK      MANAGER         2450                    10       8750
          7839 KING       PRESIDENT       5000                    10       8750
          7934 MILLER     CLERK           1300                    10       8750
          7566 JONES      MANAGER         2975                    20      10875
          7902 FORD       ANALYST         3000                    20      10875
          7876 ADAMS      CLERK           1100                    20      10875
          7369 SMITH      CLERK            800                    20      10875
          7788 SCOTT      ANALYST         3000                    20      10875
          7521 WARD       SALESMAN        1250        500         30       9400       2200
          7844 TURNER     SALESMAN        1500          0         30       9400       2200
          7499 ALLEN      SALESMAN        1600        300         30       9400       2200
         EMPNO ENAME      JOB              SAL       COMM     DEPTNO    SUM_SAL   SUM_COMM
          7900 JAMES      CLERK            950                    30       9400       2200
          7698 BLAKE      MANAGER         2850                    30       9400       2200
          7654 MARTIN     SALESMAN        1250       1400         30       9400       2200
    14 rows selected.
    SQL> SY.

Maybe you are looking for

  • [38133] The Logical Table [...] is not joined to any other logical table.

    Hi all! I'm very new to Oracle BI EE. My need is to create my first report in BI. I've opened Oracle BI Administration Tool, created new repository, added physical tables, created new item named "reports" in "Business Model and Mapping" section, made

  • Two SAP system in one host and one oracle software

    Hi SAP Gurus, We want to install Two SAP system (PR1 & PP1) in one host(Prdb05) and one database (Oracle). I dont want to do MCOD. I am very confuse about what changes i need to make before start the install of PP1. Actually i do not required to inst

  • Error with dbca -silent ASM storage type

    dbca -silent -createDatabase -templateName General_Purpose.dbc \ -gdbName $LOWER_SID -sid $LOWER_SID \ -sysPassword P1casso -systemPassword P1casso \ -sysmanPassword P1casso -dbsnmpPassword P1casso -asmsnmpPassword P1casso \ -emConfiguration LOCAL \

  • How can I sync my ringtones without losing my songs in the ipod? :-(

    How can I sync ringtones made from an app and still keep all the music in my library on my phone?? A box pops up that says if I sync ringtones then all the music, video's & tv shows will be deleted??!!

  • System folder fonts missing in Dreamweaver CS3

    I am in the process of designing a website. I started it in photoshop; where I used Myriad Pro, light. I then took it into Fireworks, sliced it, then exported into dreamweaver. Dreamweaver doesn't have Myriad Pro in its list? (though it is in windows