Having count- count(count(1))

I have two queries below- first of which outputs one record, the Second query doesn't.
Can you explain why First query returns always records, at least one record? In explanation, can you say which process is runned after which (something like where is runned firstly, then group by, then...)?
--First:
select count(count(1)) from dual
where 1=2
group by dummy
having count(dummy) > 0;--1 row, value: 0
--Second:
select count(1) from dual
where 1=2
group by dummy
having count(dummy) > 0;--0 rows

Hi,
Aggregate queries with nested aggregate functions (such as "COUNT (COUNT (1))") always return exactly 1 row, even if there are no rows in the table (or, as in your first example, no rows survive the WHERE clause).
The outer layer of nested aggreate functions is evaluated after the GROUP BY and HAVING clauses have been applied.
If you have a GROUP BY clause, but no nested aggregate fucntions, then the output contains one row for every distinct group, subject to the WHERE- and HAVING clauses. In your second example, no rows are left after the WHERE clause, so there will be no rows in the output.
You can think of things as happening in this order
(1) WHERE
(2) GROUP BY
(3) (inner) aggregate fucntions
(4) HAVING
(5) Nested aggregate functions
The optimizer may not actually follow the steps above, but you won't notice that.
Edited by: Frank Kulash on Mar 25, 2010 11:51 AM
The following thread may help you:
Re: group function

