Working with clobs or extremelly large strings - please urgent

Hi,
i have a VARCHAR2 variable that is VARCHAR2(32767), is this possible?
and i receive to the procedure a VARCHAR2 with almost 28000 character, then i have to insert that value as a CLOB in a xmltype table. This would look like a question to XML DB forum, but what i really need to know is how i can insert a string of that value in a table with a CLOB field. When i try i receive missing expression error. here goes the code:
Procedure Insert_Data(xmlSTR in VARCHAR2)
IS
     SQLStmt                                   VARCHAR2(32767);
xmlDoc clob;
BEGIN
xmlDoc := 'xmltype(''<?xml version="1.0"?>' || xmlSTR || ''')';
xml_table_name := 'XML_TABLE';
     EXECUTE IMMEDIATE 'create table XML_TABLE of xmltype';
-- EXECUTE IMMEDIATE 'INSERT INTO ' || xml_table_name || ' VALUES (' || xmlDoc || ')'; --> with this expression i receive "PLS-00382: expression is of wrong type" error in compiling time.
-- and with this i get "missing rigth parentesis" error in run time
     SQLStmt := ' INSERT INTO ' || xml_table_name || ' VALUES (' || xmlDoc || ')';
     EXECUTE IMMEDIATE SQLStmt;
i'm working with oracle 9.2.07 in windows xp and also tried creating a table with a CLOB column and insert xmlDoc value for it, creating a loop and concatenating value from the string
can someone help please

You need to match your datatypes. Either insert an xmltype into a table of xmltype or insert a clob into a clob column. I have demonstated both below.
scott@ORA92> CREATE OR REPLACE PROCEDURE insert_data
  2    (p_xmlSTR      IN VARCHAR2,
  3       p_xml_table_name IN VARCHAR2)
  4  AS
  5    v_xmlDoc          xmlTYPE;
  6  BEGIN
  7    EXECUTE IMMEDIATE
  8        'CREATE TABLE ' || p_xml_table_name || ' OF XMLTYPE';
  9    v_xmlDoc := XMLTYPE ('<?xml version="1.0"?>' || p_xmlSTR);
10    EXECUTE IMMEDIATE
11            'INSERT INTO ' || p_xml_table_name
12        || ' VALUES (:b_xmlDoc)'
13        USING v_xmlDoc;
14  END insert_data;
15  /
Procedure created.
scott@ORA92> SHOW ERRORS
No errors.
scott@ORA92> BEGIN
  2    insert_data
  3  ('<Warehouse>
  4        <WarehouseId>1</WarehouseId>
  5        <WarehouseName>Southlake, Texas</WarehouseName>
  6        <Building>Owned</Building>
  7        <Area>25000</Area>
  8        <Docks>2</Docks>
  9        <DockType>Rear load</DockType>
10        <WaterAccess>true</WaterAccess>
11        <RailAccess>N</RailAccess>
12        <Parking>Street</Parking>
13        <VClearance>10</VClearance>
14    </Warehouse>',
15   'xwarehouses');
16  END;
17  /
PL/SQL procedure successfully completed.
scott@ORA92> DESC xwarehouses
Name                                                  Null?    Type
TABLE of XMLTYPE
scott@ORA92> SELECT * FROM xwarehouses
  2  /
SYS_NC_ROWINFO$
<Warehouse>
  <WarehouseId>1</WarehouseId>
  <WarehouseName>Southlake, Texas</WarehouseName>
  <Building>Owned</Building>
  <Area>25000</Area>
  <Docks>2</Docks>
  <DockType>Rear load</DockType>
  <WaterAccess>true</WaterAccess>
  <RailAccess>N</RailAccess>
  <Parking>Street</Parking>
  <VClearance>10</VClearance>
</Warehouse>
scott@ORA92> DROP TABLE xwarehouses
  2  /
Table dropped.
scott@ORA92> CREATE OR REPLACE PROCEDURE insert_data
  2    (p_xmlSTR      IN VARCHAR2,
  3       p_xml_table_name IN VARCHAR2)
  4  AS
  5    v_xmlDoc          CLOB;
  6  BEGIN
  7    EXECUTE IMMEDIATE
  8        'CREATE TABLE ' || p_xml_table_name || ' (clob_col CLOB)';
  9    v_xmlDoc := '<?xml version="1.0"?>' || p_xmlSTR;
10    EXECUTE IMMEDIATE
11            'INSERT INTO ' || p_xml_table_name
12        || ' VALUES (:b_xmlDoc)'
13        USING v_xmlDoc;
14  END insert_data;
15  /
Procedure created.
scott@ORA92> SHOW ERRORS
No errors.
scott@ORA92> BEGIN
  2    insert_data
  3  ('<Warehouse>
  4        <WarehouseId>1</WarehouseId>
  5        <WarehouseName>Southlake, Texas</WarehouseName>
  6        <Building>Owned</Building>
  7        <Area>25000</Area>
  8        <Docks>2</Docks>
  9        <DockType>Rear load</DockType>
10        <WaterAccess>true</WaterAccess>
11        <RailAccess>N</RailAccess>
12        <Parking>Street</Parking>
13        <VClearance>10</VClearance>
14    </Warehouse>',
15   'xwarehouses');
16  END;
17  /
PL/SQL procedure successfully completed.
scott@ORA92> DESC xwarehouses
Name                                                  Null?    Type
CLOB_COL                                                       CLOB
scott@ORA92> SELECT * FROM xwarehouses
  2  /
CLOB_COL
<?xml version="1.0"?><Warehouse>
    <WarehouseId>1</WarehouseId>
    <WarehouseName>Southlake, Texas</WarehouseName>
    <Building>Owned</Building>
    <Area>25000</Area>
    <Docks>2</Docks>
    <DockType>Rear load</DockType>
    <WaterAccess>true</WaterAccess>
    <RailAccess>N</RailAccess>
    <Parking>Street</Parking>
    <VClearance>10</VClearance>
  </Warehouse>
scott@ORA92>

Similar Messages

  • Problems While Working With CLOB fields

    HI Friends,
    I am facing one big problem while working with CLOB fields. I work in crystal reports in my project and My team is works in BMC Remedy tool. As per database configuration by default the date fields are stored in numbers. There is a field named Work Log which stores the complete history information of a ticket or a call.
    While generating reports I convert the date fields from numbers into date values by using to_date function. But I am not able to change the dates mentioned in the worklog which is a CLOB field. As a result when I am generating reports text part of the work log is comming fine but the date fields are comming in numbers.
    Please refer the below example:-
    *1291012455anilkumarptesting*
    Full Name:
    PRG Name - EUC-APP PKGN1291012585anilkumarptesting
    Full Name:
    PRG Name - EUC-APP PKGN1291012631anilkumarptest
    Full Name:
    PRG Name - EUC-APP PKGN1291207510anilkumarpfd
    Full Name: Anil Kumar Pantangi
    PRG Name - Prod_Ops1291207535anilkumarpf
    Full Name: Anil Kumar Pantangi
    PRG Name - Prod_Ops
    Assignment notification disabled for this transaction1291212517kapilbasd
    Full Name: Anil Kumar Pantangi
    PRG Name - Prod_Ops
    See the first line of the worklog "1291012455anilkumarptesting", 1291012455 is referring a date value, but due to database configuration it's comming in number. All the other numbers in the above text are dates only which need's to be converted. These dates are captured in remedy tool when someone updates that ticket.
    I am not able to decide how to change this numbers into dates. As it is containing lot's of numbers i am really confused how to come with a solution.
    Can I expect a solution from you, atleast a way how to proceed resolving this problem. Should I have to write a procedure for this??
    Please help..........
    Kindly let me know if you need any more input.
    Regards,
    Arijit

    937670 wrote:
    1291012455 represents a date value,What date value does it represent? Since it's not obvious to us what date you want that converted into, it's obviously hard for us to help. For example, perhaps you want that to be Jan 29, 2010 with "12455" representing a time component in some non-obvious format. Perhaps you want that to be December 1991 at 1:24:55. Perhaps you want to convert it to a completely different date. You're going to need to tell us in words how to convert your numeric data into a date.
    My question is how can I convert all the numbers into date in the CLOB field and present it in a proper manner.Given your sample data, what do you expect the output to be? Do you expect many rows of data, one for every date in the CLOB? Do you expect a comma-separated list? Something else?
    Justin

  • Does Streams work with CLOB or not

    Hi,
    Reading the documentation it tells me streams works with CLOB's. So I tried it out and it failed with an unsupported datatype error. I'm using a standard charset (WE8ISO8859P15). So does it work with this charset or not???? (well in may case not :-) It's not really clear to me what charsets are supported.
    Thanks,
    Steve.

    Did you try to replicate whole table with CLOB column in it? It should works..

  • ?Working with clob and blob - using Dbms_Lob

    I need to search through a blob and remove some of the data, but having problems working with dbms_lob.erase.
    Reading the documentation, the procedure is supposed to work with either blobs or clobs, but I can't get it to work with the blob.
    Here's what I've coded and it does not work correctly for blobs.
    What have I've done wrong?
    declare
    v_start                   integer;
    v_stop                    integer;
    v_amount                  integer;
    v_max_len                  integer:=32676;
    v_offset                   integer:=1;
    v_new_length               integer;
    v_clob clob;
    v_blob blob;
    begin
    update test_clob
    set clob_id = clob_id
    where clob_id = 1
    returning clob_desc into v_clob;
    v_start := 0;
    v_stop  := 0;
    v_amount := 0;
    v_start := dbms_lob.instr(v_clob, '<property name="Name">SortMode', v_offset );
    v_stop  := dbms_lob.instr(v_clob, '</property>',  v_start );
    v_amount := ((v_stop - v_start)+11) ;
    dbms_output.put_line('Clob: '||v_clob);
    dbms_lob.erase(v_clob, v_amount, v_start);
    dbms_output.put_line('Clob: '||v_clob);
    rollback;
    update test_clob
    set clob_id = clob_id
    where clob_id = 1
    returning blob_desc into v_blob;
    v_start := 0;
    v_stop  := 0;
    v_amount := 0;
    v_start := dbms_lob.instr(v_blob, utl_raw.cast_to_raw('<property name="Name">SortMode'), v_offset );
    v_stop  := dbms_lob.instr(v_blob, utl_raw.cast_to_raw('</property>'),  v_start );
    v_amount := ((v_stop - v_start)+11) ;
    dbms_output.put_line('Blob: '||utl_raw.cast_to_varchar2(v_blob) );
    dbms_lob.erase(v_blob, v_amount, v_start);
    dbms_output.put_line('Blob: '||utl_raw.cast_to_varchar2(v_blob) );
    rollback;
    end trg_bui_user_assoc_layout;
    /This is the output
    Clob: this is only a test <property name="Name">SortMode</property>  should leave this alone
    Clob: this is only a test                                            should leave this alone
    Blob: this is only a test <property name="Name">SortMode</property>  should leave this alone
    Blob: this is only a test

    Well, you left out the table DDL and your insert for sample data (would be nice to have) as well as your Oracle version (pretty much a necessity).
    Since i had to make my own there could be a difference in how you populated your table, but i can't reproduce your findings.
    ME_ORCL?drop table test_clob purge;
    Table dropped.
    Elapsed: 00:00:00.09
    ME_ORCL?
    ME_ORCL?create table test_clob
      2  (
      3     clob_id     number not null primary key,
      4     clob_desc   clob,
      5     blob_desc   blob
      6  );
    Table created.
    Elapsed: 00:00:00.03
    ME_ORCL?
    ME_ORCL?insert into test_clob values
      2  (
      3        1
      4     ,  'this is only a test <property name="Name">SortMode</property>  should leave this alone'
      5     ,  utl_raw.cast_to_raw('this is only a test <property name="Name">SortMode</property>  should leave this alone')
      6  );
    1 row created.
    Elapsed: 00:00:00.01
    ME_ORCL?
    ME_ORCL?commit;
    Commit complete.
    Elapsed: 00:00:00.01
    ME_ORCL?
    ME_ORCL?declare
      2  v_start                   integer;
      3  v_stop                    integer;
      4  v_amount                  integer;
      5  v_max_len                  integer:=32676;
      6  v_offset                   integer:=1;
      7  v_new_length               integer;
      8
      9  v_clob clob;
    10  v_blob blob;
    11
    12  begin
    13
    14   update test_clob
    15   set clob_id = clob_id
    16   where clob_id = 1
    17   returning clob_desc into v_clob;
    18
    19   v_start := 0;
    20   v_stop  := 0;
    21   v_amount := 0;
    22
    23   v_start := dbms_lob.instr(v_clob, '<property name="Name">SortMode', v_offset );
    24   v_stop  := dbms_lob.instr(v_clob, '</property>',  v_start );
    25   v_amount := ((v_stop - v_start)+11) ;
    26
    27   dbms_output.put_line('Clob: '||v_clob);
    28
    29   dbms_lob.erase(v_clob, v_amount, v_start);
    30
    31   dbms_output.put_line('Clob: '||v_clob);
    32
    33   rollback;
    34
    35   update test_clob
    36   set clob_id = clob_id
    37   where clob_id = 1
    38   returning blob_desc into v_blob;
    39
    40   v_start := 0;
    41   v_stop  := 0;
    42   v_amount := 0;
    43
    44   v_start := dbms_lob.instr(v_blob, utl_raw.cast_to_raw('<property name="Name">SortMode'), v_offset );
    45   v_stop  := dbms_lob.instr(v_blob, utl_raw.cast_to_raw('</property>'),  v_start );
    46   v_amount := ((v_stop - v_start)+11) ;
    47
    48   dbms_output.put_line('Blob: '||utl_raw.cast_to_varchar2(v_blob) );
    49
    50   dbms_lob.erase(v_blob, v_amount, v_start);
    51
    52   dbms_output.put_line('Blob: '||utl_raw.cast_to_varchar2(v_blob) );
    53
    54   rollback;
    55
    56  end trg_bui_user_assoc_layout;
    57  /
    Clob: this is only a test <property name="Name">SortMode</property>  should leave this alone
    Clob: this is only a test                                            should leave this alone
    Blob: this is only a test <property name="Name">SortMode</property>  should leave this alone
    Blob: this is only a test                                            should leave this alone
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.03
    ME_ORCL?select *
      2  from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    5 rows selected.
    Elapsed: 00:00:00.03
    ME_ORCL?

  • XPath query works with CLOB but not with object relational

    hi all
    i have the following queries,the XQuery work with all, but XPath queries work with XMLType CLOB and Binary XML, but they do not work with XMLType as Object relational,
    select extract (object_value,'movies/directorfilms/films/film [studios/studio = "Gaumont"]')
    from xorm;
    select extract (object_value,'movies/directorfilms[director/dirname = "L.Cohen"]/films/film[position()=2]/t')
    from xorm;
    they shows this message
    ORA-00932: inconsistent datatypes: expectd SYSTEM.name683_COLL got CHAR
    thanks

    Hi Marco
    fisrt here is my RO
    BEGIN
    DBMS_XMLSCHEMA.registerSchema(
    SCHEMAURL=>'http://......../ORMovies.xsd',
    SCHEMADOC=>bfilename('DB','Movies.xsd'),
    LOCAL =>false,
    GENTYPES=>true,
    GENTABLES=>FALSE,
    CSID=>nls_charset_id('AL32UTF8'));
    END;
    create table XORM of xmltype
    xmltype store as object relational
    XMLSCHEMA "http://......../ORMovies.xsd"
    ELEMENT "movies";
    INSERT INTO XORM
    VALUES(XMLType(BFILENAME('DB','ORMovies.xml'),nls_charset_id('AL32UTF8')));
    here the XQuery format that work fine with the OR
    A/D
    select XMLQuery ('for $a in movies/directorfilms/films/film
              where $a/studios/studio = "Gaumont"
              return $a'
         passing object_value
         returning CONTENT)"TitleX"
    from xorm;
    child element query
    select XMLQuery ('for $a in movies/directorfilms/director[dirname = "Feyder"]
              let $b:=$a/../films/film[position()=2]
              return $b/t'
         passing object_value
         returning CONTENT)"TitleX"
    from xorm;
    here is the XPath format which doesn't work
    select extract (object_value,'movies/directorfilms/films/film [studios/studio = "Gaumont"]')
    from xorm;
    select extract (object_value,'movies/directorfilms[director/dirname = "Feyder"]/films/film[position()=2]/t')
    from xorm;
    by the way all queries work fine with the CLOB or Binary XML
    many thanx Marco

  • Why won't my sd card from my game camera work with my iPhone? Apple developers please FIX this..

    iPhone5!!!!!!!!!!:-(
    Will not work with sd card adapter.. Why not? Someone please address this issue. I get tired of lugging my iPad to the trail cam near my deer feeder. Please make it work with my phone..

    There is no card reader for iphone

  • I can not get 3D surround sound to work with my X-Fi and headhones please he

    I have an X-Fi Xtrememusic soundcard and I have been unable to get possitional sound working consistantly with two sets of stereo headphones. I have the latest drivers installed and have creative audio console set to: headphones, game mode, CMSS 3D and I still have no possitional sound at all. Noises seem to come from above my head I can't tell right from left or forward from backward in other words I am completely lost as to were sounds are coming from in games. I used to be able to get possistional sound to function by changing headphones in the creative audio console to 2. or 4. speakers.
    If I set the mode to 5. or higher the sounds in games (footsteps, weapons fire) would become heavily muted and hard to hear while I would gain better positional sound for other players and now this does not work at all. I have also tried disabling sync to windows control panel and changing its sound options and there have been no beneifts from doing so. In settings other then stereo headphones no sound was produced at all while others stopped sound coming from one of my headphone speakers. I am at a total loss I can not think of anything thing else to fiddle with.
    My system specs: Athlon 64 4000+ San Diego, ASUS A8N-E mobo, 2GB DDR400 2.5CAS Buffalo ram, EVGA 7800GT CO, X-Fi Xtrememusic. No popping or crackling sound at least. Thank you you reading this.
    <SPAN class=time_text>
    <SPAN class=time_text>
    <SPAN class=time_text>
    Message Edited by Blah-and-Feh on 04-5-2006 :50 PM

    Hay everyone thanks for the advise but i was finally told by one of the support personnel that I actually need the dri've bay insert that comes with the fidelity in order to get the cmss 3d to work with the headphones.
    I only purchased the extreme gamer not the extreme gamer fidelity and that is why i cant get the cmss 3d to work but it still advertises on the box that you can use the cmss 3d and get that feature. :angry:? Should have done homework but i was out Christmas shopping and i went off of what the box advertised. This is very unusual for me to shop compulsi'vely. The funny thing is that everything else on the box that is advertised such as the increase of the CPU and the EAX HD features are able to be used. Im very upset about this because I particularly bought this card for the cmss 3d. I really don't know if i will ever recommend another Creative Product to any of the people i do computer repair or gamer builds for, unless this gets resolved and the only way to resolve this is to get the cmss 3D to work. By the way I did do a full reinstall even with clean boot so that isn't the problem. I'm really upset and ready to return this product to Best Buy unless this can be resolved. Any admin that comes across this please send me any ways of getting a hold of anyone that can help. Tks and hope yall had a wonderful Thanksgiving.
    Creatively toastedMessage Edited by toast on -24-200608:48 PM

  • HT4757 I have a canon power shot G6 that no longer works with my iMac??? Please help

    Up until 2 months ago my Canon Power Shot G6 has always worked with my IMac.  However, my system no longer recognizes the camera upon connecting via usb. Why?
    What should I do?

    Oh my God thank you so much. I spent the last week trying to figure this **** thing out and that's all it took. Sometimes the most simple explanation is all that's required but last looked at. Thank you for pointing out the obvious. I kinda wish Linksys would've pointed that out to me when I exchanged a total of 25 e-mails with them. Oh well. Thank you again. I am so grateful.

  • DVI connection to Lenovo 6622-HB1 isn't working with Windows 7. Any suggestions please?

    I have a W510 in a 4338 Mini Dock Plus Series 3 running Windows 7. Previously I had a T60 in its docking station (2504) connected to a Lenovo 6622 (1680 by 1050) connected using the DVI connection which worked fine under WinXP, but the external monitor does NOT work any more with W510/Win 7. It DOES work with an analog connection but I would prefer to use the DVI.
    The external DVI connection works at startup but once Windows 7 completes its initialization it becomes undetected.
    Can anyone advise whether this is a recognised problem and whether a fix is available? Thanks

    on the dock 3 plus there are two dvi ports, which one did you use?
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Realplayer Download Addon is not working with Latest Firefox 5.0? Please assist.

    After updating firefox 5.0, real player download addon is not working with it. Have any fix available for this or any solution available. Because of real player addon is very easy to use to download video contents from any website.
    Thanks,

    The latest version of Real Player updated on July 12, 2011 addresses this problem. You must check for Real Player updates AFTER you install Firefox 5.
    Click on the upper left hand corner of the Real Player screen to check for updates. After you download the newest version of Real Player, the video downloading feature will work again!
    http://real.custhelp.com/app/answers/detail/a_id/8883/kw/firefox%205/p/9%2C

  • Working with Video and Audio...Please help (i am not a coder!)

    Hey all. I am currently working on a project in Flash (CS3
    action 2.0)
    It is an animation and it includes a layer mask of a TV
    screen, which shows a precut quicktime movie on the screen.
    I am working with multiple scenes (11 to be exact) they are
    all my different cut points.
    The animation consists of 1st scene- VO (voice over) and BG
    SFX. When I hit Apple+Enter this part plays sync'd up correctly.
    However as the scenes progress on the sound gets out of whack.
    Scene 2 consists of the quicktime movie (Video and Audio)
    mask playing on the screen. All sound heard is a part of the .mov.
    For this one the timing is also good.
    Here is where it gets fluky. The next scene consists of a VO
    and BG SFX. (and only those things) However, at this point of the
    movie i hear the sound of the next .mov i have embedded in the file
    (from scene 3). This is all happening well before that scene even
    shows up in the preview.
    I hope i explained it as clearly as possible. Anyone have any
    ideas?! I would greatly appreciate it!
    btw- i have set the frame rate to 29fps to match that of the
    quicktime movies that are embedded.

    Hi Brian, I don't mean to nit-pick but this is an
    actionscript 3 forum, so you'd probably have better luck with the
    general forum for non-AS3 questions.
    There could be a couple of things that are causing a problem,
    its hard to say without actually having your project on hand.
    It almost sounds like your movie is taking longer to load, if
    thats the case you could simply start the audio a little later in
    the time line to sync it up.
    I know you don't want coding solutions but you can probably
    have flash "wait" for the movie to begin playing, and have that act
    as the starting point for the audio.

  • Internet doesn't work with Killer Ethernet driver installed! PLEASE HELP!

    Hi guys,
    First of all I might as well start off by saying that I recently upgraded my system to a new build, and so bought some new parts. The motherboard I chose was a MSI z87 gd65 gaming and by gosh is it good to look at, my only problem is that when I install the driver of the disc is that the Killer Ethernet driver doesn't allow me to get internet access (but I am connected to my router).
    I have reset windows, reinstalled the driver, restarted my pc, made the bios default and it still persists not to work! I am not sure if it doesn't won't to work with windows 8 because I had to boot from the installation cd. I can't update to windows 8.1 either because I don't have the internet connect/access Nd I can't get another driver because of the same reason!
    Has anyone else come across this issue?

    Remove Killer driver and suite using >>Killer Cleaner<<. After reboot just install pure drivers: https://forum-en.msi.com/index.php?topic=174229.0

  • My Imac late 2012 running Yosemite does not recognise my Huawei 3g usb modem. itried to install Java bt still it does not although the same modem works with my MacBook pro . any help please

    My Imac late 2012 running Yosemite does not recognise my Huawei 3g usb modem. itried to install Java bt still it does not although the same modem works with my MacBook pro . any help please

    Hey there mbarikiwa,
    If your iMac still has not recognized the usb modem, I would use the troubleshooting for Yosemite USB issues in the following article:
    OS X Yosemite: If a USB device isn’t working
    If the device is connected to a USB hub: 
    Make sure the device and the hub are the same speed. Connect USB 3.0 SuperSpeed devices to a USB 3.0 SuperSpeed HUB, USB 2.0 Hi-Speed devices to a USB 2.0 Hi-Speed hub, and so on. 
    If the device doesn’t have a power cord and is plugged into another USB device that doesn’t have a power cord: 
    Try plugging the device directly into your computer’s USB port  or into a USB device that does have a power cord. You might need to disconnect and reconnect the other device as well, if it has stopped responding. 
    If you have many devices connected to your Mac: 
    Disconnect all USB devices except the device you’re testing, an Apple keyboard, and an Apple mouse. Make sure that the device is connected directly to the computer, and that any hubs or extension cables are disconnected. If you can use the device now, the problem may be with one of the other USB devices or hubs you had connected to your computer. Try reconnecting them, one by one, to your computer. When you find the device causing the problem, review its documentation for further troubleshooting steps. 
    Verify that the device appears in System Information: 
    Choose Apple menu > About This Mac. In the window that appears, click Overview, then click the System Report button to open System Information. 
    In the window that appears, see if the USB device is listed below Hardware in the Contents list. If the device appears but does not work, review the device’s documentation for further troubleshooting steps. 
    Restart apps: 
    Quit and restart any apps that use the device. 
    Restart your Mac: 
    Choose Apple menu > Restart.
    Check your device’s USB connection
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Will "BW 3.1" work with ECC 6.0 ??--------its urgent

    One client is using BW 3.1 version.  He wants to upgrade SAP from version 4.7 to ECC 6.0
    But he does not want to upgrade BW right now.
    1) Will "BW 3.1" work with ECC 6.0 ??
    2) Do we have to upgrade BW also? Is it mandatory or we can avoid it?
    You may get the information on SAP website or 'bw user community'
    regards
    Pushkar
    Regards

    Hi Pushkar,
    You've posted this on a forum dedicated to development of SAP's Business One product, which is not related to R3 or A1. I recommend you repost your question on one of the R3 forums (options on the left hand menu).
    Kind Regards,
    Owen
    P.S. Please don't use the word 'Urgent' on these forums. It just annoys people and is more likely to get your answer ignored than answered.

  • Vista Ultimate, Firefox 4.01 just installed. The back and forward buttons do not work with this new installation. Help please.

    O?S is Vista Ultimate 32 bit fully updated. I have just installed Firefox 4.01. I have lost use of back and forward buttons - they are greyed out. Is there a solution please?

    It is possible to have earlier data in a tab if the latest tab had target="_top" that means the back key will not work, but if your right-click on the back/forward you see a context menu. As far as I know the only difference between 3.6 and 4.0 ws that the drop-down arrow was dropped but like before you can still right-click.
    There are some extensions that mess with the Back/Forward buttons.
    There is a difference between gray and '''black''' on the buttons, '''black''' means there is history in that direction.
    You can make Firefox 4.0.1 and Firefox 5.0 look like Firefox 3.6.17, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6)]

Maybe you are looking for