No available performance data

I had questions, get historical to display performance data.  I can see data in real time.  I've scoured the forums and knowledge base articles and found only one that is relvant.  However, it did not solve my problem.

We run esxi4.1 update 2.  I have inhertitied this system since the previous Director of sys.  I think at a certain point, the database has been corrupted and the entire vcenter server was rebuilt with a new database.

The article I found is here

I can't find the error message in the vxpd.log files but when I run the query "select count (*) from vpx_hist_stat1 ' it returns 0

Originally the load_stats_proc procedure was not, adding that in there in accordance with article has no effect.

8 all the jobs are there, and history shows that they are running successfully.

Really, I don't know where to look for here.  Any help would be appreciated.

I have not any article more KB than those already mentioned. However, I have seen this question several times before, and as a preventative measure, I would check levels of statistics within the parameters of your vCenter server for anything above 2, particularly given that you inherited from the environment. When the statistics of level 3 and 4 are used for long periods of time, it tends to cause this problem due to the extreme amount of measures which must be wound regularly.

Tags: VMware

Similar Questions

  • Beyond the performance data not available to a host through Virtual Center


    Hello

    I have an ESXi host that relates to the ' No Data Available ' under his paw through Virtual Center performance. Fine appears real-time performance data, but the latest data are not appear and give the error as "No Data Available".

    Within the cluster of 4 hosts, alone is to have the point above. Others are appearing fine performance data.

    In another cluster host ESXi too connected to the same vCenter, I see one of the host is to have a similar question.

    I checked:

    • All work Rollup SQL is run successfully the default schedule.
    • Restarted vpxa service connection to the host directly using the vsphere client.

    I followed the KB article http://kb.vmware.com/selfservice/microsites/search.do?language=en_US & cmd = displayKC & externalId = 2007388 . as suggested in the article when I run the Sub SQL query I see there is no data within who. 

    exec sp_spaceused vpx_hist_statx

    namelinesreserveddataindex_sizeunused
    VPX_HIST_STAT1NULL VALUENULL VALUENULL VALUE0 KB0 KB

    The output is similar (no data) if I run these queries:

    exec sp_spaceused vpx_hist_stat2

    exec sp_spaceused vpx_hist_stat3

    exec sp_spaceused vpx_hist_stat4

    Current configuration:

    ESXi 5.1.0 799733

    vCenter Server 5.1.0 Build 1123961

    Please help solve this.

    I actually planned for the downtime of the host and restarted it.

    Although loading performance data now.

    Thank you!

  • How do I deselect the option "Submit-performance data" in XP, since none of these items under Options/preferences of Firefox?

    Having recently updated Firefox to 7.0.1 (x 86 en - GB), I was offered the opportunity to submit performance data. Before reading the "Other Info" bit, I clicked on the Yes"" button. When you read the bit of info 'Other Info', I was directed to:
    "
    (Also known as the telemetry) usage statistics. Starting with version 7, Firefox includes a feature that is disabled by default to send to non-personal use Mozilla, performance and statistical reactivity on the interface features user, memory and hardware configuration. The only potentially personal data to Mozilla when this feature has been activated is IP addresses. Usage statistics are transmitted using SSL (a method of protection of data in transit) and help us improve future versions of Firefox. Once sent to Mozilla, statistical usage are stored in form aggregated and made available to a wide range of developers, including Mozilla employees and public contributors. Once this feature is enabled, users can disable in Firefox Options/preferences. Simply uncheck the item "Submit-performance data.
    "
    However, I have no option under Tools/Options, on my XP, home edition, Service Pack 3, netbook.
    Thanks for all the help and all your efforts to make Mozilla exists.

    See tools > Options > advanced > general: system default: 'send performance data '.

  • PS Script to obtain performance data for 6 months last VM

    Hi all

    Its time for me to Rightsize the virtual machines before business continues in vSphere 5.0... We all know... vRAM

    If I want to import virtual machines from a CSV file and run through the past 6 mth performance data (use CPU Avg and Avg Mem) and remove in a CSV file or htm... Here is what I use, but never to see the output to the top. I mess up something in the region of ForEach.  Help, please!

    *********************************

    $filelocation = "C:\VMStatsReport.htm".
    $ErrorActionPreference = "SilentlyContinue".
    $import = import-Csv "C:\listofvms.csv".

    {ForEach ($vm in $import)

    $Interval = "180".
    $IntervalFinish = get-Date
    $IntervalStart = $IntervalFinish.addDays (-1 * $Interval)

    $CPUAvg = $vm | Get-Stat - Stat Cpu.Used.Summation - start $IntervalStart - finishing $IntervalFinish
    $MemAvg = $vm | Get-Stat - Stat Mem.granted.average - start $IntervalStart - finishing $IntervalFinish

    $report = @)
    $vms = "" | Select-Object VMName "CPU Count", SixMonthCPUAvg, TotalMemory, SixMonthMemAvg
    $vms. VMName = $vm. Name
    $vms. "" CPU Count "= $vm.summary.config.numcpu
    $vms. SixMonthCPUAvg = [String] ([Math]: round ((($CPUAvg |))) Measure-object-propriete value - average). Average), 1))
    $vms. TotalMemory = $vm.summary.config.memorysizemb
    $vms. SixMonthMemAvg = [String] ([Math]: round ((($MemAvg |))) Measure-object-propriete value - average). Average), 1))
    $report += $vms
    }

    $report | ConvertTo-Html-title "Report VMs" - body "report VMs < H2 > < / H2 > ' | Out-file $filelocation

    **************************************************

    Thank you

    VMSavvy

    There are some other problems with the script.

    You had the name (a string) of the guest in the $vm variable. The cmdlet Get-Stat does not object to the setting of entity name.

    The solution is to use the object returned by Get - VM.

    I assumed that your CSV file looks like this

    'Name '.

    "vm1.

    "vm2.

    The metric cpu.used.summation is available only when the interval is set to level 3.

    So, unless you have history 4 interval set at level 3, use another more common measure for the use of the processor. For example, cpu.usage.average.

    $filelocation= "C:\VMStatsReport.htm"
    $ErrorActionPreference = "SilentlyContinue"
    $import = Import-Csv "C:\listofvms.csv" -UseCulture | %{Get-VM -Name $_.Name}
    
    $report = @()
    
    foreach ($vm in $import) {
        $Interval = "180"    $IntervalFinish = Get-Date    $IntervalStart = $IntervalFinish.addDays(-1 * $Interval)
    
        $CPUAvg = $vm | Get-Stat -Stat Cpu.Usage.Average -Start $IntervalStart -Finish $IntervalFinish    $MemAvg = $vm | Get-Stat -Stat Mem.granted.average -Start $IntervalStart -Finish $IntervalFinish    $vms = "" | Select-Object VMName, "CPU Count", SixMonthCPUAvg, TotalMemory, SixMonthMemAvg    $vms.VMName = $vm.Name
        $vms."CPU Count" = $vm.summary.config.numcpu
        $vms.SixMonthCPUAvg = [String]([Math]::Round((($CPUAvg | Measure-Object -Property Value -Average).Average),1))
        $vms.TotalMemory = $vm.summary.config.memorysizemb
        $vms.SixMonthMemAvg = [String]([Math]::Round((($MemAvg | Measure-Object -Property Value -Average).Average),1))
        $report += $vms}
    
    $report | ConvertTo-Html -title "VMs Report" -body "

    VMs Report

    " | Out-File $filelocation
  • Process to get Performance data for the managed entity c#

    Could someone please describe the process for pulling data from the API performance?  The documentation seems a bit muddled.

    Qustions:

    Should you create a custom interval perf or you can use the default settings?

    If I have a performanceManager MOR and a hostSystem MOR what methods should I call on the PerformanceManger object to retrieve the performance counters on the managed entity? I'm trying to get ready time % of a host.  Looks like I need to use the QueryAvailablePerfMetric method to draw the MetricID and then use the QueryPerf to shoot the actual static...

    Any help is appreciated.

    VirtualFisk

    You can use available perfIntervals to extract data.

    You have reason to extract performance data, you must first call QueryAvailablePerfMetric to get metricIds and then pass them in the appeal of QueryPerf.

    Also to check whether or not real-time data are available on the entity you must first call QueryPerfProviderSummary on entity and check the PerfProviderSummary currentSupported property. If she defined as true, real-time data are available and you can pass PerfProviderSummary refreshRate as intervalID in your QueryAvailablePerfMetric call and still pass this refreshRate as intervalID PerfQuerySpec for QueryPerf appeal.

    Please see following code snippet to retrieve data for the managed entity HostSystem (hostMoRef), you can replace it with a managed object of an entity reference





    int counterID;

    int key;

    String group;

    String name;

    String rollup;

    ManagedObjectReference pmRef = _sic.perfManager;

    PerfCounterInfo[] cInfo = (PerfCounterInfo[])getObjectProperty(pmRef, "perfCounter");

    Hashtable PerfByID = new Hashtable();

    for (int i = 0; i < cInfo.Length; i++)

    {

    key = cInfo[i].key;

    group = cInfo[i].groupInfo.key;

    name = cInfo[i].nameInfo.key;

    rollup = cInfo[i].rollupType.ToString();

    Console.WriteLine("ID: " + key + " group: " + group + "." + name + "." + rollup);

    PerfByID.Add(key, group + "." + name + "." + rollup);

    }





    Console.WriteLine("\n---------------------------------------------");

    Console.WriteLine("Entity: " + hostMoRef.Value);

    PerfProviderSummary perfSum = _service.QueryPerfProviderSummary(pmRef, hostMoRef);

    Console.WriteLine("Refresh Rate" + perfSum.refreshRate + "\nCurrentSupported :"

    + perfSum.currentSupported + "\nisSummarySupported :" + perfSum.summarySupported);

    Console.WriteLine("Fetching Perf Metric Ids");

    DateTime curTime = _service.CurrentTime(_svcRef);

    DateTime beginTime = curTime.Subtract(new TimeSpan(1, 0, 0));

    DateTime endTime = curTime;

    int intervalID;



    if (perfSum.refreshRate < 0) {

    intervalID = 300;

    } else {

    intervalID = perfSum.refreshRate;

    }

    intervalID = 300;

    PerfMetricId[] Ids = _service.QueryAvailablePerfMetric(pmRef, hostMoRef, beginTime, false, endTime, false, intervalID, true);

    if (Ids != null && Ids.Length > 0)

    {

    Console.WriteLine("Ids fetched from QueryAvailablePerfMetric API are:");

    for (int k = 0; k < Ids.Length; k++) {

    Console.WriteLine("ID is: " + Ids[k].counterId + " Instance is: " + Ids[k].instance + "Name is: " + PerfByID[Ids[http://k].counterId|http://k].counterId]);

    }

    PerfQuerySpec qSpec = new PerfQuerySpec();

    qSpec.entity = hostMoRef;

    qSpec.metricId = Ids;

    qSpec.format = "csv";

    qSpec.intervalId = intervalID;

    qSpec.startTime = beginTime;

    qSpec.startTimeSpecified = true;

    qSpec.endTime = endTime;

    qSpec.endTimeSpecified = true;

    qSpec.maxSample = 1;

    qSpec.maxSampleSpecified = true;

    PerfQuerySpec[] qSpecs = new PerfQuerySpec[] { qSpec };

    if (hostMoRef != null)

    {

    PerfEntityMetricBase[] perfEntity = null;

    perfEntity = _service.QueryPerf(pmRef, qSpecs);

    if (perfEntity != null && perfEntity.Length > 0)

    {

    for (int i = 0; i < perfEntity.Length; i++)

    {

    PerfEntityMetricCSV pms = (PerfEntityMetricCSV)perfEntity[i];

    PerfMetricSeriesCSV[] vals = pms.value;

    if (vals != null)

    {

    Console.WriteLine("Perf Counters fetched");

    for (int vi = 0; vi < vals.Length; vi++)

    {

    PerfMetricSeriesCSV pmCSV = vals[vi];

    if (PerfByID[vals[http://vi].id.counterId|http://vi].id.counterId].ToString().StartsWith("mem.vmmemctl")) {

    Console.WriteLine("CounterId: " + vals[vi].id.counterId + " Name: " + PerfByID[vals[http://vi].id.counterId|http://vi].id.counterId] + " Instance: " + vals[vi].id.instance + " ----- ");

    counterID = vals[vi].id.counterId;

    //Console.WriteLine("Value in Map: " + PerfByID.get(counterID));

    Console.WriteLine("-------- Value : " + pmCSV.value);

    }

    }

    }

    }

    }

    else

    {

    Console.WriteLine("Performance statistics not available for this entity!");

    }

    }

    }

    else

    {

    Console.WriteLine("Perf Metrics not fetched");

    }

  • performance data not there

    Hi all

    Got a weird problem on capturing performance data.

    I use vc2.5 with sql 2005 full.

    My performance measures do not go beyond 24 hours.

    If you look at the chart options and try to choose anything, except the last day, there no data available.

    This host vc has been for more than a year.

    Anyone see this? Looks like some sort of setting but I can't seem to locate one.

    Thank you.

    I saw this, the data that you see are the perf data stored on the local host not in the comic book.  I suggest that you check the stat roller combined employment and ensure that they are running in the DB.  If they don't work I have very long and you have a large number of hosts and VM you're in trouble.  This could take hours or days to run the roll ups.  You can see that the tables affected truncating and just get the work right now to be your only option.  This is a Ko that explains how to solve the jobs:

    KB:1004382

    http://KB.VMware.com/selfservice/microsites/search.do?cmd=displayKC&docType=kc&externalId=1004382&sliceId=1&docTypeID=DT_KB_1_1&dialogID=4558589&StateID=0%200%203759361

  • When I opened tab check "send performance data," I don't have that choice of the tab. He wasn't there.

    I followed the instructions to check the firefox slowness and high utilization of the processor. Tools > options > advanced > General > check "Send performance data," but it there was not a box to check. All the other boxes were there. Just not 'send performance data."

    Quote: I followed the instructions to check the firefox slowness and high CPU usage.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the startup window Mode safe or make changes.
  • Where can I disable 'Send performance data to Mozilla' or if it is enabled?

    A few hours after the upgrade to Firefox 20, a bar has been shown at the bottom of the window telling me that some data was sent to Mozilla. the bar had a button called "Select what info" (or similar, I do not have a screenshot). By pressing the button doesn't not more opening the page root Options (the one in the row of icons at the top) and hidden bar.

    Help Mozilla on this option (https://support.mozilla.org/en-US/kb/send-performance-data-improve-firefox) has passed: it shows the old Options dialog box and refers to a checkbox control that no longer exists in Firefox 20.

    There is a new Panel in Firefox 20 for options - Firefox button > Options > Options (or tools > Options) > advanced > choice of data

  • cannot receive vCenter performance data

    Hello.

    I start with vFoglight to monitor my vCenter, and I can't receive vCenter performance data.

    I vFoglight hava installed on a host of Windows7 6.6.1. My vCenter is installed on a virtual machine and the operating system is Windows Server 2003. I Manager agent hava installed on vCenter host. I have a VMWarePerformance package deployed the host to vCenter and created an agent. The agent is active and data collting. But on the dashboard environment VMware, I see no performance information. There is only a single virtual centre with no performance data, and no there is no host ESX or Virtual Machines.

    I wonder if I need to deploy other cartridges or there is something that I have not properly config.

    Can someone help me?

    Additional accessories:

    It is clear now that I have the same problem like SOL87716, my vmware host uses the Chinese language.

    vFoglight is a stand-alone noncompliance, this means that there is no single cartridge for download.

    I connected the support engineer and open a support case, and then I got a legacy vmware agent 5.5.8.1.

    After I installed it on my vmware host, I can receive performance data now.

    Kind regards.

  • Available performance counters

    I'm looking for a list of all available performance perfmon and descriptions for windows server 2008r2 and 2012 counters.  Is there such a list or documentation available that I can view or download?

    Hi Jim,.

    The question you posted would be better suited in the Forum of the server. Please visit the link below to find a community that will provide the support you want.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home#Forum=winserver8gen&filter=AllTypes&sort=lastpostdesc&content=search

    Hope this information helps you.
  • Import Performance data in VMware Capacity Planner

    VMware Capacity Planner has the ability to import performance data in data manager or you must collect data from performance via the Capacity Planner software?

    Hello wgmaurerEMC,


    You can collect data from target of UNIX and Linux machines running the CP shell on each target computer scripts

    rather than run the scripts through the host of collector.

    Please, see page 47 of the CP reference Guide attached on how to implement the manual execution of scripts.

    Best regards

    Lazar

  • Collect a free ESXi host performance data

    I need to create e PowerCLI script to collect the performance data (SUC, RAM,...) on a (free) ESXi host and guest virtual machines.

    Y at - it no samples can I start from?

    Concerning

    Marius

    It work?

    Try {}

    Get-PSSnapin-name VMware.VimAutomation.Core - ErrorAction Stop

    }

    Catch {}

    Add-PSSnapin VMware.VimAutomation.Core

    }

    SE connect-Viserver-Server 192.168.1.1 - root user | Out-Null

    $esx = get-VMHost

    Get-Stat - $esx - Stat "cpu.usage.average" at the time entity real - MaxSamples - 1

    Disconnect VIServer Server 192.168.1.1

  • POS 5.5 could not obtain data with analytical performance data warehouses

    Hi all

    I have two devices POS running version: 5.5.5.180.

    All of a sudden I can not connect to the Web Client for each device.

    POS status show all services in green on the two Pdvs.

    root@vdp:~/#: dpnctl status all
    Identity added: /home/dpn/.ssh/dpnid (/home/dpn/.ssh/dpnid)
    dpnctl: INFO: gsan status: up
    dpnctl: INFO: MCS status: up.
    dpnctl: INFO: Backup scheduler status: up.
    dpnctl: INFO: axionfs status: up.
    dpnctl: INFO: Maintenance windows scheduler status: enabled.
    dpnctl: INFO: Unattended startup status: enabled.
    
    

    By clicking on the Storage tab, displays the error message: "Unable to get data with analytical performance data warehouses" and no data warehouses are listed.

    • VCenter restarts, Pdvs, doesn't change anything.
    • I can connect to Pdvs very well.
    • CP are created.

    I found similar topics but no response... (POS 5.5 ERROR)

    Open a support case and turned out that the POS password user (a user defined in the domain of the @vsphere.local) that was used to access the vCenter has expired. Apparently, there's a bug in vCenter for some versions that makes them expire in 65 days.

  • High availability Oracle Data Integrator-start managed servers exception

    Hello

    I am trying to configure high availability Oracle Data Integrator, using this tutorial: http://docs.oracle.com/cd/E14571_01/core.1111/e10106/odi.htm#autoId19

    Unfortunatelly, always without success. I stopped on ' 7.4.2.8 odi_server1 configure Node Manager and Start. My server fails to start because of the exception:

    WLS starting with line:
    /usr/lib/JVM/Java-1.6.0-openjdk-1.6.0.0.x86_64/bin/Java-serveur-Xms256m-Xmx512m - XX : MaxPermSize = 512m-Dweblogic.Name=odi_server1-Djava.security.policy=/home/oracle/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.policy-Dweblogic.ProductionModeEnabled=true-Dweblogic.system.BootIdentityFile=/home/oracle/Oracle/Middleware/user_projects/domains/odi_cluster/servers/odi_server1/data/nodemanager/boot.properties-Dweblogic.nodemanager.ServiceEnabled=true-Dweblogic.security.SSL.ignoreHostnameVerification=false-Dweblogic.ReverseDNSAllowed=false-Doracle.odi.coherence.wka1=eb-etl1 Doracle.odi.coherence.wka1.port=9088-Doracle.odi.coherence.wka2=eb-etl2-Doracle.odi.coherence.wka2.port=9088-Dtangosol.coherence.localport=9088--Dwls.home=/home/-Dplatform.home=/home/oracle/Oracle/Middleware/wlserver_10.3 da oracle/Oracle/Middleware/wlserver_10.3/server-Dweblogic.home=/home/oracle/Oracle/Middleware/wlserver_10.3/server-Dcommon.components.home=/home/oracle/Oracle/Middleware/oracle_common-Djrf.version=11.1.1-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger-Ddomain.home=/home/oracle/Oracle/Middleware/user_projects/domains/odi_cluster-Djrockit.optfile=/home/oracle/Oracle/Middleware/oracle_common/modules/oracle.jrf_11.1.1/jrocket_optfile.txt-Doracle.server.config.dir=/home/oracle/Oracle/Middleware/user_projects/domains/odi_cluster/config/fmwconfig/servers/odi_server1-Doracle.domain.config.dir=/home/oracle/Oracle/Middleware/user_projects/domains/odi_cluster/config/fmwconfig-Digf.arisidbeans.carmlloc=/home/oracle/Oracle/Middleware/user_ projets/domaines/odi_cluster/config/ fmwconfig/carml-Digf.arisidstack.home=/home/oracle/Oracle/Middleware/user_projects/domains/odi_cluster/config/fmwconfig/arisidprovider-Doracle.security.jps.config=/home/oracle/Oracle/Middleware/user_projects/domains/odi_cluster/config/fmwconfig/jps-config.xml-Doracle.deployed.app.dir=/home/oracle/Oracle/Middleware/user_projects/domains/odi_cluster/servers/odi_server1/tmp/_WL_user-Doracle.deployed.app.ext=/--Dweblogic.alternateTypesDirectory=/home/oracle/Oracle/Middleware/oracle_common/modules/oracle.ossoiap_11.1.1,/home/oracle/Oracle/Middleware/oracle_common/modules/oracle.oamprovider_11.1.1-Djava.protocol.handler.pkgs=oracle.mds.net.protocol - Dweblogic.jdbc.remoteEnabled=false-Dem.oracle.home=/home/oracle/Oracle/Middleware/oracle_common - Djava.awt.headless=true-Dodi.oracle.home=/home/oracle /Oracle/Middleware/Oracle_ODI1-Dodi.shared.config.dir.path=/home/oracle/Oracle/Middleware/user_projects/domains/odi_cluster/config/oracledi-Dweblogic.management.discover=false-Dweblogic.management.server= http://172.18.0.106 : 7005 - Dwlw.iterativeDev=false-Dwlw.testConsole=false-Dwlw.logErrorsToConsole=false-Dweblogic.ext.dirs=/home/oracle/Oracle/Middleware/patch_wls1036/profiles/default/sysext_manifest_classpath:/home/oracle/Oracle/Middleware/patch_ocp371/profiles/default/sysext_manifest_classpath weblogic. Server
    Exception in thread "main" java.lang.NoClassDefFoundError: Doracle/odi/coherence/wka1/port = 9088
    Caused by: java.lang.ClassNotFoundException: Doracle.odi.coherence.wka1.port = 9088
    in java.net.URLClassLoader$ 1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged (Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    to Sun.misc.Launcher$appclassloader$ AppClassLoader.loadClass (Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    The main class is not found: Doracle.odi.coherence.wka1.port = 9088. Program ends.

    Everything is configured exactly as described tutorial, but it does not work. You have ideas, what is the problem?

    It is because of the lack of '-' before Doracle.odi.coherence.wka1.port = 9088

  • VCentre Server V4.1 performance data

    Hello

    I suddenly lost performance data for my VM except in real time. I can, however, define a custom for almost a day period, but not the day before.

    My Vcentre Server uses SQL shipped with the product and I don't think that there is a correspondence enterprise manager to look at the database. IM at a loss what changed and have restarted the VC and checked all services running including SQL

    Any suggestions where to look

    Thank you

    Tony

    A KB was written to solve this problem, please see http://kb.vmware.com/kb/1030305 for more information.

    Hope of workaround helps.

    Kind regards

    Arun Pandey

    VMware Inc.

    VCP3, VCP4, HPCP, HP UX CSA

    http://KB.VMware.com/

Maybe you are looking for

  • Z230: Problems of mouse HP over the weekend.

    We have several thin lines HPZ230 in our environment, and over the weekend, some of them decided to not recognize the HP USB mouse wired that came with the system. I tried disconnecting and reconnecting, restarting, even a restoration of the system o

  • my pc restarts after 2 hours

    Well, I have a win xp Service Pack 2 on my pc but it restarts every 2 hours... I checked the disk hard he has no problem... I have not installed an anti virus either or my pc has had the virus pls can you help me...

  • Unable to activate my anti virus protection on windows Security Center.

    I just installed a new antivirus on my laptop, the avg free anti-virus program, I can see that his work, but I always get a security warning from windows Security Center that my anti virus protection is turned off, and when I choose to turn it on, it

  • BlackBerry smartphones, I receive SMS messages in the PIN messages

    Hello I just updated my OS on a Blackberry Curve 8520, and sice then, the SMS from my Blackberry Messenger contacts appear in the Blackberry Messenger too. I want to disable this feature. Help, please

  • problems with transient attributes using the Groovy Expressions on MySQL db

    HelloI m using jdev 11.1.2.4 and DB MySqll.Ive created the city and country of two tables.In the city of the table, there are foregin touch to amalgamate it at the table of the country.JDevelper have created associations and viewlinks of these painti