Phase 2: Another USB Query

I seem to have no problem getting the JUSB1 and JUSB2 ports to be USB 2.0, but the box and manual for my mobo state that I have *8* active USB 2 ports!
This seems strange since I have 4 hard-wired to the board, and 2 others (JUSB1 and 2).
Question 1:  Anyone have any info on how they determined there were 8?
Question 2:  Anyone know how to get the 4 that are on the back and built into the mobo to be USB 2.0 as well?
THANKS!
-- Scott

Snorter --
They seem to be.  I have 8 ports selected in the BIOS.

Similar Messages

  • I'm new to apple after years of MS OS! How do I transfer files from my USB memory stick to another USB memory stick? cheers

    hi all, i've just switched to apple after many years using MS OS!  I'm now using iMac desktop 21.5" with 2.9GHz processor and latest Yosemite software.
    How do I transfer files from one USB memory stick to another USB memory stick on the iMac?  cheers, linley94

    Plug in the memory stick and it should open then create a New Folder and drag and drop the contents from the memory stick to the new folder you created. Remove the original memory stick all the information should be in the new folder you created. Now plug in the new memory stick with nothing on it when it opens drag the folder with the contents from the original memory stick folder and all into the new memory stick that opened and there you have it.
    CHEERS
    DON

  • How to Copy RPT of one BEX query to another Bex Query

    Hi,
    I have a Crystal Report-A1 based on one Bex Query ZABC_1. I also have another Bex Query with same output and source named ZABC_2.
    Now i want the to copy A1 to A2 and have A2 referring to ZABC_2.
    The only difference between the 2 queries is the selection option paramenters.
    Please let me know any way forward on this.
    Points will be awared for useful replies.

    Hi Rajesh J Salecha,
    What I understood is like :
    You have two queries and both gives same results but one of the query having a parameter.
    You have one report which is using query1.  Now you want that report to be copied as Report2 and use Query2 instead of Query1.
    If the this is the issue, then you copy Report1 as Report2 and go in Database and change the Data source location to Query2.
    Hope this will help you.  If my understanding is wrong then give us the work flow.
    Thanks,
    Sastry

  • Spatial Query that uses Result of another Spatial Query

    Hi all,
    I am using the SDO_DIFFERENCE Operator to return the difference between a query window and an intersection geometry. This is fine and i get an object back that is cast to a STRUCT using the SDO API. I want then to use this (returned)object in another SQL query that uses the SDO_RELATE Operator. The problem is that i dont know what type it needs to be so that the SDO_RELATE operator will accept it as a valid argument. Has anyone done this before or seen anything like it? Any help will be very much appreciated.
    Keith.

    Thanks for your help,
    I have done the following steps, but i still dont understand why it doesnt work.
    CREATE TABLE val_results (sdo_rowid ROWID, result varchar2(1000));
    CALL SDO_GEOM.VALIDATE_LAYER_WITH_CONTEXT('SHAPES','SHAPE','VAL_RESULTS');
    SELECT * FROM val_results;
    1 null     Rows Processed <3>
    2 AAARDDAAEAAAAA+AAA     13348 [Element <1>] [Ring <1>]
    3 AAARDDAAEAAAAA+AAB     13367 [Element <1>] [Ring <1>]
    SELECT shape_id,SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(c.shape, 0.005)
    FROM shapes c;
    3     TRUE
    2     13348 [Element <1>] [Ring <1>]
    1     13367 [Element <1>] [Ring <1>]
    If my rectangle and polygon is still invalid, can someone tell me why they are invalid. And how can i make them valid?
    Thanks.
    UPDATE:
    I have solved Polygon issue.
    In Spatial Developer's Guide it says:
    Simple polygon whose vertices are connected by straight line
    segments. You must specify a point for each vertex; and the
    last point specified must be exactly the same point as the first
    (within the tolerance value), to close the polygon. For
    example, for a 4-sided polygon, specify 5 points, with point 5
    the same as point 1.
    I have added a point to polygon which is same as first point. Now, it can find the point in polygon.
    INSERT INTO shapes VALUES (4, 'Polygon', SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1,1003,1), SDO_ORDINATE_ARRAY(306,193,130,441,489,653,88,183,442,354,306,193)));
    But, when i run this query again:
    SELECT shape_id,SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(c.shape, 0.005) FROM shapes c;
    4     13349 [Element <1>] [Ring <1>][Edge <4>][Edge <1>]
    3     TRUE
    2     13348 [Element <1>] [Ring <1>]
    1     13367 [Element <1>] [Ring <1>]
    it doesn't say TRUE like it did for Circle ??
    Edited by: WhiteScars on Jan 4, 2010 12:45 AM

  • Another RAW Query

    Hi There.
    Another RAW query. I have PS CS4 Extended 11. I have tried to open RAW (NEF) pictures from my NIKON D3100. I get the error message 'Could not complete your request because it is not the right kind of document'. I have tried downloading the latest update. I currently have Camera RAW Version 5.7.0.213. I have also downloaded the DNG converter but I still get the same error. I am using Windows 7 on a laptop.
    Please help, otherwise no RAW Photography for me!
    Regards Mike.

    You need at least ACR 6.3 and you can not get there with CS4.  You either have to upgrade to CS6 or CC, or use the latest DNG converter. 

  • Pass the result of a SQL Query as table_name  for another SQL Query

    Hi All,
    How to pass the result of a SQL Query as parameter to another SQL Query
    Eg: I am doing the steps below.
    1) select distinct table_name as TAB1 from all_tab_cols where table_name like 'T_%' and column_name like '%XYZ'
    2) I want to pass the table_name from step 1 above as parameter to another query "select * from TAB1"
    Thanks

    Naveen B wrote:
    Hi All,
    How to pass the result of a SQL Query as parameter to another SQL Query
    Eg: I am doing the steps below.
    1) select distinct table_name as TAB1 from all_tab_cols where table_name like 'T_%' and column_name like '%XYZ'
    2) I want to pass the table_name from step 1 above as parameter to another query "select * from TAB1"
    ThanksYou should craete PL/SQL code with cursor which will accept a parameter and call that cursor inside the first one
    But if the first sql returns only one row, you can do it with simple sql code
    select * from (select distinct table_name as TAB1 from all_tab_cols where table_name like 'T_%' and column_name like '%XYZ')- - - - - - - - - - - - - - - - - - - - -
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Can I copy HP Recovery Media to another USB flash drive?

    Hi. Just a couple questions please: 1. When I make the one time only "HP Recovery Media" to a USB pen drive, can I then "copy" and "paste" to another USB flash drive as long as the 2nd flash drive has enough capacity?The Recovery will still work right?I ask this in case I need to change to another USB flash drive and I am aware that I can only have one copy of the HP Recovery. 2. If that is the case, I then can also make a backup to an external Western Digital drive so that in case of malfunction of the USB flash drive I can always transfer the files to another USB flash drive? Thanks in advance for the reply. Best regards. 

    Hi, Copy and paste won't work. Please try the following method:    http://h30434.www3.hp.com/t5/Notebook-Operating-Systems-and-Software/This-is-how-to-make-a-2nd-set-of-recovery-disks/td-p/1694703 Regards.

  • IPod stopped sync. just sync when you plug another USB device, e.g pendrive

    As weird as it may seem all my iPods (i have 2 old Nanos, 2 new Nanos, one Shuffle and one Touch)stopped syncing. iTunes recognizes them without a problem. I can configure them to sync to a particular playlist but nothing really happens.
    After a lot a work (plugged them in another PC to have 'em erased and all; reinstalled iTunes 9, etc) I just found out the strangest behavior: if I click Sync it takes a long time and nothing really happens. If I do it again anfd plug another USB device (like a pendrive) then sync goes smoothly.
    Not sure why.. all I know is that I love the hardware but hate the software.
    Maybe if I reinstall my PC the issue will go away...
    Any ideas???
    <Edited by Host>

    It's probably not a problem with the shuffle.  Your computer's USB bus may not be providing enough power for all of your connected USB devices.  A typical USB mouse and keyboard are low-power devices, so you must have other devices connected...?  An iPod, because it charges battery from the USB port, is a high-power device.
    I use a powered USB hub.  The hub has its own power supply.  I have the hub connected to the computer, and most of my devices, like iPods, iPhone, flash drives, etc. connect to the hub.  I use the USB ports on the computer for things I leave connected more or less permanently, such as printer and external drive.
    Since the hub has its own power supply, devices connected to it do not draw power from the computer's USB bus.  So that is important.  Some cheaper USB hubs are not self-powered; they are powered by the computer's USB port.  I use an older version of this one
    http://eshop.macsales.com/item/NewerTech/USB2HB7PRO/
    but there are many options.  Just get one that has its own power supply.

  • My USB Ethernet connection drops when another USB device is plugged in?

    I have a MacBook Air (Mac OS X 10.6.7 but it happened with older OS versions, too) and have a few issues with my wired ethernet connection. (through USB Ethernet adapter).
    1. When I have the USB adapter plugged in when I wake the MacBook Air up it won't be recognised (have to plug it in after wake up)
    2. (that is more annoying).When I have the Adapter connected and I plug in another USB device (like a USB stick) into the other slot, my USB EthernetConnection drops! Only once I unplug the adapter and plug it back in it works again.
    Is there maybe a firmware upgrade that should be installed or something??
    Does anybody have an idea???
    Thanks

    Hi, you can upgrade the Firmware for the wrt54g router under the system screen.
    you will find the "upgrade Firmware" tab under the system screen.
    Once the Firmware has been upgraded you can then reset the router by holding and pressing the reset on the back panel for 30seconds. And then reconfigure the router again.

  • Another USB no tworking problem

    So I got a brand new iPod yesterday and plugged it into the USB port on the left hand side, no problem. Charged up, data transfered, yada, yada. I shut the computer down and went to bed. When I turned it on this morning, my USB port no longer sends data! It gives power, but not information. Anyone ever heard of such a thing?

    Welcome to Apple Discussions!
    Are you saying you removed the iPod, and connected a thumb drive or another USB data transfer device and it wouldn't allow you to transfer data to it via that port? Or are you saying that it appears the iPod won't receive any more data? If the latter, once synchronized the iPod will simply add new songs/books/movies/etc... as you add them to iTunes. Are you saying you added another song to the library, or a new playlist and it didn't transfer to the iPod?

  • Another problem:  query in oracle

    Hello guys,
    I have a problem in a SQL code in a program that uses a Oracle connection.
    The code:
    public class ConBol {
         public void getDataBol() {
              String sql = "SELECT * FROM DOCUMENT_FISC  WHERE NRDOC_FISC = ?";
              try {
                   Connection conn = new ConnectionFactory().getConnection();
                   PreparedStatement stmt = conn.prepareStatement(sql);
                   stmt.setInt(1, 3969);
                   ResultSet rs = stmt.executeQuery();
                   System.out.println("here -- ");
                   while (rs.next()) {
                        System.out.println("---while--- ");
                        System.out.println(rs.getString(1));
                   rs.close();
                   stmt.close();
                   try {
                        conn.close();
                   } catch (SQLException ex) {
                        Logger.getLogger(ConBol.class.getName()).log(Level.SEVERE, null, ex);
              } catch (SQLException ex) {
                   Logger.getLogger(ConBol.class.getName()).log(Level.SEVERE, null, ex);
    }When my SQL is only "Select * from myTable", the resultSet get all the data and the "System.out" inside the "while", works, showing me the data.
    When I put a "where" on my SQL, the resultSet returns nothing, and the column that I ask, has items inside and the query should return me at least one row.
    I really don't know what more can I do to solve this problem.
    The server is Oracle 11g.
    I try in Windows 7 and Windows XP SP3.
    I try to use 3 diferent oracle drivers: ojdbc6.jar , ojdbc14.jar and class12.jar.
    I try Eclipse and Netbeans, PreparedStatement and Statement, table name and column name in uppercase and lowercase, with alias, with other users from DB and no one solve the problem.
    The data base connection is ok. When I copy and paste the SQL on the SQLDeveloper, the query works fine and show me results.
    The program don't give any errors or exceptions, but doesn't work when I have a "where something".
    If I put "where 1=1" he works fine.
    Any help??

    Artur,
    I make the tests that you ask me to do and it works!!!
    The value returned from the "select distinct" work when I put him on the original query.
    I just can't understand how can this work if the another value that I pass to the query exists in the table too.
    How can one value that exists, don't return me nothing?
    At least, now I can be sure that the code is alright.
    Thank's a lot friend, for you and JSchell. I will make more tests to try understand how this can happen.
    Edit: I try to count the rows of that table. In PLSQL Developer, the row count was 5860. In the java code was 4730.
    Can be out of memory in the resultSet?
    Edited by: Herick on Dec 29, 2009 2:34 AM
    Edit2: Forget what I said. I use the "Select count" and the resultSet came with just one result, so can't be memory problem.
    Edited by: Herick on Dec 29, 2009 2:39 AM

  • Can I pass a SAP query to another SAP query???

    Hi Friends
    In SAP Queries we can edit the existing query and we can save it as a new query. In the same way is there anyway to pass a query to another query? As per my knowledge, I don't think it is possible, I want give confirmation to my manager, before telling this to him, I want to reconfirm it from you experts.
    Please guide me.
    Regards
    Praveen

    No Rob,
    He is talking about SAP Queries only, but he is not aware of SAP, he is from Dot Net. Thanks for your reply.
    Regards
    Praveen

  • Updating from another table query

    I have tried a merge query and I think I am not doing this right or for what I want to accomplish, it will not work. Here is the problem:
    I have a lookup table
    create table lkp1(
    lkp_id number,
    lkp_name varchar2(100));
    and have a another table
    create table test(
    test_id number,
    lkp_id number,
    lkp_name varchar2(100));
    I am trying to pull in the lkp_id value from lkp1 table into the test table. I have the lkp_name field in the test table so that I can reference back to lkp1 so that I can pull in the lkp_id value. How would I go about doing this if the lkp_name field in test table has the value duplicated over many rows. For example 5 records in the test table might have the lkp_name of 'ORACLE', and its lkp_id from lkp1 table is 25. How do I populate the lkp_id in the test table with the value from the lkp1 table, without specfiying in the where clasue ...lkp_name = 'ORACLE'. There has to be a way. I tried the merge query, and WOW...I was really off.
    Please help!

    scott@ORA92> -- test data:
    scott@ORA92> select * from lkp1
      2  /
        LKP_ID LKP_NAME
             1 name1
             2 Oracle
    2 rows selected.
    scott@ORA92> select * from test
      2  /
       TEST_ID     LKP_ID LKP_NAME
            10            name1
            20            Oracle
            30            Oracle
    3 rows selected.
    scott@ORA92> -- update:
    scott@ORA92> update test set lkp_id =
      2  (select distinct lkp_id from lkp1 where lkp1.lkp_name = test.lkp_name)
      3  where exists (select lkp_id from lkp1 where lkp1.lkp_name = test.lkp_name)
      4  /
    3 rows updated.
    scott@ORA92> -- results:
    scott@ORA92> select * from test
      2  /
       TEST_ID     LKP_ID LKP_NAME
            10          1 name1
            20          2 Oracle
            30          2 Oracle
    3 rows selected.

  • Another usb printer-to-Airport Extreme problem

    This issue is similar to Tanya Howie's, but involves an HP 5440 printer instead of a Pixma. I have the G4 iBook connecting via Airport to the Airport Extreme, the iMac Snowball hardwired to the AE via Ethernet cable, with the HP plugged in via usb to the AE. I have reinstalled the AE software 7.4.2, the HP software 5.3, and the Airport utility 5.4.2. Also, I connect to the internet via RoadRunner thru Warner Cable.
    Occasional disconnects have been cured by resetting everything back up, until recently. Now, when I look at all the places where the printer should appear, I see it listed: in the Airport Utility settings, on the printer setup utility, the File dropdown Print command, in the dropdown Printer box and choosing Bonjour version of the HP, even in the Opening Connection box, which shows the attempt at opening the connection; the connection bar shows an attempted Print, then goes to Job Stopped.
    When I run the Print Diagnostics that is in the HP 5440 menu bar, I get a green light on Airport, Airport Settings, Network Settings, ISP, and Internet, but a red light on Server, which also says Failed. If I click Continue and go thru the steps of the diagnostics, the last page says "Cannot connect to server: Networks Diagnostics was able to connect to the Internet, but not to the server 'HP Deskjet 5440 printer.riousbprint.tcp.local' . This could be caused by problems with the server, or an Internet problem between this computer and the server."
    Where is this server, and can someone tell me how to address its issues or to find a work-around? And is there a step I have missed? Thanks!

    I rolled back to 7.4.1 to try to fix my dropouts and slowdown problems, but that didn't make any difference. So I went back up to 7.4.2, but did the hard reset by
    1. unplug Airport Extreme
    2. Press in reset button on the back and hold it in while...
    3. Plug in power
    4. After light on the front started to flash, released the reset button
    I then had to reset all the networking settings (password, SSID, etc) but that only took a few minutes and a couple of resets. The network dropouts haven't happened again so I'm hoping that has sorted it. The printers seem to be behaving themselves as well now. I did roll back to 7.3.2 at one point, but then I lost the printers completely with that and Snow Leopard (Leopard was fine though).
    There was a posting I found from somewhere that said about setting up the printer using the IP connection setting rather than the automatic one, but I can't remember where I found that. Let me have a quick think...
    Ok, I think this was the page (the instructions are very similar anyway)
    http://pcworld.about.com/od/networkin1/Bugs-amp-Fixes-Ethernet-net.htm
    Good luck.

  • How do I reference columns in a report query from another report query?

    In Apex 3.1 it is possible to generate a report on more than one query. I have read that these queries can be correlated, but I cannot find how in the documentation.
    I go the Shared Components and create a new Report Query:
    select * from dept
    Then I click Add Query and I add:
    select * from emp
    How do I correlate these two queries (I want to join emp.deptno to dept.deptno) and have a nice hierarchicle XML-file.
    Is it possible in Apex 3.1?
    Dik Dral

    Dik,
    This type of query can't be build. The two queries are independent, you can't reference values in the first query from the second query. However you can reference page and application items - which won't help you all that much with this scenario though. You could also try combining the two queries into one, and then take care of the proper presentation in your template.
    Regards,
    Marc

Maybe you are looking for

  • Not Able to Access the Properties of Workspace and Target

    Hello I have install PB 11.2 Build 9027 on my laptop ( Winows 7 (64 bit))). PowerBuilde is open and able to see the existing code. But when I am trying to access the properties of Workspace or target for Source code control Setup, Properties will not

  • What is the use for CREATING VIEW WITH CHECK OPTION?

    Dear Legends, I have a doubt What is the use for creating view? A: First Data Integrity, Selecting Particular Columns.. What is the use for creating a view with check option? A: As per oracle manual I read that its a referential integrity check throu

  • What are the physical topology and logical topology in sharepoint

    Hi what are the physical topology  and logical topology in sharepoint how to define  the physical topology  and logical topology in sharepoint adil

  • Employee Master

    Hi , I am unable to get "Extraction Object" related to employee master in transaction MDM_CLNT_EXTR How to create a Variant in this transaction for Employee Master ? Also which message type should  be used for Employee master ( Either HRMD_A or HRMD_

  • What is the Area Menu ?

    Hi All, What is the Area Menu ? Where can we use it ? Thanks in Advance Sri...