Dbx collector not collecting data for all threads

Hi, I am having problem with the dbx collector when I collect data from a multithreaded application. Data seems to be collected only from the first threads. Sun Studio 11
(dbx) attach -p 5501 my_proc
(dbx) threads
> t@2 a l@2 SI_SigThr() running in ___sigtimedwait()
t@3 a l@3 SF_autoReInit() running in ___nanosleep()
t@4 b l@4 SF_sendHeartBeats() running in ___nanosleep()
t@5 a l@5 SF_Main() running in ___nanosleep()
t@6 a l@6 MSI_TimerThread() running in ___nanosleep()
t@7 b l@7 HbtMonitor() running in ___nanosleep()
t@20 b l@20 umem_update_thread() sleep on 0xfe803ea8 in __lwp_park()
t@22 a l@22 FXI_SorterSpooler() sleep on 0xbd418 in __lwp_park()
t@23 a l@23 XCI_ReaderThread() running in __pollsys()
t@24 a l@24 MSI_ListenerThread() running in soaccept()
t@25 a l@25 MSI_ListenerThread() running in soaccept()
... and so on.... (sever hundred threads)
t@33 a l@33 ReconnectingThread() sleep on 0xc55f8 in __lwp_park()
... and so on.... (sever hundred threads)
(dbx) collector limit unlimited
(dbx) collector enable
(dbx) cont
^C
(dbx) collector show
collector enable
collector profile timer 10.007
collector profile on
collector synctrace threshold calibrate
collector synctrace off
collector hwprofile counter insts
collector hwprofile off
collector heaptrace off
collector mpitrace off
collector store directory "."
collector store experiment "test.3.er"
collector sample periodic
collector dbxsample on
collector sample period 1
collector limit none
collector archive on
(dbx) collector disable
When viewing the experiment only the t@2,t@3,t@4 and t@33 are seen!?
What

I had a few other questions in my earlier post.
During the time that data collection was running, how active (w.r.t. CPU time) should those threads be? When you run collect (instead of DBX) and look at timeline, how much activity do you see activity on the 'missing' threads during the similar segment (and loading) of the program's operation ? (I believe the collector won't record data if a thread does not get sufficient CPU time during the data collection period. )
Also, please post which OS version you are using and which version of collect & dbx. Thanks!