Similar Messages

  • Where or Having clause and COUNT(1)

    I'm having trouble trying to figure out the way to get the conditional difference between two counts in a where clause.
    I would like to scan a table and only select records where the record count of one column attribute is different than another.
    I have
    select name, count(1) from skill <<< TOTAL_COUNT
    and
    select name, count(1) from skill where score is not NULL <<<< SCORED_COUNT
    I want to have a statement that just returns the names for those where TOTAL_COUNT - SCORED_COUNT = 0
    ... meaning those names where any of the rows have not been scored.
    I've tried a "having clause" but it still returns all there names. Even those there TOTAL_COUNT - SCORED_COUNT > 0
    Here's the non-working code....
    select * from
    (select full_name
    from emp e
    where e.manager = 'Smith, John'
    having
    ((select count(1)
    from emp_skill es
    where es.emp_fk = e.id
    group by null) -
    (select count(1)
    from emp_skill es1
    where es1.emp_fk = e.id and
    es1.self_prof is not NULL
    group by null)) = 0
    )

    Don't take 3360 too seriously in this context. COUNT(expression) is a bit of a running joke around these parts.
    However, his response does contain the seed of the solution for your problem.
    COUNT(<expression>) works because the COUNT function counts all rows with a non-null value for expression. So COUNT('Chocula') counts the non-null occurences of the literal string 'Chocula' in the table. Obviously, this counts every row in the table. COUNT(*) counts all the non-null occurences of a row in the table (even a row with all null values is a row). Clearly these are equivalent.
    However, if <expression> evaluates differently for each row, then COUNT(*) and COUNT(<expression>) can differ. So, for your example, assuming that the scored column is truly NULL in some records, what you need is something like:
    SQL> SELECT * FROM skill;
    NAME            SCORE
    BOB                 5
    BOB                 6
    BOB                 7
    BILL                5
    BILL                8
    BILL
    SQL> SELECT name, total, scored
      2  FROM (SELECT name, count(*) total, count(score) scored
      3        FROM skill
      4        GROUP BY name)
      5  WHERE total <> scored;
    NAME            TOTAL     SCORED
    BILL                3          2

  • What is the difference between count(*) and count(1)

    what is the difference between count(*) and count(1)

    Hi,
    903830 wrote:
    some say count(1) is faster and some say count(*), i am confused about count function?In the link provided by Prakash :
    prakash wrote:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1156159920245
    You can read :
    Followup   August 31, 2001 :
    I'll have to guess, since you don't say, that you are using 7.x and before when count(*) and count(1) were different (and count(1) was slower). In all releases of the databases for the last 4-5 years, they are the same.
    Don't waste your time on that.
    ;-)

  • Count(*) VS Count(ColumnName) VS Count(1)

    Can some explain which one is better,
    Count(*)
    Count(ColumnName)
    Count(1)
    I think they are same, any one has any other opinion.

    Count(*)
    Count(ColumnName)
    Count(1)
    The diference that's
    Count(*), check all table' columns of which can more slowly
    Count(ColumnName), Only count data of especificaded column, no check null fields
    Count(1), check only the table's column 1
    The use depends on the sitacion, and therefore the best performance, depends on the proper use.

  • Count(*) VS count(indexed_column_name)

    Hi, after a lot of reading here in the forum and the "ask tom" site, I can see that count(1) and count(*) are on the same, count(*) prove to be even faster sometimes. My question is: This is the same for indexed columns declared inside the count clause? Example:
    select count(*) from Person p, (lots of nasty joins from here...)
    VS
    select count(indexed_primary_key_person) from Person p, (lots of nasty joins from here...)
    From my reading, that could be more efficient in older oracle version (7 and before). What about today? Same speed? And is this information write in some FAQ or book?
    Thanks in advance,

    An indexed column can still contain NULLs, so the count vs count(*) may not be the same.
    SQL> create table t as select * from all_objects;
    Table created.
    SQL> create index t_idx on t (subobject_name);
    Index created.
    SQL> select count(*) from t;
                COUNT(*)
                   73045
    SQL> select count(subobject_name) from t;
    COUNT(SUBOBJECT_NAME)
                     2407Of course, this has nothing to do with indexes.
    A primary key column will give you the correct count. In fact, if you do an explain plan on 'select count(*) from t' where the table has a primary key, Oracle will probably get the count from the index and never touch the table.
    SQL> alter table t add constraint t_pk primary key (object_id);
    Table altered.
    SQL> explain plan for
      2  select count(*) from t;
    Explained.
    SQL> @xp
    | Id  | Operation             | Name | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT      |      |     1 |   112   (0)| 00:00:02 |
    |   1 |  SORT AGGREGATE       |      |     1 |            |          |
    |   2 |   INDEX FAST FULL SCAN| T_PK | 76047 |   112   (0)| 00:00:02 |
    ----------------------------------------------------------------------

  • Count(*) Vs count(1)

    Hi
    Can some one tell me the difference between count(*) and count(1) in SQL
    I can see count(1) taking a lot of time compared to the other
    TIA

    Can some one tell me the difference between count(*)
    and count(1) in SQL
    I can see count(1) taking a lot of time compared to
    the other
    SQL is a language. There is no speed associated with it intrinsically.
    What database vendor are you using?
    And how are you timing it?
    And did you profile it?

  • Help! To design a counter for counting clocks

    Dear all,
    I want to design a counter that count all clocks of a square wave. I have tried but I am getting stuck somewhere. Here's attached the file that I started. In this project, my objective is to use NI-USB-6008 to send a square wave to an external oscilloscope. That square wave has to be self-controlled such that nth first clocks have  a certain frequency different to the next (n+1, .....,m) clocks. As part of that, I need to use a counter that I designed myself.
    Actually, I have the C++ codes for that:
    int count=0;
    if(result==1)
    count++;
    This is just the section that I want
    Attachments:
    DigOutFuncAuto.vi ‏180 KB

    Hello,
    I am a bit confused about your application, are you trying to count (input) clock edges or generate a clock signal with your 6008. If you want to count digital edges with the USB-6008 you can use the counter on the 6008 to count these edges; an example in the example finder exists already and can be found in the location shown below. If you want to generate this varying clock signal, it will be difficult with a USB-6008 since it software timed and updates to the digital line will depend on the updates over the USB bus. If you can clarify your application a bit, I may be able to make some suggestions.
    Eric
    Eric Liauw
    AE Specialist - Automated Test | CLD | CTD
    National Instruments

  • Reset clock count/encoder counts

    Is there a way to programatically reset the clock count using labview? I am using an encoder and an e series DAQ board. When I am counting with the encoder, I come to a point where I would like to reset it to zero. I see that the examples all show that the count is reset after the loop is complete, but I would like to reset it during the loop to use it as a positioning tool. Reset to zero then start counting again from that point. Is this possible? Thanks.
    Using Labview 6.1 and MIO16E DAQ Board.

    Use the "Counter Control.vi" (Data Acquesition-> Counter->Advanced Counter). With the control code 1 you can resets the counter. Alternatively you may use the VI with control codes 4 and 2 which disarms and arms the counter again ("If you follow a disarm with another arm, then the acquisition restarts from the beginning"). That should do.

  • Count(1),count(*),count(rowid)

    i found from oracle book that
    count(1)--fast
    count(*)--slow
    count(rowid)--fast
    but in this forum lot is said about the count function.and i.e count(1)=count(*)=count(rowid)
    then why even in the book fast & slow is mentioned.
    so does oracle internally converts count(*) to count(1) or really fast and slow comes into picture
    thanks

    If you read the various threads on this forum as well as on AskTom, you will see that Oracle internally converts count(<some constant>) to count(*) as part of the query rewrite, so they are essentially identical.
    When you start counting on rowid or particular columns then things can differ a little, but essentially ... not much.

  • Differenct between count(0), count(1) and count(*)...???

    Hi,
    Please clarify the difference b/w count(0), count(1) and count(*)...???.
    SQL> set timing on
    SQL> select count(0) from trade
    2 /
    COUNT(0)
    112158506
    Elapsed: 00:00:03.08
    SQL> ed
    Wrote file afiedt.buf
    1* select count(1) from trade
    SQL> /
    COUNT(1)
    112158506
    Elapsed: 00:00:02.01
    SQL> ed
    Wrote file afiedt.buf
    1* select count(*) from trade
    SQL> /
    COUNT(*)
    112158506
    Elapsed: 00:00:02.03
    SQL>
    Is there any differences??
    Thanks
    SATHYA

    Looks the same to me
    admin@10gR2> create table big_table as select * from all_objects;
    Table created.
    admin@10gR2> set autotrace traceonly
    admin@10gR2> alter system flush shared_pool
      2  /
    System altered.
    admin@10gR2> select count(1) from big_table;
    Execution Plan
    Plan hash value: 599409829
    | Id  | Operation          | Name      | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |           |     1 |   185   (2)| 00:00:03 |
    |   1 |  SORT AGGREGATE    |           |     1 |            |          |
    |   2 |   TABLE ACCESS FULL| BIG_TABLE | 72970 |   185   (2)| 00:00:03 |
    Note
       - dynamic sampling used for this statement
    Statistics
            322  recursive calls
              0  db block gets
            947  consistent gets
              0  physical reads
              0  redo size
            413  bytes sent via SQL*Net to client
            381  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              4  sorts (memory)
              0  sorts (disk)
              1  rows processed
    admin@10gR2> alter system flush shared_pool
      2  /
    System altered.
    admin@10gR2> select count(*) from big_table;
    Execution Plan
    Plan hash value: 599409829
    | Id  | Operation          | Name      | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |           |     1 |   185   (2)| 00:00:03 |
    |   1 |  SORT AGGREGATE    |           |     1 |            |          |
    |   2 |   TABLE ACCESS FULL| BIG_TABLE | 72970 |   185   (2)| 00:00:03 |
    Note
       - dynamic sampling used for this statement
    Statistics
            322  recursive calls
              0  db block gets
            947  consistent gets
              0  physical reads
              0  redo size
            413  bytes sent via SQL*Net to client
            381  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              4  sorts (memory)
              0  sorts (disk)
              1  rows processed

  • Difference count(*) and count(1)

    Is there any difference between count(*) and count(1)
    when write select count(*) from emp
    and select count(1) from emp
    output of both query are same plz tell me the difference
    thnks

    Just as a side note. Count does behave differently if you count by a column.
    ex.
    select count(*) from perf_results;
       COUNT(*)
           3222
    select count(fy_year) from perf_results;
    COUNT(FY_YEAR)
              3207If a column has a null value it will not be counted

  • Having trouble with counting program

    I made a program to count the number of lines and number of characters from an input file. My program (below) successfully does that, as far as I know. I must also call a function to count the number of occurences of a certain letter, in this case 'a'. I can compile with no errors, but when I execute, it says there is a problem at line 1961, which is the next to last character in my input file. It says it's out of bounds....??? Thanks for the help.
    import java.util.*;
    public class Count{
         public static void main(String[] args){
              Scanner keyBoard = new Scanner(System.in);
              String line;
              String totallines = "";
              int countline = 0;
              int countchar = 0;
              int totalcharacters = 0;
              int totallength = 0;
              while(keyBoard.hasNext()){
                   line = keyBoard.nextLine();
                   String lower = line.toLowerCase();
                   countline++;
                   int len = line.length();
                   totallength = totallength + len;
                   totalcharacters = totalcharacters + countchar;
                   totallines = totallines + line;          
              totallength = totallength + 1;
              System.out.println(countline);
              System.out.println(totallength);
              countChar('a', totallines, totallength);
         public static int countChar(char ch, String s, int totallength){
              int countcharacter = 0;
              for (int k = totallength-1; k >= 0; k--){
                   if (s.charAt(k) == ch){
                        countcharacter++;
              System.out.println(countcharacter);
              return countcharacter;
    }

    --...OutOfBounds exception means to indicate that an array has been accessed with an illegal index. The index is either negative or greater than or equal to the size of the array.
    --it also applies if you're goin to accessed your String.. try to double check all your loops that has an access to your strings....                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Reoccuring errors with volume file count, directory count, etc...

    I'll give a little back story...
    I purchased a new MacBook Pro 17" with OS X Lion (10.7.2) preinstalled back in January of this year (2012).  I migrated my user accounts from my old MacBook Pro 15" (2008) running OS X Snow Leopard.  Almost right away I started having issues of all sorts, including Admin accounts that wouldn't allow me admin priveledges, hidden user groups, apps that wouldn't run, multiple obscure error messages and a host of other issues.  After scouring forums like this one I used Disk Utility and not only discovered innumerable permission errors but also disk errors like these:
    Invalid volume file count
    (It should be 1656658 instead of 1656636)
    Invalid volume directory count
    (It should be 345764 instead of 345743)
    Invalid volume free block count
    (It should be 69344839 instead of 69355225)
    Volume header needs minor repair
    Disk Repair would correct the ACH/permission errors and above-noted disk corruption, but only temporarily.  After repairs I would reboot and be met with all of the same problems in the migrated accounts.  Over the following days I reinstalled OS X Lion at least three or four times, completely wiping the 750 GB hard drive before two of those reinstalls (even doing one-pass reformatting on one of those instances).  After reinstalling the OS, I would reinstall from TimeMachine and be met with all of the same problems again.
    I then brought my machine in to the Genius Bar where, after more than two-and-a-half hours they declared it to be an unknown issue that must be related to defective hardware and replaced my entire machine.  But wait - there's more!
    After getting home and moving my old accounts back over from TimeMachine all the same issues began reoccuring.  After at least two more OS reinstalls later I discovered that uninstalling Norton Internet Security seemed to fix some problems.  However, running Disk Utility still returned results like those listed above...
    Then there were the failed attempts at upgrading from 10.7.2 to 10.7.3 which  hung at the end the first two times and required complete OS reinstalls from the Recovery HD.  Several more headaches later I eventually I managed a sucessful upgrade.
    But still I find myself with a machine that stalls on boot-up at least once or twice a week, necessitating a power-off to interupt the process.  After each of these instances I run Disk Utility and get more of the same...
    Checking volume information.
    Invalid volume file count
    (It should be 1656658 instead of 1656636)
    Invalid volume directory count
    (It should be 345764 instead of 345743)
    Invalid volume free block count
    (It should be 69344839 instead of 69355225)
    Volume header needs minor repair
    The volume [...] was found corrupt and needs to be repaired.
    And now, this morning, after a month or two of all that... and after installing the Java Security Upgrade last night, I can't get into my accounts at all.  On first boot-up it hung for 20 minutes before I shut it down.  After running Disk Utility from Recovery Drive and repairing the drive I rebooted and got the log-in screen.  I clicked on my user icon, typed the correct password, was shown they white/grey screen for a few flickering seconds then was brought back to the log-in screen.  I rebooted to the Recovery Disk, ran Disk Utility, saw all the same errors again, repaired the disk, rebooted and got the same problems with logging in again.
    I've repeated this cycle five times today, as both a normal boot-up and in "Safe Mode" all with the same results.  I've repaired the disk using Disk Utility from Recovery Disk as well as accessing the disk in Target Mode, and always there are the same errors needing to be repaired.
    I don't buy that I'm dealing with a hardware issue.  My antivirus and security software are all up-to-date.  What the heck is going on?  Why do I keep having these disk problems?  Why can't I access my accounts anymore?  Why does it keep hanging during boot-up?  Why am I about to throw the machine out my bedroom window?

    WithoutID wrote:
    I don't buy that I'm dealing with a hardware issue.
    You have a software issue carried over from the previous computer likely caused by Norton and perhaps some other issues related to recent malware.
    Your going to need to copy your users data folders only to a external drive and disconnect everything,
    command r boot into Recovery,
    DU erase (with Zero) your Lion partition,
    install Lion fresh from Apple,
    setup with the same name (important),
    Software update,
    install all your programs from fresh sources,
    and return files from the external drive manually into their respective folders
    in that precise order.
    and for good performance for a long time, try not to go over 50% of the drive filled, but certainly not more that 75%
    Do not use migration or TimeMachine restores.
    This is known as a Fresh Install, where everything is brand spanking new and only vetted files are returned.
    It's a pain I know, the problem with too much automation, the crap seeps in and ruins everything.
    I don't migrate nothing, I like my machines to work perfectly.
    https://discussions.apple.com/docs/DOC-3046
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • Using DAQ-assist to input a waveform; need help building a counter to count voltage "spikes"

    Hey all! I'm pretty new to labView and even newer to this forum, but its nice to meet you all...I hope that perhaps someone can help me with my problem.
    Allow me to begin by detailing the specifications of the problem.  I am an undergraduate student, and have a job doing research in a MEMS (micro/nanotech) lab.  The graduate student I am making this program for is working on biomedical applications;  eventually, the program will be connected to a microdevice that has a tiny channel in it, cut through a wee little capacitor, which blood will run through.  As red blood cells pass this capacitor, the voltage will spike; meaning that for each voltage spike, we can (and are trying to) count the number of red blood cells.
    However, I am still in the early developement of the program, so this above specific info is not that important.  Basically, I am using a function generator to input a waveform to the DAQ assistant of, say 500 mV.  I am trying to write a program that increments a counter every time I turn the voltage above say 550 mV (peak-to-peak), counting the number of simulated "spikes."  I have tried quite a lot to write a working program, and although I have not gotten it to work yet, I will post a screenshot of my most recent attempt HERE:
    I thank you in advance for any helpful tips, advice, or straight up assistance you may be able to give me.  Please ask me any clarifying questions about the program I wrote or the application, or anything.  Happy Friday! 

    Hey guys, it's been a while!  A lot of stuff has been happening in my life and I have had virtually no time to work on my LabView project.  
    I did create a LabView program based off IanW's reccomendation.  I am unsure of what exactly is going wrong, but when I run it, only a simple "snapshot" of a waveform from the DAQ shows up in the graph.  Even when I put the DAQ assist in a seperate while loop, the same thing happens.  I am including a screenshot of the project in case I am messing something entirely different up.  If you happen to read this, I really appreciate your help and thank you Ian! 
    I am also having a random issue with the filter signal VI.  So that background signals in the actual experiment do not read as "spikes" I have been instructed to include a high-pass filter in the VI.  However, everytime I use the high pass filter VI, it botches my signal and turns it into a bunch of noise!  I, nor my graduate mentor (who isn't too well-versed in LabView) have any idea why this is - we've tried using different types of filters to no avail.  
    Lastly, I would like to talk to Peter about a few questions I had abour LabView design.  In case you're still around, I will write another post later today with more detail.  In the meantime, I will try to find some of the example VIs about shift registers   All who read this have a great day!
    Attachments:
    count spikes pic.png ‏29 KB

  • Count Over Count

    Hi, i was looking for some help in regards to understanding the general rule of using the count function. I am trying to build my knowledge of the different functions in order for me to have a better understanding so that I am writing my sql queries in the right way.
    What i was looking to find out was trying to understand the count function. As i understand I can apply the following in order to give me a count of a particular set of data.
    select number, count(*) AS no_count
    from test
    group by job_id;What I am trying to understand is if for some reason I wanted to use the results of the "count(*) AS no_count" to give me another set of results i.e. sum all values over 2 for example, would i write it like the following:
    select number, count(*) AS no_count,
    select count(no_count) having etc...
    from test
    group by job_id;or is the general rule that I would have to write a select within a select?
    If somebody could please help, would really appreciate it. Btw if there is any documentation on using count, as well as using this with other functions i.e. sum than that would be very useful as well.
    Thanks in advance.

    Solomon, thanks for your help. Apologies if i have not explained my question properly. The problem is that I haven't created the tables and have wrote my sample data and i am then trying to work out solutions before attempting to create the tables etc, which is probably where I am going wrong.
    The job_ids can be repeated, first job_count should give me total job counts belonging to each job_id.
    For example in your first dataset you have a job count for all jobs i.e. manager has 3 records with 1 job_count. So I would then like a column to give me a total count of job_count for each criteria i.e. manager had 3 total jobs. I have tried to breakdown the dataset you have shown alongwith the extras I am trying to add, to hopefully explain what I am looking for.
    JOB               JOB_COUNT       TOTAL_JOB_COUNT               OVER_1
    MANAGER                    1                    3                                   0
    PRESIDENT                  1                    1                                   1
    CLERK                         1                    4                                   0
    SALESMAN                  4                    4                                   0
    ANALYST                    2                    2                                   0
    MANAGER                   1                    3                                   0
    MANAGER                   1                    3                                   0
    CLERK                        1                    4                                   0
    CLERK                        2                    4                                   0
    [/CODE]
    So this tells from all jobs which job was dealt with first time so in this case it would be the president, the rest of the jobs were repeated.
    The total_job_count would be written like:select job, count(*) as TOTAL_JOB_COUNT
    but its the over_1 (or sum maybe, not sure) that is based on the results within the total_job_count that I need to look into to find values that equal to 1. Hence I thought I would have to write a count of a count, which is what I am not clear on.
    Sorry for the inconvenience, and really appreciate your help and time.
    Thanks
    Apologies, not sure how to write the resultset as added but appears all over the place.
    Edited by: 973436 on 17-Dec-2012 04:06                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Server count       thread count

    our server has 4 cpus(double  kernel), 8GB memory
    windows 2003       <b>64bit</b>
    we use netweaver 7.0 with sp6
    how much <b>server node</b>
    and   how much threadcount for '<b>applicationthreadmanager</b>' or '<b>threadmanager'</b>(MIN MAX Thread count)
    will increase <b>performance</b> ?
    regard

    Hey
    The amount of 'applicationthreadmanager' or 'threadmanager'
    is depended on two things:
    1. The system you are using, for example XI, BI and etc.
    2. The load on the system.
    In general, the J2EE comes with default,
    and if you are not having performance issues,
    than you should keep this parameter without any change.
    If you are having performance problems,
    like describes in the following links, you should change the configuration:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_mid/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d393530393231%7d
    Example for XI configuration:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_xi/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d393337313539%7d
    How to configure number of concurrent processes in XI?
    Example for Portal configuration:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_jas/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d383236333931%7d
    Here is an a link to the configure procedure:
    http://help.sap.com/saphelp_nw04/helpdata/en/47/9a3e759e2141a7b03e4f37e6c14074/frameset.htm

Maybe you are looking for

  • Using the same serial number on two devices, for Adobe Creative Suite 6 Master Collection

    I already have Adobe Creative Suite 6 Master Collection (student version) installed on my personal home computer, but I'm looking into buying a laptop, will I be able to install the same programs and use the same serial number on my laptop as well as

  • When i close firefox, i cant reload it

    when I close Firefox, I cant reload it. I uninstalled it, keeping my personal things and passwords, and re-installed it, but it still wouldn't load. So, I uninstalled it completely, and re-installed it. This allowed me to load it, so I thought I fixe

  • Macbook air (late 2011) & Apple TV

    How do I mirror my macbook air (late 2011) onto Apple TV?

  • SAP Business Explorer not working

    Dear Moderators, This is to have some advice regarding the problem in my system for Business Explorer. I am not able to open SAP Business Explorer's Query Designer, Report Designer and Web Application Designer. Error Descriptions: 1. SAP BEx  Query D

  • Date shown with a different format in MS Excel spreadsheet

    Dear forumers, I have quite an odd problem with my report program. In this report, I will need to send an attachment file (.XLS) in an email before displaying the report output in ALV. The FM, 'SO_DOCUMENT_SEND_API1' is used to send the email. Everyt