Specifying user-ID for gathering perfmon statistics from windows servers?

When using OATS Load Testing to gather statistics from Windows servers (perfmon stats), the user-Id the Load Testing server is running under must be a member of the Performance Monitoring group on all the Windows servers I am trying to monitor. I have a standard user-ID I use for this kind of monitoring. It is automatically setup on all the servers in our enterprise. Where do I specify this user-ID and password in OATS Load Testing?
The only reference I can find in the documentation says to change the user-ID and apassword in the Oracle Load Testing Agent Serivce. I don't think this is what I want. And, there is no service called "Oracle Load Testing Agent Service" installed on my server anyway.
Thanks for the help!

To gather any Server Stats (i.e. perfmon) data the OLT controller must communicate with a data collector process. The data collector process is olt-dc-java-agent.exe, which I recall is also kicked off by the Agent Manager Service (just like it does for the javaagent load agent process). I think you have configured the collecting of server stats data to be collected from a remote agent machine, which is fine, but you could configure SS to collect from the service running on the OLT (oats controller) machine.
There is a reason why the DC processes can be separated from the OLT machine. If you testing and SS collecting in a single subnet environment, then it is fine to default your OLT/SS environment to use this single OLT AgentManagerService/DCollector configuration. Though, in the case where the servers you need to collect from are behind a firewall, you will need to install that AgentManagerService/DCollector combo on a machine behind the firewall, and also configure OLT/SS to talk to that 2nd data collector. A second example is when you are collecting so much data that the single data collector is stressed. So in that case simply creating a 2nd data collector machine will distribute the gathering of data.
btw, you should consider not using your Network UserID/Pass for authenticating the agent manager service. Best practice is to ask your IT to create a special user/pass to handle the server stats needs. Then there is no conflict if you change your password in the future.

