ORA-31000 lifting even when USER_XML_SCHEMAS does not have any line.

We create a huge XML file with patient information and medication. Read us the values of table tag and create the XML file and insert a CLOB column in a table.

Before inserting, we want to make sure that the XML is validated against an XSD.

To test this I created a small SP.

DB my is: SELECT banner OF v$ version WHERE ROWNUM = 1;

BANNER

--------------------------------------------------------------------------------

Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

The user has the following privileges:

USERNAME PRIVILEGE ADMIN_OPTION

------------------------------ ---------------------------------------- ------------

PEGA CREATE SYNONYM NO.

PEGA UNLIMITED TABLESPACE NO.

PEGA CREATE ANY TRIGGER NO.

My PC is:

create or replace

procedure validate_xml_test as

-Local variables here

-XML and XSD obtained from here: http://www.w3schools.com/schema/schema_howto.asp

RES BOOLEAN;

tempXML XMLTYPE.

XMLTYPE xmlDoc;

xmlSchema XMLTYPE.

schemaURL VARCHAR2 (256): = "testcase.xsd";

number of v_error_at;

BEGIN

v_error_at: = 05;

dbms_xmlSchema.deleteSchema (schemaURL, / * 4 * / DBMS_XMLSCHEMA.) DELETE_CASCADE_FORCE);

v_error_at: = 10;

xmlSchema: =.

xmlType ("<?") XML version = "1.0"? >

" < xs: schema xmlns: XS =" http://www.w3.org/2001/XMLSchema "

" targetNamespace = ' http://www.w3schools.com "

          xmlns=" http://www.w3schools.com "

elementFormDefault = "qualified" >

< xs: element name = "note" >

< xs: complexType >

< xs: SEQUENCE >

< xs: element name = "en" type = "xs: String" / >

< xs: element name = "" type = "xs: String" / >

< xs: element name = "category" type = "xs: String" / >

< xs: element name = "body" type = "xs: String" / >

< / xs: SEQUENCE >

< / xs: complexType >

< / xs: element >

< / xs: Schema >

');

v_error_at: = 20;

dbms_xmlschema.registerschema (schemaurl = > schemaURL,)

schemadoc = > xmlSchema

local = > TRUE

, genTypes = > FALSE

, genbean = > FALSE

genTables = > FALSE);

v_error_at: = 30;

xmlDoc: =.

XmlType ("<?") XML version = "1.0"? >

" < note xmlns: xsi =" http://www.w3.org/2001/XMLSchema-instance "xsi: noNamespaceSchemaLocation ="'| "'. schemaURL | '">

< to > Tove < /pour >

< from > Jani < / from >

< title > call < / section >

< body > don't forget me this weekend! < / body >

(< / note > ');

v_error_at: = 40;

xmlDoc: = xmlDoc.createSchemaBasedXML ();

v_error_at: = 50;

xmlDoc.schemaValidate ();

-If we are here, xml is valid

Dbms_output.put_line ('scheme is OK.");

exception

while others then

Dbms_output.put_line (' error @: ' | v_error_at |) ' -> ' || SQLErrm);

END;

Before running I check this: select * from user_xml_schemas;

There is no line.

Here is the result of the PS:

BEGIN validate_xml_test(); END;

Error @: 5 -> ORA-31000: resource 'testcase.xsd' is not a document schema XDB

You can copy and paste the SP above in your SQL * Developer and run.

As you can see, the error is thrown at each the 1st statement, here: dbms_xmlSchema.deleteSchema

Any help would be greatly appreciated. Solutions on similar errors in Google did not help.

PS: I did some reading and found out that the error above could be because the schema does not actually exist.

Now, I have changed my PC like this:

create or replace

procedure validate_xml_test as

-Local variables here

-XML and XML obtained from here: http://www.w3schools.com/schema/schema_howto.asp

RES BOOLEAN;

tempXML XMLTYPE.

XMLTYPE xmlDoc;

xmlSchema XMLTYPE.

schemaURL VARCHAR2 (256): = "testcase.xsd";

number of v_error_at;

number of v_count;

BEGIN

v_error_at: = 05;

-dbms_xmlSchema.deleteSchema (schemaURL, / * 4 * / DBMS_XMLSCHEMA.) DELETE_CASCADE_FORCE);

