ORA-31000: resource "is not a document of schema XDB

I have registered HTNG_HotelRoomStatusSearchRQ.xsd with Oracle and am tempted to use this scheme. I have attached the original xsd, results of

SELECT * from user_xml_schemas where SCHEMA_URL = 'HTNG_HotelRoomStatusSearchRQ.xsd' and the block that I use to test. It's all labeled in the attached text document.

Please notify.

Thank you

Oracle cannot recognize as a schema-based XML document, because it is not simply conform to the schema.

This part is the wrong target namespace:

<>

"xmlns ="http://htng.org/2011B"

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

"" xsi: schemaLocation = "http://htng.org/2014B HTNG_HotelRoomStatusSearchRQ.xsd".

It should be "http://htng.org/2014B".

Tags: Oracle Development

Similar Questions

  • 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!

  • root.sh failed with the CRS-2800: could not start the 'ora.ctssd' resource as it is

    Cannot start the "ora.ctssd" resource as it is already in the INTERMEDIATE State.

    I tried to install two-node RAC on linux REDHAT, I met because of errors:

    Beginning of the resource 'ora.crsd' failed
    CRS-2800: could not start the 'ora.ctssd' resource as it is already in the State INTERMEDIARY on the server
    CRS-4000: Start command has failed, or completed with errors.
    Exclusive mode Clusterware ready beginning of Clusterware Services failed to 6475 /u01/app/11.2.0/grid/crs/install/crsconfig_lib.pm line.
    /U01/app/11.2.0/grid/Perl/bin/perl-I/U01/app/11.2.0/grid/Perl/lib-I/U01/app/11.2.0/grid/CRS/install /u01/app/11.2.0/grid/crs/install/rootcrs.pl execution failed


    How to solve this problem?

    runCluvfy has been correctly executed.

    I discovered on the second node (oracle02), there is no any daemon running. But on the local installation (oracle01) node:
    [[email protected] bin] #. / stat crsctl res-t--init
    --------------------------------------------------------------------------------
    TARGET STATE SERVER STATE_DETAILS NAME
    --------------------------------------------------------------------------------
    Cluster resources
    --------------------------------------------------------------------------------
    ORA.asm
    1 road to oracle01 online
    ORA.cluster_interconnect.haip
    1 oracle01 online
    ORA. FIU
    1 OFFLINE IN OFFLINE MODE
    ORA.crsd
    1 ONLINE OFFLINE
    ORA. CSSD
    1 oracle01 online
    ORA.cssdmonitor
    1 oracle01 online
    ORA.ctssd
    1 LINE intermediate oracle01 bad check return.
    ORA. DiskMon
    1 oracle01 online
    ORA.drivers.ACFS
    1 oracle01 online
    ORA.evmd
    1 OFFLINE IN OFFLINE MODE
    ORA.gipcd
    1 oracle01 online
    ORA.gpnpd
    1 oracle01 online
    ORA.mdnsd
    1 oracle01 online
    [[email protected] bin] #.


    How to make the next step? What is the difficulty so that my installation is successful.

    Thanks in advance.

    Hi Angelina,.

    I got this error when I tried to install Oracle RAC on VMware with unassigned shared disk. When I attributed it which fixed the problem.

    Kind regards
    Gennady

  • ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired

    Hi all

    I use oracle 11.2.0.3 with 3 node rac ODI.

    I have the table which I am not able to fall and give the error below.

    SQL > drop table I$ _CDS_FAULT_DEV1;

    fall of table I$ _CDS_FAULT_DEV1

    *

    ERROR on line 1:

    ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired

    SQL > show parameter ddl_lock

    VALUE OF TYPE NAME

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

    DDL_LOCK_TIMEOUT integer 300

    I changed to 100 but still the same error too, I checked and there is no lock. Can you please provide me with a way to solve this problem.

    Kind regards

    DBApps

    For sure there are locks, because the table is in use.

    Drop table wants an exclusive lock on the dictionary or the corresponding records.

    When the table is used there will be a lock from line on the document in the dictionary.

    Have you consulted with SGS$ access?

    Please do so now.

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

    Sybrand Bakker

    Senior Oracle DBA

  • After import of archive site Internet 10g, resources are not in the path

    Hi all

    I try to import the example WCM site in GR 11, 1 newly installed material (11.1.1.7.0) using site studio backup and restore utility.

    http://www.Oracle.com/technetwork/middleware/WebCenter/content/WCM-sample-site-131561.zip

    Important message of the site, when I access the pages I could see that images and other resources are not rendered as paths of the images could not be resolved.

    For example: the image of the logo. site is looking for the image at the following location.

    /CS/groups/public/documents/wcmwebasset/oracle_logo_15h.PNG

    Where as post import this image lies inside

    cs\weblayout\groups\public\documents\wcmwebasset\x2xv\z29f\~edisp\oracle_logo_15h.PNG

    How can we come to these problems?

    To give you a bigger picture, I'm working on a CEP to migrate a site of 10g and 11g. What is the right strategy to adopt. Right now I'm doing the following.

    (1) install 11 g R1 install.

    (2) to use folder_g as a network interface.

    (2) export 10 g Web site (I'm sure this could be split into several stages)

    3) import in 11 g

    (5) use the migration utility to move a folder interface folder_g to setting records.

    I wasn't going to upgrade inplace, mainly because the customer wants to retain the 10g install for some time yet and didn't want to corrupt the existing installation.

    I appreciate any help in this regard.

    Thanks in advance,

    Steven K.

    Hi stephanie,.

    You see the new path for the files due to the dispersion principle UCM 11 g from rule (which by default is set to the file store provider). This behavior can be changed by the following steps:

    1. check what the default rule, you must Access the FileStorage field select Administration - Applets - Configuration Manager admin - modify and check what is the default setting.

    It should be DispByContentId

    2. remove the rule of dispersion of the weblayout / web / vault of paths of Administration - suppliers - bank file by default - - Edit.

    3. update - updated

    Before you start with the above points, you must run an archive server full export target (11 g) and select the option "remove content after successful export. This will delete the server and it will be a perfectly clean instance.

    Then after changes in store files, server restarts, provider import archive created and then, with the same path as seen in the instance of 10g.

    Positions of reference:

    https://forums.Oracle.com/message/10058823

    https://blogs.Oracle.com/ecmarch/entry/working_with_the_new_fsp_dispe

    https://blogs.Oracle.com/ecmarch/entry/when_is_the_default_storage

    I hope this helps.

    Thank you

    Srinath

  • all the site went "not found HTTP 404 error. The requested resource is not found. "and the"Firefox cannot load Web sites but other programs can"page is not helping

    all the site went "not found HTTP 404 error. The requested resource is not found. "and the"Firefox cannot load Web sites but other programs can"page is not help somehow

    One possible cause is security software (firewall, antivirus) that prevents or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox and the plugin-container in the permissions list in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    You can try to reset (power off / on) of the router.

  • ItunesHelper.Resources is not a valid short file name

    I'm trying to uninstall Itunes on my PC Windows 10. I can't uninstall it because it gives me an error. The error is "iTunesHelper.Resources is not a valid short file name. I don't know what is happening here. Any help would be greatly appreciated.

    Download C Cleaner and use it to uninstall the application, or follow the instructions here

    Remove and reinstall iTunes and software for Windows 7 and later versions - Apple Support components

  • Cannot RESTORE my iPhone "the requested resource is not found."

    This has been ongoing for more than a week. I have a reliable internet connection.

    Connected my iPhone to iTunes, appears:

    iTunes cannot read the contents of the iPhone "IPhone Steve". Select the summary in the iPhone preferences tab and click on restore to restore the iPhone to factory settings.

    Click OK.

    Click on the button RESTORE iPHONE and another box opens with:

    Are you sure you want to restore the iPhone "iPhone" to its factory settings? All your media and other data will be erased.

    Click RESTORE.

    And that box pops up:

    The software update server could not be connected. The requested resource has not been found.


    I'm stuck in limbo here. Wanted for two hours, tried everything. Now, I'm here.  Any ideas? Thank you!!



    Hi SteveJobsRIP_1955-2011,

    Thank you for contributing to the communities of Apple Support.

    Looks like you are trying to restore your iPhone, but the message that the software update server could not be contacted.

    You mentioned that you have tried all the steps that you can find by searching. I wanted to make sure that you have tried the steps described in the second and third sections of If iTunes could not contact the server to update software for iPhone, iPad, or iPod. If so, can you connect to the iTunes Store on your Mac?

    All the best.

  • ORA-12154 tns could not resolve the specified correct identifier

    I am facing the following problem:

    labVIEW 2012 32 bits 64 bits of Windows 7, 10.2.0.1.0 oracle client (32-bit).

    I created a DSN from Data Sources (ODBC) (32-bit version of what in % windir%\syswow64\odbcad32.exe) pointing to an instance of Oracle 10 g.

    I have test the DSN in this way (IE. Data sources (ODBC) and the connection is successful (which means that the tnsnames.ora is correct).

    I use the "DB tools Open Connection.vi" in order to get connected to this database, passing as parameters the DSN above, the user name and password.

    I get the error:

    ADO error: 0x80040E4D
    Exception occurred in the Microsoft OLE DB provider for ODBC drivers:

    [Oracle] [ODBC] [Ora] ORA-12154: TNS could not resolve the specified correct identifier

    all will help much appreciated

    Thanks in advance

    Hello everyone.

    I already solved the problem (work until late Saturday).

    the solution was to install the latest version of the Oracle customer, namely: Oracle 11 g Release 2 CLIENT for Windows 32 (11.2.0.1.0).

    Now everything works OK.

    I also tested in Windows 7 32 bit (the .vi even and the same Oracle client). This will also OK.

    Thans a lot.

  • Error-1074118631 after driver update "the name of the resource is not attributed...". "PXI-6562

    I just updated my version 1.5.3 to 1.7.4 niHSDIO driver and now the device, a PXI-6562 is won't boot. I get the following error. The VI is suspended for 30 ~ 60 s attempt to initialize before the error occurs.

    Code: - 1074118631

    Message: niHSDIO Init generation Session.vithe name of the resource is not assigned to an instrument supported by NOR-HSDIO.

    The device worked fine with the old driver.

    Windows Device Manager indicates that everything is installed and working.

    I tried to write a simple VI by using new versions of the screw HSDIO and recreating the I/O resource menu drop-down.

    The resources dropdown lists the name as "PXI1Slot2".

    I can see the device in MAX thanks its location listed as "chassis: 1; Slot: 2 "

    The PXI-6562 has 2 LEDs on the front panel for 'access', 'active'. No lights during an attempt to initialize.

    I tried uninstalling the driver in Windows, reinstalling and restarting: same problem.

    I tried to use the device in Signal Express, and it produces the same error.

    I use LabVIEW version 8.5 and Signal Express 2.5.

    Does anyone know how to fix this?

    Thank you

    Arthur

    Hey Arthur,.

    You should also do a repair on the NOR-DAQmx driver for example, after you have repaired HSDIO. Let us know how it goes. Thank you.

    Kind regards

    DJ L.

  • NI LabVIEW driver for the SRS DS345 function generator generates error "(Hex 0xBFFF0011) insufficient location information or the device or resource is not present in the system."

    Hello

    We have a generator function SRS DS345.

    I just downloaded the driver NOR for the instrument on http://sine.ni.com/apps/utf8/niid_web_display.download_page?p_id_guid=E3B19B3E9149659CE034080020E748....

    After installation, the DS345 appears in MAX, and I can well communicate with him.

    However, if I run the srds345 to Started.vi, I get an error "location information insufficient (Hex 0xBFFF0011) or the device or resource is not present in the system" from initialize it with Options.vi srds345 sub - vi.

    The only change I did Exchange address GPIB 14 to 19, which is our function generator GPIB address. In addition, the

    Functions of SRS DS345 generator of function palette is empty, even after you restart LabVIEW (see attachment). I'm using LabVIEW 8.5.1.

    Your help in resolving this issue is appreciated. Thank you.

    Best regards

    Peter

    Have you installed the driver from LabVIEW or copied directly from inst.lib?

    The first is easier, and you don't have to restart LV more...

    Error in a not filled gpib address points. I have not checked if this driver has a resource name visa or a string of gpib address old but in the first case, try the little triangle on the right at the slect address instead of by hand.

  • Automatic updates is stuck, includes most of it resources, is not download the updates (windows xp) & how to use FixIt

    Automatic updates is stuck and includes most of the computing resources, does not download updates (windows xp).

    After restarting a couple of times and the computer almost melt it finally resolved itself but would like to know how to solve/speed "constipation" where it would happen again.

    Have automatic updates set in place to be notified, but not to download or install before you have manually committed.  Launched the download but then icon taskbar disappeared and cannot cancel downloads when the computer started to overheat.  Restarted.

    East went to the Microsoft Update Web site, but got stock without ever generating the list of updates.  Restarted.

    Went to link to FixIt for this type of problem and it just downloaded WindowsUpdateDiagnostic.diagcab and indicated that nothing was available to open this type of file.  Should a FixIt application be installed first?  He is yet to provide suggestions on how to proceed.

    Aversion to disable the automatic updates if would like more information on how to have a greater mastery of the process that it hogs computer and interfere with the realization of planned work.

    Kind regards.

    Thanks for the reply.

    I agree that it is not dust on the fan - read my response above.

    As I said above, I have concluded that the solution to the problem of automatic updates are unruly must all just use to be notified when updates are available, but then go on the site of Microsoft Updates and make the download / installation of the updates from there.  Doing it this way is much less likely to cause problems and offer better control of the user.  Once Microsoft Updates ends the taskbar icon disappears until the next time updates are available.

  • I am not able to open a web address, Windows Live, because the resource does not respond.

    I'm not able to open my Windows Live Calendar that is created by Windows;

    https://CID-cc49fdd95b0ee0dd.Calendar.live.com/calendar/private/c839cef8-8d4f-47E2-9c85-77c9f425c449/9f1db3ad-6994-4981-8d1d-8f0d174e6a0a/index.html

    I get a message that the resource does not respond.

    Your suggestions help to access detailed information, as well as my email.

    Nonsense. If you see the details of your calendar when you click on the link I gave, then you are connected with the Live ID that is associated with the agenda. No matter who else by clicking above will see either his own calendar so it is connected, or an invitation to sign it if it is not.

    If you try to share a calendar with other people, then use the options to share on the calendar page. You can specify how much or little detail people see, including the only periods of availability.

    Please ask questions about Windows Live Calendar in the forum dedicated to it.

    Noel

  • HP LaserJet Pro M127fn MFP: Automatic document feeder does not detect documents loaded on it

    Hello

    I use all of this in one previous machine a few months. Since the last two weeks than its automatic document feeder is not detect documents loaded on it, while it is perfectly flat scanner scanning and printing as well. This machine is connected via a usb cable. I tried all the troubleshooting options available including resetting the printer, cleaning ADF etc etc sensors I also tried the update the bios of the printer, but it does not work for me and feeder is constantly unable to detect documents loaded on it. I searched the whole forum but did not find any message an answer fast and good, therefore, will be highly appreciated in this regard. Thank you

    Hey @Mohsan_IT,

    Welcome to the Forums of HP Support!

    I would like to help you today to address the issue of automatic documents feeder sensor you encounter on your HP LaserJet Pro MFP M127fn. Please include all the troubleshooting steps that you received before you reach out for support. Right now, you have completed all the troubleshooting steps supported in your efforts to solve this problem. If you want to confirm that everything was done correctly, please see the following two positions:

    All steps in the discussions that I provided above must be made without success, then the last step would be to perform the programming reset NVRAM on your printer. Now I will send you a private Message with instructions on how to reset the NVRAM. Please check your private Messages for instructions.

    Good luck!

  • HP psc 1310 all in the printer software does not scan documents or computer keyboard control images.

    HP psc 1310 all in the software of the printer will not scan documents or photos of computer keyboard, control and transfer the file to the hard drive.

    Hi jghall35,

    1. When did you start to question?

    2 have you scan before without any problem?

    3. are you able to scan manually?

    4. What do you mean by the transfer of control of computer keyboard saying the file on the hard drive?

    5. what you trying to accomplish?

    Links:

    Scanning: Frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows7/scanning-frequently-asked-questions

    HP support link:

    http://h20000.www2.HP.com/bizsupport/TechSupport/SupportTaskIndex.jsp?lang=en&cc=us&TaskID=110&prodTypeId=18972&prodSeriesId=360489

    Jeremy K
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

Maybe you are looking for

  • 3rd party addons are shaded

    Hello! I switched to Firefox of IE because there are too many shady things going on with Addons, plugins, toolbars, etc. Now, I'm having the same problem. It seems that I install the applications themselves add to Firefox makes it slow and unstable.

  • No popup to close FireFox

    Since I updated to FF 5.0 and now FF 6.0 yesterday, I get yet the pop up notice/warming "you are about to close several tabs you want?" I've had this setting for a few years now, I think. Probably because it was offered. I looked at this article on t

  • Phone not charging after iOs updated 9: 3 - this accessory not supported

    After that I updated my iPhone 6 s yesterday to 9.3, my phone would not charge. I cleaned the port, I use a charger Apple, I redefined again and still nothing. My son did the same update and the same thing happens on his phone. Does anyone else have

  • Are there drivers for Officejet 8500 A910 2008

    I am trying to install an Officejet Pro 8500 A910 on a 32-bit of Windows 2008 Server.  Are there drivers for 2008?

  • The use of concat to add a new service

    Hoping someone can help.Someone can help me with the sql required to add a new service to my existing services.Currently I have the following text:Select Q'[alter system set service_name ='] ' | name | Q'[',]' services $ v2 where name! = 'SYS % ';Q'[