Similar Messages

  • 'ALL' variable value not bringing data for All Geo Units

    Hi everyone!
    In BEx 7.0 we can't use * as we did in 3.x to use all the variable values.
    Running a query in BEx 7.0, when I am selecting a variable value for Geographic Unit I see the value 'ALL' under the single value list.  I select this value but I get no data when I use it.
    What checks can I do to know this is working properly?
    Is this expected to work as it is was the * used in 3.x?
    Any help provided will be greatly appreciated.
    Thanks!

    Hi
    have you chekced the master data for the Geoobjects,
    have you checked the options at cube/Multi provider level to read data from Master / Transactional
    hope this help
    Regards
    Daya Sagar

  • Background job not updating data for some steps of program

    We have created a custom program and submitting the standard program RPRCCC_READ_KR1025
    which is used for conversion of AMEX credit card files.
    Since this program can update data for 1 company id at a time,we have created a background job
    for that program with 10 steps and 10 variants of data related to 10 different company codes.
    when this job is executed it is not updating data for all the 10 files , sometimes it updates 5,7,etc...
    If we execute the other files which didnt update in job manually they are getting updated.
    All the files executed with that program can be seen in PRTA transaction.
    Regards,
    Gautham.
    Edit: Solved.
    Since the standard program updates the database every time with commit work
    there should be some time until the next database update,so we can use wait command
    after the submit statement which will do the trick.
    Edited by: Gautham Vangaveti on Aug 5, 2010 7:20 PM

    Hi,
    I mean B(Sub Assembly)
    Item Rollup Flag
    A No
    --B                       Yes
    ---B1 No
    ---B2 No
    ---B3 No
    --C                      Yes
    In this case when we run cost rollup by giving item A, Oracle will consider below structure.
    A
    --C
    Regards,
    Sarvottam.

  • Why files in Lightroom mobile and files in the creative cloud not the same? idea-  one place(stored date) for all application ??????

    Why files in Lightroom mobile and files in the creative cloud not the same? idea- one place(stored date) for all application ??????

    Lightroom Mobile is not a cloud storage service. You shouldn't treat it as a way of backing up your files. You are merely storing Smart Previews of your files in the cloud space, high-quality JPEGs of your files regardless of their original format on your desktop. The point is that they are there so you can continue editing them in a Lightroom-like environment even while away from your desktop/laptop computer. The files in Lightroom Mobile can only be used in Lightroom Mobile.
    This is very different from what is offered by the Creative Cloud storage, which can be used to synchronize your files between any device (that can support the individual files).
    The vast difference in how each service works and its intended use is why they are separate.

  • Using bulk collect and for all to solve a problem

    Hi All
    I have a following problem.
    Please forgive me if its a stupid question :-) im learning.
    1: Data in a staging table xx_staging_table
    2: two Target table t1, t2 where some columns from xx_staging_table are inserted into
    Some of the columns from the staging table data are checked for valid entries and then some columns from that row will be loaded into the two target tables.
    The two target tables use different set of columns from the staging table
    When I had a thousand records there was no problem with a direct insert but it seems we will now have half a million records.
    This has slowed down the process considerably.
    My question is
    Can I use the bulk collect and for all functionality to get specific columns from a staging table, then validate the row using those columns
    and then use a bulk insert to load the data into a specific table.?
    So code would be like
    get_staging_data cursor will have all the columns i need from the staging table
    cursor get_staging_data
    is select * from xx_staging_table (about 500000) records
    Use bulk collect to load about 10000 or so records into a plsql table
    and then do a bulk insert like this
    CREATE TABLE t1 AS SELECT * FROM all_objects WHERE 1 = 2;
    CREATE OR REPLACE PROCEDURE test_proc (p_array_size IN PLS_INTEGER DEFAULT 100)
    IS
    TYPE ARRAY IS TABLE OF all_objects%ROWTYPE;
    l_data ARRAY;
    CURSOR c IS SELECT * FROM all_objects;
    BEGIN
    OPEN c;
    LOOP
    FETCH c BULK COLLECT INTO l_data LIMIT p_array_size;
    FORALL i IN 1..l_data.COUNT
    INSERT INTO t1 VALUES l_data(i);
    EXIT WHEN c%NOTFOUND;
    END LOOP;
    CLOSE c;
    END test_proc;
    In the above example t1 and the cursor have the same number of columns
    In my case the columns in the cursor loop are a small subset of the columns of table t1
    so can i use a forall to load that subset into the table t1? How does that work?
    Thanks
    J

    user7348303 wrote:
    checking if the value is valid and theres also some conditional processing rules ( such as if the value is a certain value no inserts are needed)
    which are a little more complex than I can put in a simpleWell, if the processing is too complex (and conditional) to be done in SQL, then doing that in PL/SQL is justified... but will be slower as you are now introducing an additional layer. Data now needs to travel between the SQL layer and PL/SQL layer. This is slower.
    PL/SQL is inherently serialised - and this also effects performance and scalability. PL/SQL cannot be parallelised by Oracle in an automated fashion. SQL processes can.
    To put in in simple terms. You create PL/SQL procedure Foo that processes SQL cursor and you execute that proc. Oracle cannot run multiple parallel copies of Foo. It perhaps can parallelise that SQL cursor that Foo uses - but not Foo itself.
    However, if Foo is called by the SQL engine it can run in parallel - as the SQL process calling Foo is running in parallel. So if you make Foo a pipeline table function (written in PL/SQL), and you design and code it as a thread-safe/parallel enabled function, it can be callled and used and executed in parallel, by the SQL engine.
    So moving your PL/SQL code into a parallel enabled pipeline function written in PL/SQL, and using that function via parallel SQL, can increase performance over running that same basic PL/SQL processing as a serialised process.
    This is of course assuming that the processing that needs to be done using PL/SQL code, can be designed and coded for parallel processing in this fashion.

  • Email Form Not Collecting Data

    I have an email form on my index page. The form is not
    collecting data. Any suggestions?
    Here's the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Home Page</title>
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: medium;
    body {
    background-color: #FF0099;
    a {
    font-size: 90%;
    color: #33FFCC;
    a:link {
    text-decoration: none;
    -->
    </style>
    <link href="/css/layout.css" rel="stylesheet"
    type="text/css" />
    </head>
    <body>
    <div id="container">
    <div id="top">
    <p><!--content for ID top goes here
    --></p>
    <p> </p>
    <p>Rocking Horse Video</p>
    </div>
    <div id="nav">
    <ul>
    <li><a
    href="/pages/index.html">Home</a></li>
    <li><a
    href="/pages/pricing.html">Pricing</a></li>
    <li><a href="/pages/SEHJ 8-08.html">Browse Your
    Rides</a></li>
    <li><a href="/pages/To Order.html">To
    Order</a></li>
    <li><a href="
    http://shop.rockinghorsevideo.com">Shopping
    Cart</a></li>
    </ul>
    <!--content for nav div goes here -->
    </div>
    <!--content for container goes here -->
    <div id="main">
    <div id="story">
    <h1 class="style1">Rocking Horse Video</h1>
    <h2 class="style2">High-Definition DVDs</h2>
    <h4><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70" class="image-left" />How was your last
    “Horse Shows In The Park?”  Wasn’t it
    fabulous?  Wasn’t it a total blast?  How was your
    horse over the jumps?  Weren’t those little girls with
    their pigtails and ponies adorable?  (Well, I guess they were
    cute when they weren’t beating you.)  Did you take home
    something (besides all those ribbons)  that truly captured the
    magic of that weekend , something that was yours to keep
    forever?</h4>
    That’s what Rocking Horse Video is all about. 
    Rocking Horse Video creates high-definition DVDs of you and your
    horse that you can enjoy for years to come.  Check out those
    rides.  Feel the exciting ambience of the show every time you
    watch your DVD.  These DVDs are more than a two minute ride to
    classical music.  Rocking Horse Video edits raw footage with
    state-of-the-art software to high-light your horse’s
    performance and reproduce more than a ride.   Every time
    you watch you get to experience the whole horse show all over
    again.
    <h2>Critique Your Rides</h2>
    <p>Rocking Horse Video gives you high-definition DVDs
    that entertain, educate, and sell.  See you and your horse in
    action and make your next horse show an even better one.  (You
    just have to beat those ponies next time.)  This is an
    affordable way to improve your performance for competitions to
    come.   Go over the video with your trainer and get
    double the benefit.</p>
    <h2>Sell Your Horse</h2>
    <p>Order a marketing video to show prospective buyers
    hands down how well your horse performs in the show ring.</p>
    <!--content for story div goes here --></div>
    <!--content for div main goes here -->
    <div id="sidebar"><h2><img src="/images/L'il
    Mite and Peanutbutter.jpg" width="150" height="113"
    class="image-left" />Capture Your Precious Memories</h2>
    Get a DVD at every show.
    <h5 align="left"><span
    class="style2"> Contact Rocking Horse
    Video</span><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70" class="image-right" /></h5>
    <p>By Email: <a href="mailto:[email protected]"
    class="style3">[email protected]</a><a
    href="mailto:[email protected]"></a><br />
    By Phone: (352)281-0322<br />
    By Mail: Rocking Horse Video<br />
    6714 NW 34th Drive Gainesville, FL 32653</p>
    <p>
    <!-- End Sign-Up Form -->
    <!-- End Sign-Up Form -->
    </p>
    <form action="gdform.asp" method="post"
    enctype="text/plain" name="email" id="email">
    <p>Would you like to subscribe to our email list so
    you can be notified of upcoming events?
    yes
    <input type="radio" name="subscribe" id="radio"
    value="radio" />
    no
    <input type="radio" name="subscribe" id="radio2"
    value="radio2" />
    </p>
    <p>email address:
    <input name="email address" type="text" id="email
    address" size="40" />
    </p>
    <p>
    <input type="submit" name="button" id="button"
    value="Subscribe" />
    <input name="recipient" type="hidden" id="recipient"
    value="[email protected]" />
    </p>
    </form>
    </div>
    </div>
    </div><!--end container div -->
    </body>
    </html>
    Thanks!
    Kate

    > <h4><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70"
    > class="image-left" />How was your last ?Horse Shows
    In The Park??? Wasn?t
    > it
    > fabulous?? Wasn?t it a total blast?? How was your horse
    over the jumps??
    > Weren?t those little girls with their pigtails and
    ponies adorable??
    > (Well, I
    > guess they were cute when they weren?t beating you.)?
    Did you take home
    > something (besides all those ribbons) ?that truly
    captured the magic of
    > that
    > weekend , something that was yours to keep
    forever?</h4>
    That's a big chunk of <h4>!
    > That?s what Rocking Horse Video is all about.? Rocking
    Horse Video
    > creates
    > high-definition DVDs of you and your horse that you can
    enjoy for years
    > to
    > come.? Check out those rides.? Feel the exciting
    ambience of the show
    > every
    > time you watch your DVD.? These DVDs are more than a two
    minute ride to
    > classical music.? Rocking Horse Video edits raw footage
    with
    > state-of-the-art
    > software to high-light your horse?s performance and
    reproduce more than a
    > ride.?? Every time you watch you get to experience the
    whole horse show
    > all
    > over again.
    That's a big chunk of nothing. You cannot have bare text like
    that on a
    page. It would have to be within a <p> tag, or
    something.
    > <form action="gdform.asp" method="post"
    enctype="text/plain"
    > name="email"
    > id="email">
    You are sending your form to a file called "gdform.asp" that
    is at the same
    folder level as this file. Is that file *there*?
    (it has nothing to do with a scripts folder)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "dreamer spiderwoman1" <[email protected]>
    wrote in message
    news:[email protected]...
    >I have an email form on my index page. The form is not
    collecting data.
    >Any
    > suggestions?
    >
    > Here's the code:
    >
    ...snip...
    >
    > <!--content for container goes here -->
    >
    > <div id="main">
    > <div id="story">
    > <h1 class="style1">Rocking Horse Video</h1>
    > <h2 class="style2">High-Definition DVDs</h2>
    > <h4><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70"
    > class="image-left" />How was your last ?Horse Shows
    In The Park??? Wasn?t
    > it
    > fabulous?? Wasn?t it a total blast?? How was your horse
    over the jumps??
    > Weren?t those little girls with their pigtails and
    ponies adorable??
    > (Well, I
    > guess they were cute when they weren?t beating you.)?
    Did you take home
    > something (besides all those ribbons) ?that truly
    captured the magic of
    > that
    > weekend , something that was yours to keep
    forever?</h4>
    > That?s what Rocking Horse Video is all about.? Rocking
    Horse Video
    > creates
    > high-definition DVDs of you and your horse that you can
    enjoy for years
    > to
    > come.? Check out those rides.? Feel the exciting
    ambience of the show
    > every
    > time you watch your DVD.? These DVDs are more than a two
    minute ride to
    > classical music.? Rocking Horse Video edits raw footage
    with
    > state-of-the-art
    > software to high-light your horse?s performance and
    reproduce more than a
    > ride.?? Every time you watch you get to experience the
    whole horse show
    > all
    > over again.
    > <h2>Critique Your Rides</h2>
    > <p>Rocking Horse Video gives you high-definition
    DVDs that entertain,
    > educate, and sell.? See you and your horse in action and
    make your next
    > horse
    > show an even better one.? (You just have to beat those
    ponies next
    > time.)?
    > This is an affordable way to improve your performance
    for competitions to
    > come.?? Go over the video with your trainer and get
    double the
    > benefit.</p>
    > <h2>Sell Your Horse</h2>
    > <p>Order a marketing video to show prospective
    buyers hands down how
    > well
    > your horse performs in the show ring.</p>
    > <!--content for story div goes here
    --></div>
    >
    > <!--content for div main goes here -->
    >
    > <div id="sidebar"><h2><img
    src="/images/L'il Mite and Peanutbutter.jpg"
    > width="150" height="113" class="image-left" />Capture
    Your Precious
    > Memories</h2>
    > Get a DVD at every show.
    > <h5 align="left"><span
    class="style2">?Contact Rocking Horse
    > Video</span><img src="/images/Rocking Horse
    Video.jpg" width="100"
    > height="70"
    > class="image-right" /></h5>
    > <p>By Email: <a
    href="mailto:[email protected]"
    > class="style3">[email protected]</a><a
    > href="mailto:[email protected]"></a><br
    />
    > By Phone: (352)281-0322<br />
    > By Mail: Rocking Horse Video<br />
    > 6714 NW 34th Drive Gainesville, FL 32653</p>
    > <p>
    >
    > <!-- End Sign-Up Form -->
    > <!-- End Sign-Up Form -->
    > </p>
    > <form action="gdform.asp" method="post"
    enctype="text/plain"
    > name="email"
    > id="email">
    > <p>Would you like to subscribe to our email list
    so you can be
    > notified of
    > upcoming events?
    > yes
    > <input type="radio" name="subscribe" id="radio"
    value="radio" />
    > no
    > <input type="radio" name="subscribe" id="radio2"
    value="radio2" />
    > </p>
    > <p>email address:
    > <input name="email address" type="text" id="email
    address" size="40"
    > />
    >
    > </p>
    > <p>
    > <input type="submit" name="button" id="button"
    value="Subscribe" />
    > <input name="recipient" type="hidden" id="recipient"
    > value="[email protected]" />
    > </p>
    > </form>
    >
    > </div>
    > </div>
    > </div><!--end container div -->
    > </body>
    > </html>
    >
    > Thanks!
    >
    > Kate
    >

  • Please do not enter data for payment method Cheque papel error in IT0009

    Hi Experts,
    Whenever i try to  maintain bank details infotype for payment type C(Check Papel),the  system is throwing error "Please do not enter data for payment method Cheque papel". As per SAP std, I had deleted the entries for bank key, bank account and bank control key and maintained IBAN field in IT0009.While saving i am getting the error""Please do not enter data for payment method Cheque papel" and I couldn't save the record.
    Then i  deleted the entries for bank key, bank account and bank control key and IBAN field also in IT0009. While saving i am getting the error "Fill in all required entry fields". System behaves  as if Iban a required field in IT0009. Our bank details infotype is country specific.We made it country
    specific through feature P0009 and setting in table T588M.As per our conf setting IBAN field is optional. Even though IBAN field is optional, this field behaves  as that of a mandatory field in IT0009.Iam  facing this issues only for a few countries like Spain,Italy etc.For other counties i am able to change of create Bank details record  for payment type C.
    I have checked in Payment Methods by Country in FBZP (Payment Method Classification is set to Check and BANK DETAILS box is unchecked) but still no solution. Do i need to check in any other setting.
    Please shed some light on this issue.Thanks in Advance.

    Hi Jobish,
    It's weird but I tried the below method and it works
    Here's what you can try in case you do not want to enter the bank details for payment method 'C'..
    Tcode FBZP - > payment methods by country - > select payment method as 'C' and make below changes (make a note of these changes as you will have to undo them after saving the table):
    a. Payment method by classification - select bank transfer
    b. Reqd master record specifications - check the bank details options and select the options which you want to be entered (a/c no required, IBAN rqd, SWIFT code rqd)
    Save the table.
    PA30- > Edit any record once again and save it.
    Again go to FBZP and undo the above changes, i.e, revert to the original entries and again save the table.
    Try editing the record now in PA30 and it allows to save. This is the second weird workaround that I have come across and still not sure why
    After above workaround, I didn't get any error while maintaining the record, for this or any pernr.
    See if it works.
    Regards
    Neha

  • Difference between Due Date for All Tasks and Duration per task in an approval workflow

    Hello,
    I'm starting to read up and learn about approval workflows in Designer 2010.  I am confused by the fields "Due Date for all Tasks" and the "Duration per task".  I understand that the Due date for all Tasks is the date that all
    of the tasks in the workflow must be completed by.  And I understand that the duration means each task has x number of days to complete.
    But I dont know whey we need them both.  If I have the task duration set to two days and there are 3 tasks involved, then wouldn't the due date be 6 days from the start?  Why would I have a due date for all tasks that is completely different than
    the sum of the duration of days for each task? 
    Please help shed some light!

    Hi Michelle,
    Due date for all tasks, this setting specifies the date by which all tasks are due. It’s used for serial and parallel
    task.
    Duration per tasks, this setting specifies the date by which an individual
     task is due, it’s used for serial workflow participants.
    Note, when you create an approval workflow, select task process participants(approvers oob approval workflow), we can also
    select once at a time(serial) or all at once(parallel).
    For more information, see
    http://office.microsoft.com/en-us/sharepoint-server-help/use-an-approval-workflow-HA101793831.aspx
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • Help,why brconnect do not collect statistics for mseg table?

    I found "MSEG" table`s statistics is too old.
    so i check logs in db13,and the schedule job do not collect statistics for "MSEG".
    Then i execute manually: brconnect -c -u system/system -f stats -t mseg  -p 4
    this command still do not collect for mseg.
    KS1DSDB1:oraprd 2> brconnect -c -u system/system -f stats -t mseg u2013f collect -p 4
    BR0801I BRCONNECT 7.00 (46)
    BR0154E Unexpected option value 'u2013f' found at position 8
    BR0154E Unexpected option value 'collect' found at position 9
    BR0806I End of BRCONNECT processing: ceenwjre.log 2010-11-12 08.41.38
    BR0280I BRCONNECT time stamp: 2010-11-12 08.41.38
    BR0804I BRCONNECT terminated with errors
    KS1DSDB1:oraprd 3> brconnect -c -u system/system -f stats -t mseg -p 4
    BR0801I BRCONNECT 7.00 (46)
    BR0805I Start of BRCONNECT processing: ceenwjse.sta 2010-11-12 08.42.04
    BR0484I BRCONNECT log file: /oracle/PRD/sapcheck/ceenwjse.sta
    BR0280I BRCONNECT time stamp: 2010-11-12 08.42.11
    BR0813I Schema owners found in database PRD: SAPPRD*, SAPPRDSHD+
    BR0280I BRCONNECT time stamp: 2010-11-12 08.42.12
    BR0807I Name of database instance: PRD
    BR0808I BRCONNECT action ID: ceenwjse
    BR0809I BRCONNECT function ID: sta
    BR0810I BRCONNECT function: stats
    BR0812I Database objects for processing: MSEG
    BR0851I Number of tables with missing statistics: 0
    BR0852I Number of tables to delete statistics: 0
    BR0854I Number of tables to collect statistics without checking: 0
    BR0855I Number of indexes with missing statistics: 0
    BR0856I Number of indexes to delete statistics: 0
    BR0857I Number of indexes to collect statistics: 0
    BR0853I Number of tables to check (and collect if needed) statistics: 1
    Owner SAPPRD: 1
    MSEG     
    BR0846I Number of threads that will be started in parallel to the main thread: 4
    BR0126I Unattended mode active - no operator confirmation required
    BR0280I BRCONNECT time stamp: 2010-11-12 08.42.16
    BR0817I Number of monitored/modified tables in schema of owner SAPPRD: 1/1
    BR0280I BRCONNECT time stamp: 2010-11-12 08.42.16
    BR0877I Checking and collecting table and index statistics...
    BR0280I BRCONNECT time stamp: 2010-11-12 08.42.16
    BR0879I Statistics checked for 1 table
    BR0878I Number of tables selected to collect statistics after check: 0
    BR0880I Statistics collected for 0/0 tables/indexes
    BR0806I End of BRCONNECT processing: ceenwjse.sta 2010-11-12 08.42.16
    BR0280I BRCONNECT time stamp: 2010-11-12 08.42.17
    BR0802I BRCONNECT completed successfully
    the log says:
    Number of tables selected to collect statistics after check: 0
    Could you give some advices?  thanks a lot.

    Hello,
    If you would like to force the creation of that stats for table MSEG you need to use the -f (force) switch.
    If you leave out the -f switch the parameter from stats_change_threshold is taken like you said correctly:
    [http://help.sap.com/saphelp_nw70ehp1/helpdata/EN/02/0ae0c6395911d5992200508b6b8b11/content.htm|http://help.sap.com/saphelp_nw70ehp1/helpdata/EN/02/0ae0c6395911d5992200508b6b8b11/content.htm]
    [http://help.sap.com/saphelp_nw70ehp1/helpdata/EN/cb/f1e33a5bd8e934e10000000a114084/content.htm|http://help.sap.com/saphelp_nw70ehp1/helpdata/EN/cb/f1e33a5bd8e934e10000000a114084/content.htm]
    You have tried to do this in your second example :
    ==> brconnect -c -u system/system -f stats -t mseg u2013f collect -p 4
    Therefore you received:
    BR0154E Unexpected option value 'u2013f' found at position 8
    BR0154E Unexpected option value 'collect' found at position 9
    This is the correct statement, however the hyphen in front of the f switch is not correct.
    Try again with the following statement (-f in stead of u2013f) you will see that it will work:
    ==> brconnect -c -u system/system -f stats -t mseg -f collect -p 4
    I hope this can help you.
    Regards.
    Wim

  • In mdx how to get max date for all employees is it posible shall we use group by in mdx

    in mdx how to get max date for all employees is it posible shall we use group by in mdx
    example
    empno  ename date
    1         hari        12-01-1982
    1         hari        13-06-2000
    by using above data i want to get max data

    Hi Hari3109,
    According to your description, you want to get the max date for the employees, right?
    In your scenario, do you want to get the max date for all the employees or for each employee? In MDX, we have the Max function to achieve your requirement. You can refer to Naveen's link or the link below to see the details.
    http://www.sqldbpros.com/2013/08/get-the-max-date-from-a-cube-using-mdx/
    If this is not what you want, please provide us more information about the structure of you cube, so that we can make further analysis.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Save persistents data for all users

    Hi
    The persistent datas are save for one specified user, the user logged in into the system (e.g. Windows).
    Is it possible to save persistent data for ALL users?
    If yes how?
    Thanks
    Hans

    Hi Hans
    IMO it might be a bit tricky. As you know - Persistence objects are stored in databases. I presume you're not asking about document database. Second database is stored in SavedData file which is located in per user data directory. I.E. on mac in ~/Library/Caches/Adobe Indesign/Version 6.0/en_US/Indesign SavedData
    Probably you need to create your own implementation of persistence or take a look on relations between file system and IDataBase interface.
    Regards
    Bartek

  • I am trying to confirm the time at which a particular backup occurred using an external hard drive that I have since misplaced. Although time machine lists the backup times for some backups, it does not list them for all. Can someone help?

    I am trying to confirm the time at which a particular backup occurred using an external hard drive that I have since misplaced. Although time machine lists the backup times for some backups, it does not list them for all, including the one in question. Can someone help?

    Okay, I've sussed it.  I saw a link to another discussion that hadn't turned up in any of my searches before I posted the question above.
    My Tosh HDD was formatted to FAT 32 and therefore would not be backed up by Time Machine.  I removed all data from it - nightmare as I hadn't enough space to put it on the macbook HDD, but, after trawling through numerous photos and deleting rubbish for hours, I finally made enough space and copied all data across.  Then, after clearing the data from the Tosh HDD, I used disk utilitity to reformat it to Mackintosh OS Extended.  Chose the option without kournalling because I'm not baking up onto this disk and so don't need it - according to some other discussions I found.
    When it was done I check on time machine in system prefs and once I selected options, I was able to remove it from the excluded from backups list.  Hey presto.  Now I'm moving my photo library and my music library onto the Tosh HDD and my macbook should start to breath again.  Hurray.

  • Tlanes not being created for all locations for one product

    Hello Experts - I need some advice on the following situation:
    We have a set of products where tlanes are only being created for 3 locations out of many.  What would cause the tlanes to not be generated for all locations if all master data elements are present?  We have a valid inforec, mrp views, etc.  I can't see anything different with the 3 locations that are working correctly.
    Any help would be much appreciated.
    Thanks!

    Thank you for your resopnse:
    To answer your questions, yes, we have done all of these things and the tlanes are still not being created.  We have been using SPP for 6 months and this is the first time we've seen this problem.  Do you have any other suggestions or is there any more information I can provide you that would be helpful in solving.
    Thanks in advance for your advice.
    AAF1999

  • Custom Dashboards not collecting data

    Hi, i have been having issues with my custom dashboards that are not collecting data, I have gone through the event log and the only error im getting are the following:
    Cannot connect to Operations Manager Root Management Server.
    Error: The OpsMgr SDK Service is not running on Operations Manager Root Management Server 'localhost'.
    I have been getting alot of these errors mentioned above in the event log.
    Connection with the Operations Manager Root Management Server failed.
    Error: The Exchange Monitoring Correlation service cannot connect to the Operations Manager Root Management Server SDK Service. Exchange alerts will not be raised.
    Number of occurrence: 4
    Retrying in 30 seconds...
    component SMS_STATE_MIGRATION_POINT on computer "server name" reported:  SMS Executive detected that this component stopped unexpectedly.
    Possible cause: The component is experiencing a severe problem that caused it to stop unexpectedly.
    any advice would be greatly appreciated, thanks.

    Hi,
    Are you getting errors 714 and error 717? What is your SCOM version?
    If you are running SCOM 2012 SP1, you may try o install UR5 for it and check the result.
    To resolve this error, please also try to restart the following Root Management Server services:
    Config service (Microsoft.MOM.ConfigServiceHost.exe)
    Health Service (HealthService.exe)
    SDK service (Microsoft.MOM.Sdk.ServiceHost.exe)
    Please also go through the article below:
    https://technet.microsoft.com/en-us/library/ff360495%28v=exchg.140%29?f=255&MSPPError=-2147217396
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Auditing not collecting data

    Auditing has not been collecting data for some time.  I opened CMS log file in this directory (D:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\Logging) and there were several entries with the following starting at the same time data stopped being inserted into this table - ORA-01653: unable to extend table BOXIR2_AUDIT.AUDIT_DETAIL by 1024 in tablespace BOTBS.
    My DBA has extended this tablespace, how/when do I verify if this issue has been resolved?  I have run a couple of reports after the db change, but still no auditing data.

    CMS gets restarted weekly after DB backups have been completed.  10 mins after CMS has completed a restart, the connection to the audit database is lost.  CMS and Audit schemas are on the same db instance.
    Edited by: Richard Mills on Nov 10, 2009 9:52 PM

Maybe you are looking for