How many entries are in my tree?

Hi,
I want to know how many entries are in my LDAP (sub)tree.
I know the attribute numsubordinates, but this is only for immidiate subordinates.
Any ideas?
Regards,
Ingo

So you could leverage that knowledge to do some calculation. For instance - if you query the directory server for objectclass and numsubordinates equal to present you will get all of the subtree counts.
For instance:
ldapsearch -b "dc=namespace,dc=com" -h machine -p port -D "binddn" -w bindpwd "(&(objectclass=*)(numsubordinates=*))" numsubordinates
This will output every entry that has a number of subordinates - then you can basically add them together to get a nice approximation ...
Course if you have several hundred subtrees this may be painful ...
HTH
-Chris Larivee

Similar Messages

  • Find out how many entries are in DB-Tables

    Hi,
    is there any dbtable where the count of dbtable are stored.
    I don't want to use select count( * ) ..
    because i don't know the table name.
    I will know which tables have more then 10000 entries.
    Regards, Dieter

    USE THIS DEMO CODE -
    parameters t_name like DNTAB-TABNAME.
    DATA D_VALUE TYPE I.
    CALL FUNCTION 'TABLECOUNT'
      EXPORTING
        table            = T_NAME
    IMPORTING
       COUNT            = D_VALUE
    CHANGING
      CLIENT           =
    EXCEPTIONS
       NO_TABLE         = 1
       NO_NAMETAB       = 2
       NO_CLIENT        = 3
       OTHERS           = 4          .
    IF SY-SUBRC NE 0.
    MESSAGE W000(000) WITH 'NOT FOUND'.
    ELSE.
    IF D_VALUE GT '10000'.
    WRITE 'COUNT GREATER THAN 10K'.
    ELSE.
    WRITE 'LESS'.
    ENDIF.
    ENDIF.

  • How can I see how many entries in an address Book group ?

    I used to be able to see at a glance how many entries there were in any particular group.
    This now seems to have vanished :-(
    Can I get it back easily ?

    I agree with Bengt W. There are many reasons, even in a simple movie, to want to know the timing of things. This is a surprisingly frustrating product. For want of timing information, you are requiring your users to pay $300?
    In my situation, I took some video of a show (with the performers permission) with an iPad and an iPod.  All I want to do is make a movie with one video as the main position with a series of cutaway clips from the other. It is incredibly frustrating to do this without knowing where you are within each clip.
    When helpful and capable forum participants like we have here have to spend time explaining how best to make do with a product, it's a clear indication of a fault with the product. Now, I either have to spend extra time in iMovie making due with this crippled interface, or I have to spend time looking for an alternative product.
    Consider this a feature request!

  • Can you see how many calls are waiting in a queue using Supervisor.

    Is there a way to see how many calls are sitting in a particular queue using supervisor or is there and additional software or hardware i need to use or purchase?
    I am using  Contact Center - 5.0(2)SR01_Build053

    Do you see any CSQs listed in the upper left box in the Supervisor?
    If so, when you click on one or the top-level tree item you should see stats relating to CSQs to the right. You may have to scroll that window accross so see some stats.
    Regards
    Aaron

  • How many entries can we put in the select options

    Hi all,
    As per  my requirement I am trying to store the data in the select-option( s_kunnt)  as below
    select kunnr from kna1 into (l_kunnr) where
                and spart in p_spart.
      move 'I'         to s_kunnr-sign.
      move 'BT'        to s_kunnr-option.
      move l_kunnr to s_kunnr-low.
      move l_kunnr  to s_kunnr-high.
      append s_kunnr.
    endselect.
    Using s_kunnr in the select statement to fetch the data.
    When the customer numbers are more than 1800 in the s_kunnr, select statment going to the dump. Is number of entries in the select options are restricted for some count( around 1800)?.
    How many entries can we put in the select options?
    Thanks
    Regards
    Raj.

    Firstly, there is an error in your code. You should do the following instead:
    move 'I' to s_kunnr-sign.
    move 'EQ' to s_kunnr-option.
    move l_kunnr to s_kunnr-low.
    append s_kunnr.
    To answer your original question, the limit depends on the field width you are using in the ranges. If the field width is small, you can have thousands of entries in the range table.
    The limitation is in the length of the SQL statement string generated by the ABAP OPEN SQL engine. With the way I defined it above, the statement would have WHERE KUNNR IN ( 'value1', 'value2', 'value3'). With way you defined it, it would have WHERE KUNNR BETWEEN 'value1' and 'value1' and KUNNR BETWEEN 'value2' and 'value2'.
    When the range table is so large that it results in a short dump, you should look into FOR ALL ENTRIES option of SQL.

  • How many 'seats' are included with Adobe Creative Cloud for teams?

    How many 'seats' are included with Adobe Creative Cloud for teams?

    Hi Mrfrodo,
    There isn't a set number, you purchase the number you would need based on the size of your organization.
    This section of the FAQ might also be helpful for you to learn more about team too.
    http://www.adobe.com/products/creativecloud/faq.html#ccm-teams
    -Dave

  • Report to show me how many invoices are being processed by users

    Hi, 
    I am currently working as a Accounts Payable Supervisor and I would like to run a report to show me how many invoices are being processed by users in my team. 
    Currently I am using Transaction F.98  (Posted Docs by user report), but this report includes posting from intercompany so all users will have duplicate invoices showing on this report. 
    Is there any other report I could run to get the result I am after?
    Many thanks
    Alex

    Hello Alex,
    You can also use the GL line item report (FBL3N) with the offsetting accounts (for example GR/IR A/c) which would be posted while posting the invoice. You can display the results with User Name and also can create a layout of your own which can be used time and again.
    Kind Regards // Shaubhik
    Edited by: Shaubhikg on Nov 10, 2010 6:02 AM

  • How to see how many users are working on a Dynpro application?

    Hello,
    Is it possible to see somwhere at the portal or on the WAS how many users are currently working with my Web Dynpro application?

    Hi Roy,
    I know it isn' exactly what you want but if you got to:-
    System Administration->Support->Web Dynpro Test Tools->User Management
    you can at least see the users currently running Web Dynpro applications (I think!)
    At least its a start!
    Cheers,
    Gareth.

  • How many users are working on EBS

    is it possible to find out how many users are currenlty at the same time working on EBS.
    Like how many payable users, mfg uers OTL users.

    Hi,
    Below sql will find how many users are currently working on EBS,
    SELECT distinct icx.session_id, icx.user_id, fu.user_name, fu.description
    FROM icx_sessions icx, fnd_user fu
    WHERE disabled_flag != 'Y'
    AND icx.pseudo_flag = 'N'
    AND ( last_connect + DECODE (fnd_profile.VALUE ('ICX_SESSION_TIMEOUT'),
    NULL, limit_time, 0, limit_time, fnd_profile.VALUE ('ICX_SESSION_TIMEOUT') / 60 ) / 24) > SYSDATE
    AND icx.counter < limit_connects
    AND icx.user_id = fu.user_id
    order by 4;
    Thanks,
    Amogh

  • How many users are supported on a Cisco Aironet 1141N? 30?

    I have a client that wants to upgrade his Aironet 1131 APs with 1141N.  How many users are supported on a Cisco Aironet 1141N?

    Yes, you could have 30 clients on the AP. 
    Client density all depends on what the client is doing, really.
    So if you have clients that are just web surfing and pulling email 30+ isn't a problem.  If they are all streaming video, then you want to plan for less clients per AP, and more APs.
    Steve

  • Can I use my airport to see how many devices are on my network?

    Can I use my airport to see how many devices are on my network?

    No, that info was removed from the airport utility at v6 toyland edition.
    The last real utility was 5.6.1 and although it is not actually supposed to work on AC model it does sometimes.
    But you can generally see what is on your network using the netstat command in the computer..
    Open the network utility and go to the netstat page and run scan.. this can take a few minutes.. and should show all the clients as well as the router/s. At least all the ones the computer can see.
    The network utility is under utilized as people seem to not know of it.
    There are iOS tools like this as well. Sorry but I don't remember the name/s.

  • How many books are approved a day - here are some stats

    Do you want to know why it is taking forever to get your iBook approved? Do you wonder how many books are actually approved per day? I was asking myself the same question and because Apple doesn't release any numbers, I monitored the numbers on the iBookstore recently to get an idea.
    Here are the numbers (just to get a rough idea, not scientifically proven)
    The iBookstore has finally a feature that lets you browse only iBooks (aka Multi-Touch Books). It displays the numbers of all available Paid and Free iBooks. That is what I was monitoring each morning.
    When I started to monitor the iBookstore on May15th it had a total of 3,217 iBooks. If you use January 19th as the start date, then Apple would have approved an average of 26 books a day.
    Now here is a table where I wrote down the number from the iBookstore each morning of that day. The two columns next to it show the difference (how many approved that day) and the total number of approved iBooks (paid and free)
    There are a few interesting conclusions you can draw from the numbers.
    * You see a drop over the weekend. Maybe that is proof that the department is located in the US and not in China or India.
    * The approval numbers fluctuate but the average is about twice as high as the 26 books from the original start. So they must have hired more staff (or reading faster)
    * Interesting that there was a big junk of free iBooks yanked off the bookstore
    Another unscientific info about the bestseller ranking from my own stats.
    With about 10 sales a day I land in the 30s rank.
    WIth about 2 sales a day it ranges from number 50-100
    Those numbers fluctuate wildly and I'm sure there are other factors (i.e. total sales) in that calculation.
    It would be interesting to hear numbers and experiences from other users.
    Edgar Rothermich
    DingDingMusic.com

    I looked up the number of book titles per category in Apple's and Amazon's bookstores yesterday:
    Category
    Amazon
    Apple
    Percent
    Professional & Technical
    107804
    360619
    26.98%
    26.98%
    Fiction & Literature
    20700
    227773
    17.04%
    44.02%
    Reference
    49942
    95433
    7.14%
    51.16%
    Business & Personal Finance
    78007
    76608
    5.73%
    56.89%
    Halth, Mind & Body
    63303
    4.74%
    61.63%
    History
    244585
    51904
    3.88%
    65.51%
    Religion & Spirituality
    123177
    49448
    3.70%
    69.21%
    Romance
    82851
    48581
    3.63%
    72.85%
    Children & Teens
    67825
    47718
    3.57%
    76.42%
    Nonfiction
    46908
    3.51%
    79.93%
    Mysteries & Thrillers
    64773
    41776
    3.13%
    83.05%
    Sci-Fi & Fantasy
    60828
    39861
    2.98%
    86.03%
    Arts & Entertainment
    71065
    37874
    2.83%
    88.87%
    Biographies & Memoirs
    60365
    33643
    2.52%
    91.38%
    Science & Nature
    87395
    27825
    2.08%
    93.47%
    Computers & Internet
    29770
    17558
    1.31%
    94.78%
    Politics & Current Events
    33551
    17461
    1.31%
    96.09%
    Travel & Adventure
    21181
    11874
    0.89%
    96.97%
    Cookbooks, Food & Wine
    8593
    0.64%
    97.62%
    Sports & Outdoors
    20909
    8443
    0.63%
    98.25%
    Lifestyle & Home
    73509
    8082
    0.60%
    98.85%
    Humor
    30506
    7265
    0.54%
    99.40%
    Comics & Graphic Novels
    4559
    0.34%
    99.74%
    Parenting
    27879
    3407
    0.25%
    99.99%
    Textbooks
    100
    0.01%
    100.00%
    1356622
    1336616
    These numbers are upper bounds, as book titles can be in up to three categories. So the real number of unique titles is probably closer to 1/3 or 1/2 of the 1.33 million, which is close to K T's 700,000 number.
    Amazon and Apple are similar in total number of titles (with a few different categories). I had expected there to be much less titles in the Apple bookstore compared to Amazon. So selection size isn't much of a differentiator anymore. That said, number of sales are still far higher in the Amazon store. Many early eBook adopters still prefer their Kindle over the iPad when looking for new eBooks.

  • HT204074 I do not see a "Manage Devices" link when I access my account information through iTunes. I want to know how many devices are linked to my account. Can anyone help?

    I have accessed the Apple Support site http://support.apple.com/kb/ht4627 but I could not find the "Manage Devices" link on iTunes. The advice they give is as follows:
    You can view which devices or computers are currently associated, remove unused devices or computers, and see how long before they can be associated with a different Apple ID from the Account Information page in iTunes on your computer:
    Open iTunes.
    Sign in to your Apple ID by choosing Store > Sign In from the iTunes menu.
    Choose Store > View My Account from the iTunes menu.
    From the Account Information screen, click Manage Devices.
    Next to each device or computer name, you will be able to see when each was associated to your Apple ID. You will also be able to track how many days are remaining before your associated devices or computers can be associated to a different Apple ID.
    Help would be greatly appreciated! Thank you!

    Hello from Albania,
    Please help me !! I'm desperate
    I sold my iPhone 4s a few months ago.
    Now i got my self a new iPad and created a new apple ID which i recently accociated with ITunes and ICloud.
    However, i can't update anything on my Mac since it still requires the old apple id, even though i changed it anywhere i could.
    I also don't get the manage devices when i tried to do this through the iTunes.
    I have no idea what to do.
    Waiting for your reply.
    Regards

  • How can i see how many people are using my apple id without changing the password ?

    how can i see how many people are using my apple id without changing because some people have it

    I'm not sure that you can. Why have so many people got your password? So many in fact, that you don't know how many.
    You can see how many computers are authorised to play any songs you have purchased from the iTunes Store, but that isn't quite the same thing.
    Perhaps a better idea would be to change the password and not let anyone else know what it is. That would at least prevent anyone else from changing it and locking you out of your own account.

  • How can I see how many devices are registered in my Apple Account and/or Apple ID?, How can I see how many devices are registered in my Apple Account and/or Apple ID?

    How can I see or determine how many devices are registered in my Apple Account and/or Apple ID?

    Sign in here and check:
    https://daw.apple.com/cgi-bin/WebObjects/DSAuthWeb.woa/wa/classicLogin?appIdKey= 58ef9db8ff4d201409e7270a68e4408ae1678e1618204c476572a1b5e5fb3518&path&language=U S-EN

Maybe you are looking for