Similar Messages

  • How to select all  indexes in a schema , for gathering the statistics

    In OEM 10g , How can we select all the indexes in a particular schema for gathering the statistics.
    For example , consider the schema got 1500 indexes. When i clicked on select all , it is selecting 10 indexes in one stretch ( all which are present in that page).
    For 1500 indexes , i have to make 150 such selection.
    How can we avoid it.
    In 9i OEM, its quite simple. With just 1 mouse clicke , we can select all the indexes .
    Thanks
    Naveen
    314 439 9554

    On the Administration Tab of the instance, choose Statistics Management - Manage Optimizer Statistics, then Gather Optimizer Statistics and click Continue. You then get a choice of Database, Schema, Tables or Indexes.
    Stupid that you have to supply an OS username and password to do this but anyway.

  • BADI/User Exit for custom table update from Delivery

    Hi
    Our requirement is to update a custom table with the delivery number and other related details when the picking status is changed to "C". Kindly suggest BADI/User exit for this requirement .
    Thanks in Advance for your immediate help .

    Hi Joseph,
    See SAP Note 415716 - User exits in delivery processing. It says when you have the document number available, what is permitted, what not, ....
    I hope this helps you
    Regards
    Eduardo

  • Proper user manual for yoga 11 s with windows 8

    Hi,
    I wanted to use the camera on my yoga and first of all the quality of the picture is awful but that is not the main issue here. How can i save the picture (it offers delet or cropp only), and i do not know anything at all about making video with this product. The user guide for this is simply a guide but not a proper manual. Apart from the user manual and harddisk maintainance manual i cold not find a decent one for covering issues that a real user manual usually does. Not on the web, not on lenovo`s sites, nowhere. Any idea about this? Thank you
    Ildiko

    Dear huszarildiko
    Welcome to Lenovo forums
    the images are directly saved into you images like in the image below you will find them in a folder named camera roll
    thanks
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Script for transfer the file from windows to UNIX machine

    Hi expert
    1. I neeed one script that will transfer the files from windows machine to UNIX machine.
    2. And the data updated in Windows file should also be update in UNIX file.
    3. Please send me the steps how can i schedule this script.
    Thanks in advance
    Regards
    Frnd

    It depends on what you need.
    It's possible to use:
    -winscp
    But that means using a program to drag and drop files. This is most commonly used.
    -setup samba on the unix system (the samba package/software needs to available for your unix)
    This requires some setup on the unix system, and your windows system (connect the unix system and put a share defined on the unix system to a driveletter on your windows system), but lets you easily make a batchfile which copies data from one windows drive to another. A batchfile can be scheduled using 'at'.

  • [SOLVED] Gathering Schema Statistics from Form Builder

    Hi
    these are my database and Forms versions:
    Forms [32 Bit] Version 6.0.8.8.0 (Production)
    Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
    PL/SQL Version 8.0.6.0.0 (Production)
    I would like to build a form with a push button which when clicked will gather schema statistics using procedures from the DBMS_STATS package ie. using the command:
    DBMS_STATS.gather_schema_stats (ownname => 'DLIC', cascade => true, estimate_percent => 99.99);
    But when this line is added to the PLSQL code for the push button, i get the following error:
    Error 0 at line 0, column 0
    ORA-00600: internal error code, arguments:[17003], [59630960], [911], [1], [], [], [], []
    Can any one please tell me what is the problem here?
    Thank You.
    Message was edited by:
    One

    Thanks Christian the W1zard and Francois D for your help! The solution IS, as you have suggested, to include the call to the DBMS_STATS procedure in a PLSQL block ie. using BEGIN ... END;
    and the whole in a FORMS_DDL statement.
    For any one facing the same problem, here is the entire solution:
    --Code in push-button When-Button-Pressed trigger.
    DECLARE
         STATEMENT_TO_EXECUTE VARCHAR2(200);
         OWN_NAME VARCHAR2(4);
         CASCADE_PARAM VARCHAR2(4);
         EST_PC VARCHAR2(5);
    BEGIN
         OWN_NAME := 'DLIC';
         CASCADE_PARAM := 'TRUE';
         EST_PC := '10.99';
         STATEMENT_TO_EXECUTE := 'DBMS_STATS.gather_schema_stats(ownname=>'||''''||OWN_NAME||''''||',cascade =>'||CASCADE_PARAM||',estimate_percent=>'||EST_PC||')';
         FORMS_DDL('BEGIN '||STATEMENT_TO_EXECUTE||'; END;');
    END;
    Note that all parameters passed to the DBMS_STATS procedure is stored in a bind variable. Also, note that the parameter that is of type VARCHAR2, in this case DLIC or Ownname is preceded and succeded by '''' or 4 single-quotes.
    PS:
    Would be very helpful if someone explained why 4 single-quotes. I found this in another post in the OTN forum, but not quite sure of the theory behind it.
    Thank You.

  • User Exit For VA01 To Restrict From Entering The Same Material twice

    Hello All,
    I have a requirement that in sales order creation(VA01) i want to restrict From entering the same material
    more than once in a sales order  i.e more than one same material not allowed in sales order i have tried alot of user exists but of no use
    can u tell me the exact user exit
    Regard's,
    Mahesh Dasari

    Hi Mahesh Dasari,
    1.This user exit is used to add additional datat to VBAP struture like custom fields. And this user exit is called for every single line item when processed.Say you have 10 items then this user exit will be triggered before each entry is populated in the XVBAP.
    2.When the user enters item 10 with material 1 we allow him, then for the next line item say 20 we check if the material entered or processed ( this will be available in VBAP structure ) is available in XVBAP and  the line item 10 is not deleted.
    3. If the above check  true then it means that the material entered is already existing else its not so it will proceed to next line item
    e.g. in your question , item 10- Mat1 , item-20- Mat12, item-90-Mat1,
    Then as per the code I have given , item 90 will be deleted or removed.
    4. Now you can either delete the line item by clearing VBAP as I have done or give a error message  that will be as per your requirement.
    Use the logic I have provided in my earlier post , and see the behaviour.
    Hope you find this answer helpful and set this questions answerd
    Regards
    Arun Thiyagarajan

  • Script for gathering email address from my computer

    Hi, I'm a noob around here, but a mac user for many years.
    I am wondering if anyone knows of a way to gather email address from my computer. I havent kept my address book updated by saving people's email addresses, but I know they are there in old messages I've sent and recieved.
    If anyone has or knows how to easily make an applescript that will complie all of the addresses on my comp into one neat text file, please let me know. I just got a program called direct mail, and i want to set up different mailing lists to get in contact with my people about upcoming events and whatnot.
    Thank you so much for your time.
    Stillie War

    I will try that.. but I still want to actually try to gather EVERY email address in my computer, even, lets say, addresses that were in the CC of things sent to me. I'm not a hardcore spammer or anything, but i have a few events a year that I want to let all my people know about, so I think I'm looking for some kind of script to cull ALL of the addresses in my computer. Anyone know?

  • Somebody has a few minutes for an alien coming from Windows / PC ?

    Hi, I only used Windows / PC so far and though to give a try to Apple. I got an used iMac and don't know anything about this world. I'd like firs to upgrade from OS X 10.3.9 to 10.4 What's the most convenient (cheap) way to do this. I see there are some (gray) restore disks on eBay (usually 2, one for the OS and one for the applications?). Would those work? How is the license thing working? In Windows I am used with those product keys you have to provide during installation. Then can I get only the OS disk for 10.4 and, after install, just update online the existing applications on the iMac. Sorry if my questions don't make sense and any help and suggestion would be appreciated.

    Hi MitchFN, and a warm welcome to the forums!
    What's the most convenient (cheap) way to do this. I see there are some (gray) restore disks on eBay (usually 2, one for the OS and one for the applications?).
    You have to be careful, Gray Discs are Machine specific. If you do this we can likely help you find some Discs...
    At the Apple Icon at top left>About this Mac, click on the text below Mac OS X where it says Version 10.4.x and report the Build# please.
    Then click on More Info>Hardware and report this upto but not including the Serial#...
    Hardware Overview:
    Machine Name: Power Mac G5 Quad
    Machine Model: PowerMac11,2
    CPU Type: PowerPC G5 (1.1)
    Number Of CPUs: 4
    CPU Speed: 2.5 GHz
    L2 Cache (per CPU): 1 MB
    Memory: 10 GB
    Bus Speed: 1.25 GHz
    Boot ROM Version: 5.2.7f1
    How is the license thing working?
    The license to use it goes with the Install Disc actually, but there's no Serial# or Authorization or product keys you need to input... a bit more relaxed on this side of the aisle!
    Then can I get only the OS disk for 10.4 and, after install, just update online the existing applications on the iMac.
    Yep, you can use the built-in SW Update or download them, for instance...
    The combo update for PowerPC-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateppc.html
    See Tom's, (Texas Mac Man), great info on where/how to find/get Tiger...
    http://discussions.apple.com/thread.jspa?messageID=9755670&#9755670
    Or Ali Brown's great info on where/how to find/get Tiger...
    http://discussions.apple.com/thread.jspa?messageID=10381710#10381710
    Requirements...
    To use Mac OS X 10.4 Tiger, your Macintosh needs:
    * A PowerPC G3, G4, or G5 processor
    * Built-in FireWire
    * At least 256 MB of RAM
    * DVD drive (DVD-ROM), Combo (CD-RW/DVD-ROM) or SuperDrive (DVD-R) for installation
    * At least 3 GB of free disk space; 4 GB if you install the XCode 2 Developer Tools
    http://support.apple.com/kb/HT1514
    Sorry if my questions don't make sense and any help and suggestion would be appreciated.
    Nonsense, you made perfect sense, and feel free to ask, many really wonderful users here to try to answer it all.

  • Vb scripts to remove the user from the member of perticular group (say from domain admin) from windows servers 2003 and 2008

    Hi,
    I need VB script which to checks the perticular user in AD and if it exists;that user needs to be removed from the member of perticular group
    Ex:- Lets say
    I have a user 783562 , I need to search this user in AD to verify user exists or not. If not then I no need to remove the mebership from perticular group
    Second scenario:-
    If user exists then I need to remove the user membership from the perticular group.I want to do it in automation
    Manual Path:-
    1.Type dsa.msc in run command of IT session(we using it to connect remote desktop).
    2. Select the domain & right click (EX:-corp.ds.xxyyzz.com) and select "Find" to find the user form the domain.
    3. Type the user name in the Name field and click on "Find Now" button user name will be displayed in search result.
    4. Double click on this user ID and select "Member Of" tab.
    5. Select any member of group from the Name section then click on "Remove" button.
    6. Finally click on "Apply" and "OK" button.
    Kindly help me out to do this by using vb script.
    Thanks
    Raja

    Usage: CScript NameOfVBS.vbs //NOLOGO /User:Jane.Doe /GroupDN:CN=Group1,DC=Contoso,DC=com
    Option Explicit
    On Error Resume Next
    Dim str_User
    Dim str_GroupDN
    Dim obj_Connection
    Dim obj_Command
    Dim obj_RootDSE
    Dim str_DNSDomain
    Dim str_Base
    Dim str_Filter
    Dim str_Attributes
    Dim str_Query
    Dim obj_RecordSet
    Dim obj_Group
    Dim str_ADsPath
    Dim obj_User
    str_User = WScript.Arguments.Named("User")
    str_GroupDN = WScript.Arguments.Named("GroupDN")
    If Len(Trim(str_User)) > 0 And Len(Trim(str_GroupDN)) > 0 Then
    Set obj_Connection = CreateObject("ADODB.Connection")
    Set obj_Command = CreateObject("ADODB.Command")
    obj_Connection.Provider = "ADsDSOOBject"
    obj_Connection.Open "Active Directory Provider"
    Set obj_Command.ActiveConnection = obj_Connection
    Set obj_RootDSE = GetObject("LDAP://RootDSE")
    str_DNSDomain = obj_RootDSE.Get("defaultNamingContext")
    str_Base = "<LDAP://" & str_DNSDomain & ">"
    str_Filter = "(&(objectCategory=person)(sAMAccountName=" & str_User & "))"
    str_Attributes = "cn,ADsPath"
    str_Query = str_Base & ";" & str_Filter & ";" & str_Attributes & ";subtree"
    obj_Command.CommandText = str_Query
    obj_Command.Properties("Page Size") = 1000
    obj_Command.Properties("Timeout") = 1
    obj_Command.Properties("Cache Results") = False
    Set obj_RecordSet = obj_Command.Execute
    obj_RecordSet.MoveFirst
    If obj_RecordSet.RecordCount = 0 Then
    WScript.Echo str_User & " was not found"
    Else
    Set obj_Group = GetObject("LDAP://" & str_GroupDN)
    str_ADsPath = obj_RecordSet.Fields("ADsPath")
    Set obj_User = GetObject(str_ADsPath)
    obj_Group.Remove(obj_User.AdsPath)
    If Err.Number = 0 Then
    WScript.Echo str_User & " was removed from group " & str_GroupDN
    ElseIf Err.Number = -2147016651 Then
    WScript.Echo str_User & " not a member of group " & str_GroupDN
    Else
    WScript.Echo str_User & " error removing from group " & str_GroupDN
    End If
    End If
    End If

  • Best Method for transfering iTunes library from Windows 7 to Mac OSX

    I just bought a MacBook Air and am in the process of preparing my file transfer. The only data on my computer I really care about is my school/work files, (which are very easy to transfer), and my iTunes library. What is the best method for transfering music?
    I was going to use an external drive and simply drag and drop everything. Last time I did this I needed a special file in order to keep my playlists, top rated, and playcount. Is there an easier and faster method now? I have about fifty gigabites of music so I think it might take longer over wifi.
    I also have an iPhone and have already transfered all of the recent purchases. If I export my library, will all my iPhone backup data stay there as well?
    If anybody has some insight or a link that outlines all of this that'd be great. Thanks in advance.

    Here's a pretty comprehensive "how to"
    http://myfirstmac.com/how-do-i-move-my-itunes-library-from-pc-to-mac-and-keep-my -settings-intact.html
    Make sure the external drive is foratted so both the pc and the mac can read and write to it.
    http://howto.cnet.com/8301-11310_39-57401784-285/the-best-ways-to-format-an-exte rnal-drive-for-windows-and-mac/
    good luck.

  • How to create a rhel 4 user to compile forms and reports from windows pc?

    Friends,
    We have Oracle Application Server 10gR2 on RHEL 4.8
    Developer's PC - Windows XP SP2
    Now my requirement is....
    i have to create a user so that they can able to login thru putty from their windows xp pc.
    they can able to copy/delete the file
    they can able to compile the forms,reports, menu
    how can i do that?
    thanks

    Hi!
    I suppose you will find at '$ORACLE_SERVER/.../bin' a script ended by ".sh" which has enviroment values defined since tour installation. This is useful to do your work. (I don't remember his name, but is the same that executable to compile).
    Chiao!

  • Help again for removing Oracle components from Windows NT machine

    I want to remove all oracle stuff from my Windows NT machine.I have a problem to do it.I did following:
    1.Stop all Oracle involved services.
    2.delete all registry involved in Oracle.
    3.delete all folder involved Oracle.
    But I cannot delete following registry key:
    LEGACY_ORACLEAGENT80
    LEGACY_ORACLECLIENTLISTER
    LEGACY_ORACLEHOME81TNSLISTENER
    LEGANCY_ORACLEDB8
    LEGANCY_ORACLESERVICEORCL
    LEGANCY_ORACLESERVICESPORTS
    LEGANCY_ORACLESNMPPEERMASTERAGENT
    LEGANCY_ORACLESQLSERVICESV8.0SQLSRVCONFIG
    LEGANCY_ORACLESTARTOAS40_WEBSITE40
    LEGANCY_ORACLESTARTORCL
    LEGANCY_ORACLETNSLISTERER80
    LEGANCY_ORACLEWEBBASSISTANT
    LEGANCY_ORACLEWEBBASSISTANT0
    LEGANCY_ORACLEWWWLISTENER40ADMIN_WEBSITE40
    LEGANCY_ORACLEWWWLISTENER40NODE_WEBSITE40
    LEGANCY_ORACLEWWWLISTENER40WWW_WEBSITE40
    I have already deleted all Oracle folders.
    The status in my machine now is: no Oracle folder,no registry keys involved Oracle excopt above Keys.
    Any help is appreciate.

    Thank you very much.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by [email protected]:
    These are internal Windows registry keys - you do not need to delete them
    Jason Pepper
    Snr Product Manager
    Oracle Enterprise Internet Tools<HR></BLOCKQUOTE>
    null

  • I accidentally for got to change from windows to mac on my purchase how do i change it

    I purchased elements and did not select so it says windows how do i change it

    http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • No provisioning of User Group for authorization field in user master

    We are implementing CUP 5.3 workflows. Both in manual proviosing and automated provisioning based on User Defaults the user group gets only provisioned to the Groups tab in SU01. The field User Group for authorization on the Logon data tab remains empty (field CLASS from system table USLOGOND, filling CLASS field in table USR02).
    In User defaults both under user default as on the user group tab the user groups have been defined. In manual provisioning the correct list of user groups get displayed for selection.
    Under field mapping in the Application field I only find User Group in user master maintenance, but not User group for authorization. However I would assume I do not need to use field mapping, as I want to automate this provisioning based on user defaults.
    Am I missing a configuration setting here? If so, where can I set it?
    I would assume the provisioning of this field is possible. RAR reports the user group also based on the User group for auhtorization and not from the Groups tab.

    S.Pados,
    I can assure you that what I said in my last response does provision the User Group For Authorization Check on the Logon Data tab; in fact, I was having the opposite issue where the Group tab was not being provisioned; however, I am ruunning AE 5.2 and you said you are running 5.3; maybe something did change or got lost in the releases; it probably is good to see what SAP has to say about this; I would hate to lose this capapbility when I upgrade to AE 5.3
    As far as using the custom field for multiple applications, would that field not be usable for any of the applications you would select in the request form?; if you are using the same table names in the different SAP systems (selectable by the application field on the request) would the drop down selections be whatever the table has defined for that system? I may not be understanding something here so I am just asking;
    It would be great to have a Group field automatically filled in by another selection to avoid the user involvement; I agree with you there; because of our concerns on users entering the AE request, our shop has decided to continue with the users submitting the request through normal email and the security administrators perform the AE entering; this way we have a better idea on something like the GROUP field; we have an option to include the original email as an attachment for justification of the request
    Sorry I could not be of more help
    Jerry
    Ryerson,Inc.

Maybe you are looking for