What to use to monitor voltage and temps?

I have a neo2 - speedfan and Core center report different voltages and temps! ie speedfan shows 12.08v on the +12 and core center reports 11.91v. Which is more accurate? Temps are only off by a couple of degree's. Im more worried about the voltages.

Hey
You use FTPS(FTP with SSL encryption) when you need to transfer encrypted message.the channel via which you transfer the message can be a regular channel(like internet) but the message is encrypted by using various private.public key security algorithms.
You need to do FTPS and can follow the below article
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d024ca8e-e76e-2910-c183-8ea4ba681c51?overridelayout=true
SFTP(SSH with FTP) on the other hand needs a dedicated transfer channel,you connect to SFTP servers by logging to channels which protect any intrusion.to implement SFTP you need to buy third party adapters like SeeBurger or develop your own modules.You also need to buy license for FTP SSH server like FTP VAN,AS2 etc
So the bottom line is,in FTPS the payload is encrypted but the channel can be secure or regular channel(like internet) but in SFTP the channel itself is secure and only people who have access to it can transfer files over it.
Hope that helps
Thanks
Aamir
Edited by: Aamir Suhail on Jun 27, 2009 8:00 PM

Similar Messages

  • What is a cache monitoring? and what it is used for?

    what is a cache monitoring? and what it is used for? how safe it is to execute the transaction RSRCACHE in development?
    Thank you,
    York

    Hi Les,
    Cache is a temporary storage for recently accessed data.
    Used to enhance query performance.
    Use t-code RSRT to view more on cache.
    Please see this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/41/b987eb1443534ba78a793f4beed9d5/content.htm
    Cache helps to improve query performance. As it can save data in memory, flatfile, cluster table or BLOB.
    You can remove cache per query or inactivate it for perticular info provider or inactivate it overall.
    But which is not recommended. Yes if u know that certain queries you dont use often and its not accessing large number of records then you can inactivate it for those queries. you can manage cache via three t-codes RSRT or RSRCACHE or SPRO>SAP Reference IMG>SAP Busines Wearhouse--> Reporting relevent setting -->General Reporting Setting in BEX -->Global Cache Setting.
    please follow the link which has few good documents on cache. which will clear your complete concept for cache.
    https://service.sap.com/bi -->Product information previous releases -->BI InfoIndex --> OLAP --> you will get bunch of documents in that.
    Look at the following threads :
    OLAP Cache
    what is cache?
    also check RSRT and OLAP cahce docs
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/afc59790-0201-0010-9f99-940f7c3934fc
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9f4a452b-0301-0010-8ca6-ef25a095834a
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7c361b95-0501-0010-c0ab-897c5aa14504
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/31b6b490-0201-0010-e4b6-a1523327025e
    Hope this helps.
    ****Assign Points if Helpful****
    Regards,
    Ravikanth.

  • What is use of AT NEW and AT CHANGE

    what is use of AT NEW and AT CHANGE

    Using AT NEW
    Use at new to detect a change in a column from one loop pass to the next. This statements enable you to execute code at the beginning of a group of records.
    Syntax for the at new Statement
    sort by c.
    loop at it.
        at new c.
         endat.
        endloop.
    where:
    it is an internal table.
    c is a component of it.
    The following points apply:
    This statements can only be used within loop at; it cannot be used within select.
    at new does not have to come before at end of. It can appear in any order.
    This statement can appear multiple times within the same loop. For example, you could have two at new and three at end of statements within one loop and they can appear in any order.
    These statements should not be nested inside of one another (that is, at end of should not be placed inside of at new / endat).
    There are no additions to these statements.
    Each time the value of c changes, the lines of code between at new and endat are executed. This block is also executed during the first loop pass or if any fields to the left of c change. Between at and endat, the numeric fields to the right of c are set to zero. The non-numeric fields are filled with asterisks (*). If there are multiple occurrences of at new, they are all executed. at end of behaves in a similar fashion.
    A control level is the component named on a control break statement; it regulates the control break. For example, in the following code snippet, f2 is a control level because it appears on the at new statement.
    loop at it.
        at new f2.
            "(some code here)
            endat.
        endloop.
    It is said that a control break is triggered if the control level changes. This means that when the contents of the control level change, the code between the at and endat is executed.
    A control break is also triggered if any of the fields prior to the control level in the structure change. Therefore, you should define the internal table structure to begin with the fields that form your control levels. You must also sort by all fields prior to and including c.
    Between at and endat, numeric fields to the right of the control level will be zero and non-numeric fields will be filled with asterisks.
    Using ON CHANGE OF
    Another statement you can use to perform control break processing is on change of. It behaves in a manner similar to at new.
    Syntax for the on change of Statement
    The following is the syntax for the on change of statement.
    on change of v1 or v2 .
    else.
    endon.
    where:
    v1 and v2 are variable or field string names.
    any number of or conditions might follow.
    The following points apply:
    If the value of any of the variables (v1, v2, and so on) changes from one test to the next, the statements following on change of are executed.
    If no change is detected and else is specified, the statements following else are executed.
    on change of differs from at new in the following respects:
    It can be used in any loop construct, not just loop at. For example, it can be used within select and endselect, do and enddo, or while and endwhile, as well as inside get events.
    A single on change of can be triggered by a change within one or more fields named after of and separated by or. These fields can be elementary fields or field strings. If you are within a loop, these fields do not have to belong to the loop.
    When used within a loop, a change in a field to the left of the control level does not trigger a control break.
    When used within a loop, fields to the right still contain their original values; they are not changed to contain zeros or asterisks.
    You can use else between on change of and endon.
    You can use it with loop at it where . . ..
    You can use sum with on change of. It sums all numeric fields except the one(s) named after of.
    Any values changed within on change of remain changed after endon. The contents of the header line are not restored as they are for at and endat.
    When a loop begins execution, the system creates a global auxiliary field for each field named in an on change of statement contained by the loop. On creation, these fields are given default initial values (blanks or zeros). They are freed when the loop ends.
    Each time on change of is executed, the contents of its fields are compared with the contents of the global auxiliary fields. If they are different, the on change of is triggered and the auxiliary fields are updated with the new values. If they are the same, the code within on change of is not executed
    Because global auxiliary fields do not exist outside a loop, you cannot use on change of outside of a loop.
    I hope it helps.
    Best Regards,
    Vibha
    Please mark all the helpful answers

  • HT201320 I use my college's email address through outlook and I don't know what you use for the incoming and outgoing host?

    My email is though the college where I work.  We use Outlook, and I am trying to set up my email but I am not sure what to use for my incoming and outgoing host information.

    Ask your college. Most likely the same settings as you have set in Outlook.

  • What are you using for Fan speed AND temp monitor?

    Thanks to Bosskiller, my rig seems to be running a bit stabler now!  Knock on wood.  Is there any program other than MSI's core center that monitor fan speed AND temp?   I used to use MBM but it's no longer being supported and CoreCenter doesn't seem all that popular here? 

    Quote from: BOSSKILLER on 25-September-08, 00:42:40
    http://www.cpuid.com/hwmonitor.php
    http://www.alcpu.com/CoreTemp/
    Actually how accurate is the temp reading on HWMonitor for your MSI board?  One thing I noticed is that w/ Coretemeter the temp reading was around 48-50c on Rig#1 and almost 58-60c on Rig#2 (That's my HTPC w/ EXTREMELY tight spacings so still work in progress as far as cooling's concern!) but using HWMonitor I got 31c CONSISTENTLY on both rigs!     I'll love to think that I'm indeed running this cool but feeling the exhaust air, I think this 31c reading is not real...

  • CPU VDD Control over Voltage and Temps questions

    Hi Im running a msi890gxm-g65 with 1055t and g skill ddr3 ram at 1667 and am sitting overclocked at 3.5 Ghz with voltage at 1.375. I was trying to push it further so i know i had to increase my voltage but whenever i increased the option CPU Voltage in bios to any number it would always show as 1.375 in any program such as cpuz or coretemp. So i noticed i had to increase the CPU VDD Voltage option also to be able to obtain the voltage i wanted. So my question is how do those two work together? to obtain whatever voltage i want should i change both of these to the same number ?
    Also in bios which i know is not idle I am noticing my temps at around 46C which is around what my full load will be with prime ( with a max of 50C after 12 hours for a short period) as reported by coretemp and hwmonitor. I know there is many reports that Thuban 1055t temps are not reported accurately in software programs so that it would be a good bet to add 10-15C to whatever the software temp is shown.  So does anyone know how much load is put on system when bios is showing temperature, i just want to make sure im not running it to hot as i know they should not exceed 62C, and i expect to overclock it more then it currently is.

    thanks im getting kind of confused though i noticed if i change CPU VDD Voltage and CPU Voltage to the same number it will change what is reported in cpuz VID. I changed it down to 1.35 instead of default 1.375.
    So basically for CPU VDD VOLTAGE and CPU VOLTAGE do i need to change both of these to the same number to get required voltage needed for my overclock ?
    Also i had to raise my CPU NB Voltage to be able to boot into windows past 3.8ghz and few minutes of prime seems fine.
    My current settings are
    CPU VDD VOLTAGE AND CPU VOLTAGE are at 1.387 and CPU NB VOLTAGE AND CPU NB VDD VOLTAGE are at 1.3
    Running 272x 14 = 3.8 ghz and ddr3 memory running at 1450mhz.
    I cant seem to get it past this ghz even when raising cpu to 1.475, should i raise cpu nb voltage more to achieve ? had same problem at 3.5ghz and cpu nb set to auto.
    Are the voltages i posted safe ?? are CPU VDD VOLTAGE AND CPU VOLTAGE the same thing and cpu nb vdd and cpu nb vdd the same thing as well ?

  • In r12 What is use of Purge log and Closed system alerts

    Hi
    In r12 What is use Concurrent reqest "Purge logs and Closed system alerts "
    is there any diffrence with "Purge Concurrent Request and/or Manager Data Program"
    we have to purge cm logs and data.
    '

    In r12 What is use Concurrent reqest "Purge logs and Closed system alerts "The concurrent program "Purge Debug Log and System Alerts" (Short name: FNDLGPRG) is the recommended way to purge messages. This program purges all messages up to the specified date, except messages for active transactions (new or open alerts, active ICX sessions, concurrent requests, and so on). This program is by default scheduled to run daily and purge messages older than 7 days. Internally this concurrent program invokes the FND_LOG_ADMIN APIs, which are described later in this document.
    Oracle® Applications Supportability Guide Release 12
    http://download.oracle.com/docs/cd/B40089_09/current/acrobat/120fndsupp.pdf
    is there any diffrence with "Purge Concurrent Request and/or Manager Data Program" This concurrent program is used to purge concurrent requests log/out file, and/or CM log files.
    we have to purge cm logs and data.Use "Purge Concurrent Request and/or Manager Data" concurrent program.

  • What to use FTPS or SFTP and how?

    Clent has send public key can be put it on FTPS (using it as Keystore)and use it and transfer of file take place or we have to go for SFTP i.e writing UNIX script and from PI application server we have to send.

    Hey
    You use FTPS(FTP with SSL encryption) when you need to transfer encrypted message.the channel via which you transfer the message can be a regular channel(like internet) but the message is encrypted by using various private.public key security algorithms.
    You need to do FTPS and can follow the below article
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d024ca8e-e76e-2910-c183-8ea4ba681c51?overridelayout=true
    SFTP(SSH with FTP) on the other hand needs a dedicated transfer channel,you connect to SFTP servers by logging to channels which protect any intrusion.to implement SFTP you need to buy third party adapters like SeeBurger or develop your own modules.You also need to buy license for FTP SSH server like FTP VAN,AS2 etc
    So the bottom line is,in FTPS the payload is encrypted but the channel can be secure or regular channel(like internet) but in SFTP the channel itself is secure and only people who have access to it can transfer files over it.
    Hope that helps
    Thanks
    Aamir
    Edited by: Aamir Suhail on Jun 27, 2009 8:00 PM

  • Voltages And Temps

    I Have A K7N2-L Motherboard,And In MBM And PC Alert 4 It Says My CPU Temp Is 52c Idle. On My Other Board(Gigabyte GA-7DX+) It Said CPU Temp 32-34 Idle.What Is It With The Sensors On This Board?Also The Voltages Jump Around Alot(They Didn't Do That With The Gigabyte)
    Thanks,
    Bryan

    MSI K7N2-L
    The temp sensor isnt a problem, it just reads higher than most.  Maybe MSI are in secret partnership with HSF manufacturers!
    The voltages are a bit of a problem.  I don't know if it's the two-phase power supply design that's causing the problem, or the need for a better power management setup altogether.
    [ALIGN=center]I've noticed that the voltage's struggle to remain within spec, and occasionally dip outside of it - or +. [/ALIGN]  
    I've got a version 1.0 board.
    Read about 3 Phase power supply HERE:
    http://www.overclockers.com.au/article.php?id=76562
    And further discussion HERE:
    http://forums.overclockers.co.nz/showindex.php?s=&postid=24637
    An XP 2500+ has a Max rated Wattage of 41.4A
    An XP 3000+ has a Max rated Wattage of 45A
    (source amd.com http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/26237.pdf)
    If 2-phase power is only good for about 40A load it looks like those who use high CPU load applications may find intablilty increasing with faster processors.
    p26 of the AMD white paper specifies that the maximum permissable "spike/trough" of voltage is:
    +150mv / -100mv
    with a maximum transient time of 10 micro-seconds.
    The normal range should be within 50mv of the rated chip voltage.
    If your Vcore is rated 1.65V it should stay between 1.60 and 1.70V.  The motherboard monitors arn't sensitive enough to pick up transient (
    Certainly running MBM for 5 minutes, it's already threatened to shut my PC down because the vcore is out of the 50mv spec.  I'll leave it running as long as I can and post the results sometime....

  • P6N SLI , what is a good monitoring progran for temps, ect

    I read that MSI program for temp monitoring isn't good to install so what does work with out taking alot of resorces ?

    donot load any msi utilities, speedfan is a good but there are others, need more info on your sys specs, a good read through the forums are a good ideal.
    lots of downloadable utilities here https://forum-en.msi.com/index.php?topic=45978.0

  • Language Monitors and Bi-directional Printing: What functionality is lost when disabling? What else uses them?

    Server OS: Windows 2008 R2 Standard
    Function: Primary Domain Controller and Print Server
    Clients: All are running Windows 7 Pro 64-Bit SP1
    We're considering disabling the HP Universal Print Driver Language Monitor and in-turn Bi-directional Printing due to potential server spooler instabilities, before we do this the IT Manager wants to be sure:
    1. What functionality is lost when disabling Language Monitors and Bi-directional Printing?
    2. What else uses Language Monitors and Bi-directional Printing them? In other words what may break?
    3. What specifically do Language Monitors and Bi-directional Printing provide?
    Thanks

    Alan (or anyone else):
    We're testing disabling the language monitor/bidirectional printing for one particular printer.
    Can I confirm this is the procedure for disabling a particular print queue's Language Monitor and Bidirectional Printing? -
    1. Locate the relevant Language Monitor registry key in: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors
    Either delete or rename the registry key (so it cannot be found), in my case: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\HPMLM121
    I renamed it to have the date at the end (HPMLM121_2015-01-29).
    2. Inside the above registry key is a DLL file mentioned under the DRIVER reference. In my case it's called: hpmlm121.dll.
    I searched the entire C drive on the server and this was only found in C:\Windows\System32. I moved this elsewhere out of C:\Windows and also renamed the DLL too.
    Therefore preventing Windows from being able to find/use it.
    3. I then unticked Bidirectional Printing Support in the Printer Properties Ports tab of the printer in question.
    4. Lastly either restart the server (or stop/restart the Spooler service).
    I've done all this and the HP Print Notifications for Replace Cartridge etc... are still active.
    Any idea why this is?
    Thanks

  • How to exclude UNDO and temp tablespace using monitoring template

    hi,
    as per MOS note id 816920.1 undo and temp tablespace is excluded from monitoring starting version 11G onwards.It says that thresholds will need to be explicitly set if undo and temp needs to be monitored
    we have grid 12C implemented now with monitoring templates which sets thresholds for all tablespaces. does it apply that thresholds to undo and temp too?? we are receiving alerts for undo and temp tablespaces and we wish to disable them. We have undo tablespaces with different names in many databases as per naming conventions for that line of business.
    How can i exclude undo and temp tablespaces from monitoring using grid 12C monitoring templates. is there a way through templates where i can set thresholds of permanent tablespaces only???

    In EM12c, go to the 'Enterprise' menu, then 'Job', then 'Library'. There should be an out-of-the-box job called "DISABLE TABLESPACE USED (%) ALERTS FOR UNDO AND TEMP TABLESPACES" that you can run against your database targets, and that job will disable database-generated alerts.
    If a previous admin has set up EM12c-generated alerts for undo and temp, then yes, a monitoring template will take care of disabling them. Either remove those alerts from the existing monitoring template and apply them to your targets, or create a new monitoring template based on one database's current settings, remove those warning/critical thresholds for your undo and temp tablespaces, and apply it to your targets.

  • What the difference and use between   of  TABLES and SY-REPID?

    Hi,
    Experts,
    I have came accross 2 cases that i can't able understand
    EX1:
    TABLES: VBAP   -
    >( Here also Appplication Server(AS) creates Wrokarea of Structure VBAP but, by 
    data: v_vbeln like vbap-vbeln.    double clicking on variable v_vbeln AS taking me to DDIC VBAP table VBELN field then what the using declaring tables. )
    ( and ) 
    DATA: VBAP TYPE VBAP -->( Here also Appplication Server(AS) creates Wrokarea of Structure VBAP data: v_vbeln like vbap-vbeln.    but,double clicking on variable v_vbeln AS taking me to user declared VBAP
                                                  i.e., above DATA declaration statement )
    Then Which one is better in Functionality wise as well as Performance wise or when we have to go for TABLES and when we have to go for DATA declaration of DDIC objects.
    EX2:
    what the difference between
    I know that SY_REPID is not a system variable. And also that
    Data: vrepid type SY_REPID.--> Predefined data type in ABAP
    and
    Data: vrepid like SY_REPID.-> Predefined Constatnt in ABAP( it is a constant it allowing with out VALUE                                                                               
    attribute)
    what difference between them and when we have to go Data: vrepid type SY_REPID and when we have to go Data: vrepid like SY_REPID.
    Thank U,
    Shabeer Ahmed.

    Hi Ahmed,
    TABLES:
      VBAP.   " DDIC
    DATA:
      v_vbeln like vbap-vbeln.
    *Here you are using the DDIC VBAP
    DATA:
      VBAP TYPE VBAP.
    DATA:
      vbeln like vbap-vbeln.
    *Here you are using the local data object as your data type so it will always
    * take you to user declared VBAP which is declared by you.
    DATA:
      T_VBAP TYPE VBAP.
    DATA:
      vbeln like vbap-vbeln.
    * here its using T_VBAP not DDIC VBAP
    And for performance always the second option is better, use Data instead of tables, declare your own local structure.
    Data:
      vrepid type SY_REPID.  thereis nop redefined data type in ABAP as SY_REPID
    * its SY-REPID which is a system variable.
    Data:
      vrepid type SY-REPID.
    Also refer to the links:
    Difference between tables statement and by using type statement
    for type and like:
    Re: LIKE and Type in abap statements
    With luck,
    Pritam.

  • Monitoring template and alert noifications,  how ?

    I have set up database monitoring template with some metric tresholds for warning/alerting. Also, I applied this to the databases. Now, my question is how will i be notified (say via e-mail) once an alert has generated ? I see notification methods and notification rules, where it has its own metric settings. Do i have to apply notification rules to these databases for notifications. If so, what is the use of monitoring template ? Can i set up notifications via e-mail within the monitoring template ?
    thanks,

    In EM12c, go to the 'Enterprise' menu, then 'Job', then 'Library'. There should be an out-of-the-box job called "DISABLE TABLESPACE USED (%) ALERTS FOR UNDO AND TEMP TABLESPACES" that you can run against your database targets, and that job will disable database-generated alerts.
    If a previous admin has set up EM12c-generated alerts for undo and temp, then yes, a monitoring template will take care of disabling them. Either remove those alerts from the existing monitoring template and apply them to your targets, or create a new monitoring template based on one database's current settings, remove those warning/critical thresholds for your undo and temp tablespaces, and apply it to your targets.

  • 770-g45 voltage and tems

    Posting in regards to the voltage and temp at a sensor on my motherboard. AOD & MSI OC utilites read 120 v at voltage sensor 2 and 128c at temp sensor 2, processor runs between 21(idle) and 27(load). could be graphics (5850) but the temp is somewhere between 32c and 48c according to CCC. anyone run into something like this?

    "anyone run into something like this?"
    Yes, +500 times, and the answer is almost always what brozly says. 

Maybe you are looking for

  • Bsod Problem, Bios Related?? ati2cqag.dll?? Plz Help Guys

    well i have quite a problem here and i dont know if the bios is related to it. my specs are: msi k9ngm-l (V3.7b1 bios) amd 64 x2 5600+ (2.9ghz) 4 gb ram (though i see only 3 because of xp) radeon hd 4850 512mb for about 2 weeks im having wierd bsod d

  • SSIS Package compiled successful, in SQL Server Integration Service package executed sucessful, But fail to run in MS SQL Job Scheduler

    Hi Everyone, I having a problem to transfer data from MS SQL 2005 to IBMAS400. Previously my SSIS was running perfectly but there is some changes I need to be done in order for the system to work well. Considers my changes are minimal & just for upgr

  • New excise rate changes

    Hi, As per the new excise rate changes ie, 14 to 10%, i have changed the % in FV12 with valid date. Issue is when i post GR my old po's, system is taking 10% instead of 14%.. whn i change the posting date before 7/12, it's giving 14%.. If i want to c

  • Ora-01440 on modifying column - urgent needed

    Hi we have following table SQL> desc VULNERABILITY_REG_PERIODS Name Null? Type CLIENT_ID NOT NULL NUMBER(10) ASSOCIATED_FAMILY NUMBER(7) HCP VARCHAR2(8) STAFF_TYPE VARCHAR2(2) DATE_ON_PROTECTION NOT NULL DATE DATE_OFF_PROTECTION NOT NULL DATE SECTOR

  • Need one query

    Hi All, I have one table product_data it has 3 columns Parent_code , Child Code, Level. Please refer follwing dataset Parent_code   child_code  Level A12                B12            1 B12                C12             2 C12                D12