SELECT COUNT (1) INTO v_count FROM user_xml_schemas WHERE schema_url = 'testcase.xsd ';

IF v_count > 0 THEN

GOTO label1;

END IF;

v_error_at: = 10;

xmlSchema: =.

xmlType ("<?") XML version = "1.0"? >

" < xs: schema xmlns: XS =" http://www.w3.org/2001/XMLSchema "

" targetNamespace = ' http://www.w3schools.com "

          xmlns=" http://www.w3schools.com "

elementFormDefault = "qualified" >

< xs: element name = "note" >

< xs: complexType >

< xs: SEQUENCE >

< xs: element name = "en" type = "xs: String" / >

< xs: element name = "" type = "xs: String" / >

< xs: element name = "category" type = "xs: String" / >

< xs: element name = "body" type = "xs: String" / >

< / xs: SEQUENCE >

< / xs: complexType >

< / xs: element >

< / xs: Schema >

');

v_error_at: = 20;

dbms_xmlschema.registerschema (schemaurl = > schemaURL,)

schemadoc = > xmlSchema

local = > TRUE

, genTypes = > FALSE

, genbean = > FALSE

genTables = > FALSE);

< < label1 > >

v_error_at: = 30;

xmlDoc: =.

XmlType ("<?") XML version = "1.0"? >

" < note xmlns: xsi =" http://www.w3.org/2001/XMLSchema-instance "xsi: noNamespaceSchemaLocation ="'| "'. schemaURL | '">

< to > Tove < /pour >

< from > Jani < / from >

< title > call < / section >

< body > don't forget me this weekend! < / body >

(< / note > ');

v_error_at: = 40;

-xmlDoc: = xmlDoc.createSchemaBasedXML ();

v_error_at: = 50;

xmlDoc.schemaValidate ();

-If we are here, xml is valid

Dbms_output.put_line ('scheme is OK.");

exception

while others then

Dbms_output.put_line (' error @: ' | v_error_at |) ' -> ' || SQLErrm);

END;

I interviewed SD: SELECT substr (schema_url, 1, 30) schema_url, local, substr (schema, 1, 15) pattern, SUBSTR (qual_schema_url, 1, 100) qual_sch_url of user_xml_schemas;

SCHEMA_URL LOCAL QUAL_SCH_URL SCHEMA

------------------------------ ----- --------------- ----------------------------------------------------------------------------------------------------

" testcase.xsd YES <? xml version =" http://xmlns.Oracle.com/xdb/schemas/PEGA/TestCase.xsd    

Now when I run this I get: Error @: 50-> ORA-30937: no schema definition for 'note' (namespace ") in parent ' / '.

But I gave the XML in the correct format as the XSD.

The schema declares the document target namespace.

A valid XML instance should look like this:

"" xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance"

"" xsi: schemaLocation = "http://www.w3schools.com testcase.xsd" >

Tove

Jani

Reminder

Don't forget me this weekend!

Tags: Database

Similar Questions

  • Why am I selling a total of 41 pounds (various titles) in November through Kindle, but not one through iBooks? I don't promote either, and I don't know that there are several iPads out there than Kindle. Apple does not have any promotion?

    Why am I selling a total of 41 pounds (various titles) in November through Kindle, but not one through iBooks? I don't promote either, and I don't know that there are several iPads out there than Kindle. Apple does not have any promotion?

    Why are you asking? It's between you and Apple.

  • IPhone Bluetooth pair with car even when I do not have a call

    I recently started having a problem with my IPhone 4 s automatically picking up the sound system in cars, even if I did not call. This happens as soon as I turn on the car. When I press the keys on the phone I hear the click key in the car sound system, and the radio is removed. This happened with a Chevy Volt and a Ford CMax, then this is the phone, not the car. The only way I can make the radio work is to turn off the Bluetooth on my phone. It started only in the last week or two and I downloaded an update of the phone on the right, then, that could be the problem. Any suggestions?

    If the phone is paired with the car, it will happen.

    Can you not turn off the twinning/forget the connection?

  • VBS script does not have command line parameters

    Suddenly the VBS scripts that I use for several years is no longer work correctly on Windows 7.  By "suddenly" I mean they worked Wednesday and do not work on Friday, two days later.  There were / are two incidents:

    First of all, the program default for the extension VBS WScript to CScript changed.  CScript would scripts pretty well, except that my scripts are designed to run in debug mode under CScript, with many calls MsgBox, and I need them to run unattended.

    So I re-associated .vbs WScript.  Now the question is that WScript.Arguments.Count always returns 0 even when the script is invoked with command-line parameters.  I checked with the command FTYPE that Windows is configured to pass arguments to WScript:

    C:\>Assoc .vbs
    .vbs = VBSFile

    C:\>ftype VBSFile
    VBSFile="%SystemRoot%\System32\WScript.exe" "%1" % *.

    It's as if a Windows Update has suddenly dropped support for the %

    If anyone else has noticed this?  I can't go to CScript - I wrote dozens of scripts that I designed to behave differently under CScript or WScript.

    OS = Win 7 Pro 64-bit SP1

    In the meantime, I'm going to see events in the event viewer to see if this box received updates, MS or otherwise.

    Thank you for responding.  The content of the registry that you have provided is almost identical to one that I exported from a work computer.  The only difference was in the placement of the @= line "VBScript Script file", so I tried to import them both.  No one changed the behavior.

    Fortunately, this isn't a problem only when I need to type command-line parameters.  So I also tape "WScript" before the name of the script before you press Enter.

    I don't think I'll do more to solve problems, but I'll keep trying all the answers in this thread that look promising.

    Hello
    Check this key?

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.vbs

    You can export and send the content here. The value under "UserChoice" is most likely the culprit. And remove "UserChoice" key should straighten this issue.

  • XP host does not have any file that begins with "VM".

    Problem of crazy that I can't understand.  Under XP Pro SP3 on a desktop computer and try to install VMPlayer 3.01.  If I try to run the file that I downloaded I get a warning that "this application has failed to start because the application configuration is incomplete.  Reinstalling the application may fix this problem. "This exact file installs without problem on my XP Pro laptop.

    Here are the best, if I rename the file, so it does NOT begin with "VM", it will install.  But then if I try to turn on a guest operating system, I get an error because the other files that start with "VM" are started and fail.  If I rename notepad.exe to vmnotepad.exe it will not work!

    I uninstalled VMplayer and tried again with the same results.  I even tried a few VMware cleaner utility but no change.

    Any ideas?  Thank you.

    I fear that the evil is already due to 5 questions.

    Maybe the well known software little CCleaner, http://www.ccleaner.com , can be your best friend for help:

    Clean temporary files.

    Cleaning the registry.

  • I have no sound on my computer, it does not have any pregnant either.

    My computer no sound and does not recognize the speakers won't play CD

    I had the problem with the speakers being not recognised by Windows 7 and the solution that worked for me was to go to start: System: Device Manager: sound, video and game controllers: from there, right-click on your High Definition Audio (or whatever your audio) and select update.  Worked immediately for me and not too early to watch videos with my son before bedtime :)

  • Need to reinstall windows, but does not have any CD - Satellite Pro L20

    Hi, I wanted to reinstall Windows XP home on my Satellite Pro L20, but do not have the software that my laptop came with (read the discs lost). I have a valid XP tone (like its stuck on the bottom of my laptop), but no disc so I tired using a copy of a cd of Windows XP home, which did not work, but let me go as far as the formatting of the hard drive.

    So now I use Ubuntu, but want to reinstall Windows. Have valid product key, but no software to reinstall.

    Any suggestions?

    Thank you

    Christopher

    Valid key will not help you. This key belongs to the image recovery and copy included WXP he.
    If you have two options. Either you order original Toshiba recovery image or use Microsoft installations CD key which belongs to this copy. All the necessary drivers, tools and utilities that you can download at Toshiba support page under http://eu.computers.toshiba-europe.com > support & downloads.

    Good luck!

  • Why my computer is running slowly even when I do not have a virus?

    I find the virus and there is none. but my computer is very slow

    Hello

    What antivirus/antispyware/security products do you have on the machine? Be one you have NEVER
    on this machine, including those you have uninstalled (they leave leftovers behind which can cause
    strange problems).

    ----------------------------------------------------

    Follow these steps:

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Also run CheckDisk, so we cannot exclude as much as possible of the corruption.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    ==========================================

    After the foregoing:

    How to troubleshoot a problem by performing a clean boot in Windows Vista
    http://support.Microsoft.com/kb/929135
    How to troubleshoot performance issues in Windows Vista
    http://support.Microsoft.com/kb/950685

    Optimize the performance of Microsoft Windows Vista
    http://support.Microsoft.com/kb/959062
    To see everything that is in charge of startup - wait a few minutes with nothing to do - then right-click
    Taskbar - the Task Manager process - take a look at stored by - Services - this is a quick way
    reference (if you have a small box at the bottom left - show for all users, then check that).

    How to check and change Vista startup programs
    http://www.Vistax64.com/tutorials/79612-startup-programs-enable-disable.html

    A quick check to see that load method 2 is - using MSCONFIG then put a list of
    those here.
    --------------------------------------------------------------------

    Tools that should help you:

    Process Explorer - free - find out which files, key of registry and other objects processes have opened.
    What DLLs they have loaded and more. This exceptionally effective utility will show you even who has
    each process.
    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896653.aspx

    Autoruns - free - see what programs are configured to start automatically when you start your system
    and you log in. Autoruns also shows you the full list of registry and file locations where applications can
    Configure auto-start settings.
    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902.aspx
    Process Monitor - Free - monitor the system files, registry, process, thread and DLL real-time activity.
    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896645.aspx

    There are many excellent free tools from Sysinternals
    http://TechNet.Microsoft.com/en-us/Sysinternals/default.aspx

    -Free - WhatsInStartUP this utility displays the list of all applications that are loaded automatically
    When Windows starts. For each request, the following information is displayed: Type of startup (registry/Startup folder), Command - Line String, the product name, Version of the file, the name of the company;
    Location in the registry or the file system and more. It allows you to easily disable or remove unwanted
    a program that runs in your Windows startup.
    http://www.NirSoft.NET/utils/what_run_in_startup.html

    There are many excellent free tools to NirSoft
    http://www.NirSoft.NET/utils/index.html

    Window Watcher - free - do you know what is running on your computer? Maybe not. The window
    Watcher says it all, reporting of any window created by running programs, if the window
    is visible or not.
    http://www.KarenWare.com/PowerTools/ptwinwatch.asp

    Many excellent free tools and an excellent newsletter at Karenware
    http://www.KarenWare.com/

    ===========================================

    Vista and Windows 7 updated drivers love then here's how update the most important.

    This is my generic how updates of appropriate driver:

    This utility, it is easy see which versions are loaded:

    -Free - DriverView utility displays the list of all device drivers currently loaded on your system.
    For each driver in the list, additional useful information is displayed: load address of the driver,
    Description, version, product name, company that created the driver and more.
    http://www.NirSoft.NET/utils/DriverView.html

    For drivers, visit manufacturer of emergency system and of the manufacturer of the device that are the most common.
    Control Panel - device - Graphics Manager - note the brand and complete model
    your video card - double - tab of the driver - write version information. Now, click on update
    Driver (this can do nothing as MS is far behind the certification of drivers) - then right-click.
    Uninstall - REBOOT it will refresh the driver stack.

    Repeat this for network - card (NIC), Wifi network, sound, mouse, and keyboard if 3rd party
    with their own software and drivers and all other main drivers that you have.

    Now in the system manufacturer (Dell, HP, Toshiba as examples) site (in a restaurant), peripheral
    Site of the manufacturer (Realtek, Intel, Nvidia, ATI, for example) and get their latest versions. (Look for
    BIOS, Chipset and software updates on the site of the manufacturer of the system here.)

    Download - SAVE - go to where you put them - right click - RUN AD ADMIN - REBOOT after
    each installation.

    Always check in the Device Manager - drivers tab to be sure the version you actually install
    presents itself. This is because some restore drivers before the most recent is installed (sound card drivers
    in particular that) so to install a driver - reboot - check that it is installed and repeat as
    necessary.

    Repeat to the manufacturers - BTW in the DO NOT RUN THEIR SCANNER device - check
    manually by model.

    Look at the sites of the manufacturer for drivers - and the manufacturer of the device manually.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    How to install a device driver in Vista Device Manager
    http://www.Vistax64.com/tutorials/193584-Device-Manager-install-driver.html

    If you update the drivers manually, then it's a good idea to disable the facilities of driver under Windows
    Updates, that leaves about Windows updates but it will not install the drivers that will be generally
    older and cause problems. If updates offers a new driver and then HIDE it (right click on it), then
    get new manually if you wish.

    How to disable automatic driver Installation in Windows Vista - drivers
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/
    http://TechNet.Microsoft.com/en-us/library/cc730606 (WS.10) .aspx

    ===========================================

    Refer to these discussions because many more excellent advice however don't forget to check your antivirus
    programs, the main drivers and BIOS update and also solve the problems with the cleanboot method
    first.

    Problems with the overall speed of the system and performance
    http://support.Microsoft.com/GP/slow_windows_performance/en-us

    Performance and Maintenance Tips
    http://social.answers.Microsoft.com/forums/en-us/w7performance/thread/19e5d6c3-BF07-49ac-a2fa-6718c988f125

    Explorer Windows stopped working
    http://social.answers.Microsoft.com/forums/en-us/w7performance/thread/6ab02526-5071-4DCC-895F-d90202bad8b3

    Hope these helps.

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

  • How to save as a png when it does not have the option

    I work with CC, I chose the background white, applied a mask and now show the background transparency. But it wont let me save as a png image. What's up with that?

    Check the mode of your image and depth of bit - PNG is supported only in levels of grayscale and RGB, indexed in 8 and 16-bit/channel color.

  • Could not load the add-on Firefox 6 Manager. Does not have any modules or plugins. Stuck on 'Loading '.

    I am currently getting some "funky" my Firefox responses, so I wanted to check my addons to see if one of them was the cause.
    But I can't get the Add-ons Manager to load, it gets stuck on the page 'Start' - displays just the circle and "Loading" animation next to him.
    Have you tried to restart FF, restart the PC, start without addons.
    Because I do not run many addons or plugins, this isn't a major case-, but if someone could help me I would be grateful.

    When you open the tab of the Add-ons Manager, click anything other than to get modules.

    This item charge information on the site of modules, which I think is running slow, probably because of all the Tuesday update update related applications, both Firefox 6 and Firefox 3.6.20. Now seems to be much worse than what I saw with 4.0 and 5.0, so it is perhaps not as simple as that. But whatever the cause, once you get off that get tab Addons, the AOM window should then open with what you have selected in the future - at least that's how it works for me.

  • Square signal of function generator does not have any straight edges

    Hello, everyone!

    In my job, I need to see the charge and discharge of capasitor. I have to use a schema on the photo attached to power the capasitor, because I'm going to replace it with thermoresistor, requiring a certain exact current level. I use a square wave generator functions as a service. But when I built my diet on the prototyping card and connect the generator, edges of the square wave become geometries and there is no lag CC that I set myself.

    Can someone help me to know what is the problem?

    Thank you in advance.

    Hello samewings,

    I took a bit of time and studied your wiring diagram.  Your reading of the oscilloscope, it seems that you've done well to capture the loading and unloading of response of a capacitor already.  For your information, you can compare your readings of the oscilloscope to the document I have provided below.  You will notice that your corners of square waves are rounded as the loading and unloading of curves that are visible when the charge and discharge of a capacitor.  A capacitor charge and discharge over time.  For this reason, the voltage you read in all of your circuit will show this curve depending on the time on the edges of your square.

    Charging & discharging a capacitor

  • Acer does not have any spare part for the B326HK monitor.

    I bought on 11.06.2014 in the monitor of Belgium a B326HK 4 K and it was after 2 days already broken. The monitor has been sent to the Acer service center, but it seems that they have no spare parts. I've had better service expected of Acer. Their explanation is that it is a fairly new monitor and they can get difficult spare parts. Are there people who are facing this problem?

    @ Cory. Today I finally received news of Acer with the message that the motherboard of the monitor showed an error. Because apparently these motherboards are currently difficult to obtain, Acer will send me a new monitor. When I read here on the forum about problems that have other owners of this Acer B326HK, I think they could actually sit with the same faulty motherboard in their monitor.

  • Outlook Express does not have any server is located. N ° Socket Error 120007 error #0x800CCCOD

    Anyone has any ideas - thanks

    Make sure that you can connect via webmail, if you have this option with your email provider.

    If webmail works, you can try to remove your e-mail account, close and reopen OE and then add your return email account once again.  Make sure also that you have not put antivirus software to analyze mail.  See www.oehelp.com/OETips.aspx#3

    Steve

  • Invisible signatures by the incremental update does not have any signs?

    Hi all!

    Sorry if here is not the right place for my question. If this is the case, is - can someone inform in the right place?

    Well, I am trying to build a tool to sign a PDF of incremental update using Delphi [].

    I am beginner in PDF structure and the brevity of the time made me perhaps a bit inattentive and desperate.

    After 2 months of hard fighting, I managed to get Acrobat Reader know my PDF (initially created by a java tool called SignServer) has a signature and recognize the certificate but it says that the certification is not valid because 'the byte range is invalid.

    I analyzed the PDF file in a hex editor and the byte range signature so any other object compensates seems correct.

    My PDF test is here: https://drive.Google.com/open?ID=0B0KKmaB-a0Z4SDZfNXdZRWZEem8

    Can you tell me what the problem with this PDF?

    Many thanks for any help!

    Specifications and PDF language

  • TDMS Excel Add-in does not limit new line Excel 2007 support

    First stop, I want to say that format TDM/PTM is really useful. It allows you to perform all sorts of things that would be a real pain if you've tried to do with spreadsheets, delimited by tabs. You can format data in spreadsheets excel for analysis with separate tabs and the names of channel on the columns and the whole nine yards. You can even throw error messages in the properties that appear on the first tab.

    The problem occurs when the user works with very large files. Excel 2003 and earlier versions of Excel have limits of 65 536 rows by 256 columns. Until the latest version of the Excel Add-in, CT if you tried to import files in addition to this he would lift an error and does not create any file at all. It is important now to a file and that you specify the index, which is so much better.

    Excel 2007 supports 1 048 576 lines by 16 384 columns! This is really useful. But the current version of the TDM Excel Add-In does not support the limit of the new line. Is there a way we can get a version of this for 2007 that supports the new limits of the line? It would be cool if the add-in could automatically detect the version and to modify the limits of import accordingly but it is perhaps too much. Has anyone else experience these problems?

    My client would like to file long record time at 200 Hz throughout the day. Lines of data per file is 720 000. Yes, that's a lot, but excel takes care of everything. The importer TDMS impossible. Of course there are workarounds and we will have to use one if a new version of the Add - in Excel TDM will not soon made. Y at - it a new version coming soon? Please say Yes.

    Mystery solved. Completely uninstalling and reinstalling the add-in, do the same thing on a computer to co-workers and to come with the same limited import I scratch my head a bit. It turns out that my network administrators put all suites MS Office in the entire company to operate in 'compatibility' default Mode, so they would save default 2003 versions. When Excel is running in compatibility mode and the user tries to import large tdms, the behavior I described occurs.

    I really appreciate your help guys. This is the supplement at all.

Maybe you are looking for

  • HP probook 450 g2: hp simplepass does not

    I bought a brand new hp probook 450 g2 pc laptop last week.and than th pass simple version 6 nuts also, I installed his does not not the sensor I does not please hep to solve this problem

  • Re: Merge the partition recovery CD?

    So, first of all, I would like to say that I am very good with computers/programming, so I guess what I was doing was rational.Okay, so, I accidentally deleted and merged my windows recovery partition not knowing it was for recovery. Unfortunately I

  • Memory and the disk presents 99% usage in Task Manager

    Its been like a month that my task manageris showing disk and memory utilization to 99% high skyrocketing even if I'm only n opening three navigation tabs. And the system will be late time... I anitivirus install n that's far too... What would be the

  • Impact of active directory on local users

    Dear friends, We have here a 30 systems with windows 7 Professional in the module of workgroup. All systems havetwo accounts of users, namely admin and staff, all us employee will use the personal account. Now, we have planned to implement the concep

  • Laptop HP 15-af131dx: CPU upgrades the HP 15-af131dx laptop

    I have a HP 15-af131dx. I would like to put a faster processor in it but I don't know wha my potential options are. I know that's not supported officaiily, but that does not mean that it is impossible. I already know how to open it, I did once to ins