sqlcl 4.1.0.15.106.1020 sqlformat insert SCHEMA not attempt schema. TABLE

without schema name, I get a correct insert statement:

set sqlformat insert
select * from DUAL;

REM INSERTING into DUAL

SET DEFINE OFF;

Insert into DUAL (DUMMY) values ('X');

but

set sqlformat insert
select * from SYS.DUAL;

REM INSERTING into SYS

SET DEFINE OFF;

Insert into SYS (DUMMY) values ('X');

which doesn't really make sense?

Martin

Thanks for reporting this... reproduced and placed on listening.  This applies to both sqlcl and spreadsheet user interface.

Tags: Database

Similar Questions

  • sqlcl 4.1.0.15.106.1020 tnsping throws NULLPointerException

    While playing with sqlcl 4.1.0.15.106.1020, I can reproduce this behavior:

    berx$ ./sql /nolog
    
    
    SQLcl: Release 4.1.0 Release Candidate on Thu Apr 16 22:05:22 2015
    
    
    Copyright (c) 1982, 2015, Oracle.  All rights reserved.
    
    
    
    
    SQL> tnsping
    Apr 16, 2015 10:05:27 PM oracle.dbtools.raptor.newscriptrunner.ScriptExecutor run
    SEVERE: oracle.dbtools.raptor.newscriptrunner.commands.PingCmd.ping(PingCmd.java:69)
    java.lang.NullPointerException
      at oracle.dbtools.raptor.newscriptrunner.commands.PingCmd.ping(PingCmd.java:69)
      at oracle.dbtools.raptor.newscriptrunner.commands.PingCmd.handleEvent(PingCmd.java:53)
      at oracle.dbtools.raptor.newscriptrunner.CommandRegistry.fireListeners(CommandRegistry.java:380)
      at oracle.dbtools.raptor.newscriptrunner.ScriptRunner.run(ScriptRunner.java:197)
      at oracle.dbtools.raptor.newscriptrunner.ScriptExecutor.run(ScriptExecutor.java:269)
      at oracle.dbtools.raptor.newscriptrunner.ScriptExecutor.run(ScriptExecutor.java:180)
      at oracle.dbtools.raptor.scriptrunner.cmdline.SqlCli.process(SqlCli.java:250)
      at oracle.dbtools.raptor.scriptrunner.cmdline.SqlCli.processLine(SqlCli.java:257)
      at oracle.dbtools.raptor.scriptrunner.cmdline.SqlCli.startSQLPlus(SqlCli.java:682)
      at oracle.dbtools.raptor.scriptrunner.cmdline.SqlCli.main(SqlCli.java:297)
    
    
    SQL>
    

    probably should say "you want to do a ping?"

    My approx. is a MacBook with OSX 10.10.3

    java -version
    java version "1.8.0_40"
    Java(TM) SE Runtime Environment (build 1.8.0_40-b25)
    Java HotSpot(TM) 64-Bit Server VM (build 25.40-b25, mixed mode)
    

    Yes, it's a bug

  • sqlcl 4.1.0.15.106.1020 trimspool kills sqlformat csv

    with these simple commands

    set trimspool on
    
    set sqlformat csv
    
    spool dual.csv
    
    select * from dual;
    
    spool off;
    
    

    I get this stack trace:

    Apr 23, 2015 12:54:46 PM oracle.dbtools.raptor.newscriptrunner.ScriptExecutor run
    SEVERE: java.lang.System.arraycopy(Native Method)
    java.lang.ArrayIndexOutOfBoundsException
            at java.lang.System.arraycopy(Native Method)
            at oracle.dbtools.raptor.newscriptrunner.WrapListenBufferOutputStream.write(WrapListenBufferOutputStream.java:183)
            at oracle.dbtools.raptor.newscriptrunner.WrapListenBufferOutputStream.reallywrite(WrapListenBufferOutputStream.java:227)
            at oracle.dbtools.raptor.newscriptrunner.WrapListenBufferOutputStream.write(WrapListenBufferOutputStream.java:217)
            at sun.nio.cs.StreamEncoder.writeBytes(StreamEncoder.java:221)
            at sun.nio.cs.StreamEncoder.implFlushBuffer(StreamEncoder.java:291)
            at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:295)
            at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
            at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
            at oracle.dbtools.raptor.format.ResultsFormatter.print(ResultsFormatter.java:566)
            at oracle.dbtools.db.ResultSetFormatter.formatResults(ResultSetFormatter.java:105)
            at oracle.dbtools.db.ResultSetFormatter.formatResults(ResultSetFormatter.java:61)
            at oracle.dbtools.raptor.newscriptrunner.SQL.processResultSet(SQL.java:494)
            at oracle.dbtools.raptor.newscriptrunner.SQL.executeQuery(SQL.java:418)
            at oracle.dbtools.raptor.newscriptrunner.SQL.run(SQL.java:56)
            at oracle.dbtools.raptor.newscriptrunner.ScriptRunner.runSQL(ScriptRunner.java:294)
            at oracle.dbtools.raptor.newscriptrunner.ScriptRunner.run(ScriptRunner.java:202)
            at oracle.dbtools.raptor.newscriptrunner.ScriptExecutor.run(ScriptExecutor.java:269)
            at oracle.dbtools.raptor.newscriptrunner.ScriptExecutor.run(ScriptExecutor.java:180)
            at oracle.dbtools.raptor.scriptrunner.cmdline.SqlCli.process(SqlCli.java:250)
            at oracle.dbtools.raptor.scriptrunner.cmdline.SqlCli.processLine(SqlCli.java:257)
            at oracle.dbtools.raptor.scriptrunner.cmdline.SqlCli.startSQLPlus(SqlCli.java:682)
            at oracle.dbtools.raptor.scriptrunner.cmdline.SqlCli.main(SqlCli.java:297)
    
    

    can someone please reproduce?

    Thanks for reporting this... reproduced and placed on listening.

  • sqlcl 4.1.0.15.106.1020 LOADING ignores decimal marker

    Please see this unit test:

    I can only reproduce it on my Windows7 PC, but not on an environment Redhat 6 (same DB (12.1.0.2) and db-user):

    ALTER SESSION SET NLS_NUMERIC_CHARACTERS = '. ' ;
    
    drop table MAMUE ;
    
    CREATE TABLE MAMUE
       (    SCODE VARCHAR2(54),
            "EDATE" DATE,
            "AMOUNT" NUMBER(21,3) NOT NULL ENABLE,
            "LDATE" DATE
       );
    
    Insert into MAMUE
       values ('ccc',
               to_timestamp('24.12.15','DD.MM.RR HH24:MI:SSXFF'),
               19/2,
               null
               );
    
    set sqlformat csv
    spool MAMUE.csv
    select * from MAMUE;
    spool off;
    rollback;
    
    

    the file Mamue.csv should look like this:

    "SCODE","EDATE","AMOUNT","LDATE"
    "ccc",24.12.15 00:00:00,9.5,
    

    Now I have load data and check the value:

    LOAD MAMUE MAMUE.csv
    
    SQL> select amount from mamue;
    
    "AMOUNT"
    95
    

    I expect 9.5 but got 95.

    As I can only reproduce on a single customer (but not another) I'm ready to dig into it, if someone can advise me?

    Martin

    This problem is fixed in sqlcl.4.1.0.15.177.0246 now.

    Thank you very much!

    Martin

  • Folio 1020 G1 keyboard works not for 30 seconds after the computer wakes from sleep

    I have several books of Folio 1020 G1 where the integrated keyboard does not work for about 30-60 seconds after the resumption of the operation of the standby mode. Everyone met this problem or a solution?

    The touch pad, touch screen and a usb keyboard immediately all work.

    They work on the load of the plant, but these machines were photographed with Windows Enterprise 8.1 x 64 using Configuration Manager 2012. The pack of drivers for this model of http://ftp.hp.com/pub/caps-softpaq/cmit/HP_Driverpack_Matrix_x64.html, http://ftp.hp.com/pub/softpaq/sp70001-70500/sp70362.exe is applied successfully during the imaging task sequence. I also miss the key features of the FN for brightness and microphone mute, but sp70321.exe (http://h20564.www2.hp.com/hpsc/swd/public/detail?sp4ts.oid=7343091 & swItemId = ob_144333_1 & swEnvOid = 415... does not solve this problem.

    This question has been somehow created by installing a software Synaptics 17.x version followed by the installtion of the 18.x software required above it. I don't know if this software was automatically installed from Windows builtin drivers or other drivers imported into Configuration Manager have been incorrectly applied, but running "rundll32.exe"% ProgramFiles%\Synaptics\SynTP\SynISDLL.dll",SilentUninstall_CallerWillReboot" in the sequence of tasks before apply the package stops sp71067.exe the problem didn't happen. "

  • Satellite L655-106-CD/DVD drive does not read disks

    Toshiba satellite L655-106 dvd rom reads all types of CD as white.
    I have run the registry cleaner and re-installed the driver but no effect

    All disks are not readable?
    Try to clean the lens laser alcohol or cotton tip.
    Then try again

  • EliteBook 1020: External keyboard does not work in the form of Bitlocker

    We had a few HP 1020 and 1040: models recently, and all have the same question. When the laptop is connected, the external keyboard does not work in the form of Bitlocker. It works in the BIOS and in Windows itself, but not in Bitlocker. This means that we must open the laptop screen to enter the Bitlocker pin, then let it open and GPO that dictates the computer into hibernation when the lid is closed. We have twisted the GPO, but in vain. Anyone else seen elsewhere or a solution?

    If the bios is up to date, I would look at the BIOS settings. I think that Fast Boot is enabled in your case, this may cause usb devices not to see in the stadium that BitLocker requires

  • How can I get my laserjet 1020 to print from my mac? 1020/1022 driver will not download!

    I followed the instructions on the HP website to download the latest software of the printer. But when I try to manually add my printer to the queue, it asks me to select a driver to use with it and neither the 1020 or 1022 software is in there! There are tons of other printer software and I tried a few other drivers, but they do not work. Any help is appreciated. Thank you!

    Paul

    Hi Paul,.

    As the Laserjet 1020 not taken officeially supported by the operating system, you will need to download and install the package HP Printer Drivers 2.11 include drivers Laserjet 1022, which should allow you to print using your device.

    Install the package using the download below:

    http://support.Apple.com/kb/DL907

    After completing the installation go to System Preferences > print & scan and click on the sign.

    Select the printer listed and click on printing using menu drop-down.

    Click Select printer software, and then select the Laserjet 1022, which should be available today.

    Complete, adding the printer and printing to try now.

    Kind regards

    Shlomi

  • P7 1020 - clock will remain not current

    the time displayed on the clock is regularly out of 3 hrs exactly - it always shows an older version of time rather than later

    Hello

    It seems that your computer has been configured by using different time zone. Please reset it using Date time in the Panel

    (Control Panel then the Date and time)

    Kind regards

  • HP laserjet 1020 doesn't print

    Windows 7 PRO 64-bit operating system

    The HP laserjet 1020 printer works on the above software?

    Tried to uninstall the printer drivers but failed. Message-installation met with an abnormal program execution. the installation program stops. It was using the hp uninstallprogram. Tried the HP diaqnositc. Said the functions of printer ok, but couldn't pront a test page.

    Installed new drivers.started more but no test page printed.

    You can unplug the printer and run a test print that goes to print that and holds. Printer and clears Quebec but no page prints.

    Frustrated and confused.

    RDG

    Can we go in the devices folder and printers and on the top of the page taskbar, click Delete printer? If not, then...

    You can also go to your C: / / drive, then Program files, then the HP folder and delete the driver HP LaserJet 1020 from there. Not the ideal way to do it but you can do it this way.

    Once you have done this, return to your file devices and printers, ensures that any printer (no matter what we as long as it isn't the 1020 so that is always on display) has a green check mark, and then in the task bar, click on the print server property. Open and click on the driver tab, if the 1020 does not appear here then it shouldn't be in your driver store more. If it is displayed in the list, try to remove it by clicking on the button Delete. When the pop-up appears, try to delete the driver only. Repeat the process, and then try remove driver and driver package. Sometimes the second option does not work until you make the first option, sometimes it does not. If it does not, you must go to your C: / / drive and delete the file following the steps above. Make sense?

    Make sure you have removed the download folder and Recycle Bin and you should be well re-boot and re-install.

  • Installation of OS 8.6 or 9.2.1 via the USB port on the new world Mac?

    Hallo!

    I have submitted a similar question pertaining to the installation of Mac OS X 10.1 - 10.3 via USB drive in the section "Mac OS X 10.3 and more", so if you saw that please also answer here.

    Here's the situation: I have an iBook Clamshell G3 233 MHz 265 MB SRAM 16 MB of VRAM with 1xUSB port 1.1. I need an operating system installed and the only alternative for Mac OS 8.6/9.2 or OSX 10.1 - 10.3, who is eligible for this machine is PowerPC Linux, which I can only install a copy CLI (Command Line Interface only) of Ubuntu, I strongly prefer not to use. I tried all the methods of creation of the copy USB Installer, I mentioned in paragraph three of this post:install OS X 10.0 - 10.3 from USB on Mac New World? for Mac OS 8.6 and 9.2 disks as well. I have the installation disk OS 8 detail (8.6 green disk with large 8 and photo inside the loop at the bottom) as well as the installation of retail 9.2.1 universal disc (with the big orange 9 on the label), however the CD - R drive is completely shot, as mentioned in the above linked post it can read the disks, but it cannot initialize a boot drive and takes an hour to recognize / + 20 minutes to read a disk sector so the direct installation of disk option is completely.

    While unlike the case in the post above, I can actually get my 9.2.1 installer USB disk copy to start, the copy of 8.6 installer refuses to even be recognized in the boot selection menu (Option at startup) and when I boot the 9.2.1 USB install, I get the notorious "the software of the system at boot drive only functions on the not so copied original media on another drive." message.

    Once again using my CD player - R is out of the question. I did so that the image is "locked" before writing the USB disk, set permissions for image for 'r - r - r -' and formatted the drive as 'Mac OS Standard' (HFS) before writing, and I still got the message. Here are the best: I've used "ResEdit" on a separate Mac OS 9 installation to remove the 'xboo' resource that checks for the media type of the program "/ System/system files", copied the contents of the installation CD to a folder, replaced "/ System/system folders ' with the amended version, creates a new. Master image CDR CD size 665, 8 MB , the size of the original drive, moved the folder with the copy of the installation disk for the installation of OS 9 separate existing, blessed the 'File system' directory, moved back, filled with the contents of the disk image (including the program updated the 'system'), disassembled the new image, 'locked', set its permissions to "r - r - r" - and wrote directly to HFS format USB drive using sudo dd if = «» image path"of = / dev / 'USB drive number' fixed permission on the new USB installation disk, and he successfully started the installer to OS 9.2 modified in menu selection of boot HOWEVER, at the start of the poster Installer always the same message:" the software of the system at boot drive only functions on the original media, don't if copied on another drive. " Even if the function to manage this scenario has been removed, and all permissions are set up correctly.

    I'm doing something wrong? It is even possible in ANY scenario to install Mac OS 8.6 or 9.2.1 installation disk backup direct, or via a USB disk/Flash Drive? Or do I have to buy a new iBook CD - R drive and a Torx T6 screwdriver to replace it just to reinstall Mac OS? Like I said before, we will find more details on the methods tried in the variation of Mac OS X this post link above, so for more information or overview Setup OS X with a USB drive instead of Mac OS just reply to this post. Any help or suggestions are appreciated, and I need an operating system installed on this machine outside the only command line Linux evil. Thank you!

    Mac of this generation will only boot from the internal drive, CD or Firewire.  I just heard rumor a few PPC Macs can boot from USB and it is probably for some OSX version.

    I don't know if target disk Mode or it works for OS9 boot: install 10.4/10.5 on a Mac with a broken / or incompatible optical drive - https://discussions.apple.com/docs/DOC-1020

    Please, do not cross post multiple for one. It is very difficult for people who are trying to help you be able to track what has already been said, especially if we seek the other topic (you do not provide a direct link).

  • problems with XP x 64: Crash on launch 618

    [The update by the moderator topic title should be more descriptive. [Original topic title was: 'problems in xp x 64']

    I'm running XP x 64 on a client computer and since the 6.18 update blocking it on the desktop to launch. This was never a problem before that I have no day. Now that the update is forced, it doesn't let me no option at all.

    Why do this? It worked well, the app (6.3) can connect fine but is disconnected "version is low."

    Worst case, can I contact somehow information that I stored, or do I have to get them all from scratch.

    Any help would be great.

    The 6.18.0.106 standard version Skype does not work on Windows XP 64-bit. However the 6.18.64.106 (with chat window updated the UI) both the 6.16.0.105 older versions will be.

    http://community.Skype.com/T5/Windows-desktop-client/Skype-amp-Win-XP-x64-SP2/m-p/3500601#M291813

  • Prirnting problem after update to 8.1 Windows

    Hi all

    I am a single user on my laptop using a HP Laserjet 1018. Just updated to 8.1 and seem to have problems similar to many others. Printer worked fine on Windows 8, but not now.  A ran printing HP and doctor Scan and the printer worked fine. I then removed the cable to the USB port on laptop, she and tried to print again. Nothing. Turning the printer off it back and tried again. Nothing. Removed from the printer, added again and new trial system. Nothing. Downloaded the latest driver from HP site and tried again. Nothing. I also made sure that the print spooler and the Notifications and Extensions are running. Still no joy. I find it hard to believe that such a widespread problem has not been examined by Microsoft, HP, or both. I guess it's possible that some printers are no longer supported under 8.1, but would love to be told if this is the case. However, it seems that many users cannot use their printers and I was just wondering when this issue will be resolved by the person who is responsible. If anyone can enlighten me, I would be very grateful.

    Thank you very much

    Bobbler

    Hello @Bobbler,

    I thank very you much for the detailed response. I'm sorry to hear that your situation has become worse after trying some of the steps I have provided you and a few extra steps of your choice.

    One thing I want to clear up is because the printers Laserjet 1018, 1020 and 1022 are all in the same series, to continue the research I found that the installer is labelled 1020. The package install itself is labeled: LJ1018_1020_1022_Full_Solution.exe . So, to finally try to remove the Laserjet 1020 that appeared in the list programs and features, you might then see the two installed copies of the Laserjet 1018 on your system. It is strange that after removing one of the entries, both seem to remove it from your computer.

    I have to start by ensuring that the Laserjet 1018 is completely removed from your computer. I think at this moment that we need to focus on getting a clean slate to work.

    Uninstall the drivers:

    Please unplug your USB cable

    1. I would like to you launch by clicking on the following link: Microsoft: the problems that programs cannot be installed or uninstalled and running the tool by selecting the "Run Now" option on the right side.
    2. This Microsoft tool will run on your computer and remove all selected software and drivers who fail to uninstall in the traditional way.
    3. Let the tool to run and when you are prompted to select Uninstall
    4. A list of programs is now complete, do scroll down and look for anything related to the Laserjet 1018, 1020 or 1022. Delete them if they appear.
    5. When the tool has finished, you can open your start screen, and type "Notepad".
    6. Click the notebook to start the program
    7. When Notepad opens, just go to 'file' and select 'Print' and take a look in the print dialog box to ensure that a Laserjet 1018, 1020, 1022 or does not appear. If they don't show, simply close the window.

    Sometimes on Windows 7, Windows 8 and Windows 8.1 printers may not appear correctly in the file devices and printers. An easy way to see if there are duplicates of your product installed is by opening Notepad and simply check the print dialog window to see if they appear in there. If everything looks fine, so there aren't any duplicates installed.

    Solve printing problems:

    1. Then I'll have you click on the following link: Microsoft: solve printer problems
    2. Once the site opens, select 'step 2' on the left side and then click on the "Printing Troubleshooter" link in the middle of the page.
    3. This tool from Microsoft will find and solve different problems on a computer that could potentially cause printing problems. It will also identify and resolve the various problems of the registry on the computer.
    4. When the tool has finished, then we are ready to install the printer.

    Install the printer:

    Note: Leave disconnected USB until prompted

    1. Please select the following link to download new drivers for your printer: HP LaserJet Full Feature Software and Driver
    2. Click Download at the top left and just start the download
    3. Once the download is complete, simply follow the instructions on the screen to reinstall your product
    4. Connect the USB cable only when prompted
    5. Once the installation is complete, try to print!

    Note: The installation should appear with an 'install' option and not a new camera 'Add' or 'repair' option. Should 'add new device' or 'repair' appear it indicates that there are still drivers and software HP hides somewhere on your computer.

    Please let me know if the tools that I have provided and reinstall it solved your problem. Fingers crossed!

  • Why scvhost.exe uses 75% of the physical memory of my laptop?

    I noticed recently that scvhost.exe a host process for windows, use more than 75% of the physical memory of my computers, usually at about 106, 000 k, it's not normal that my system and it slows down my system, I regularly keep my PC, because I use it regularly at the College and put it on standby saves time as the stopping and starting of the system again Is there a version of the patch that will prevent scvhost.exe to use lots of physical memory.

    Thank you very much.

    Something more about this problem? Still facing this problem where svchost.exe takes too much memory. :(

    Edit: I deactivated "Generator Windows Audio endpoint" in services.msc and the problem disappeared. This servise is to control audio devices but I have a Realtek sound card and I installed the latest drivers for it and the sound works & speakers.
    Hope that helps anyone who has similar problems.
    Edit2: after as I restared, svchost.exe still using a lot of memory, but now it is linked with cscservise. Do not know what is happening right now. Anyone?
    Edit3: I did some research on the Internet and came up with this SuperFetch service. After you disable it in the Manager of tasks, svchost.exe became normal and he did not use this amount of memory. Also, I disable it in services.msc and I hope it will work as good as it was.
    Just do not know why this problem occurred, where. I didn't install anything recently except Battlefield 3.
  • On DMVPNs selective IPSec encryption

    Hello

    I have a DMVPN with two rays on a MPLS-L3-IPVPN network. IPSec over GRE profiles using crypto. Works very well. Now, he only need to encrypt all traffic except EF DSCP. Tried with the help of ACB defining IP-Next Hop for EF-packages and just normal dug routing for all other types of traffic.

    My question is, I know cryptographic cards that use ACLs can selectively encrypt traffic through the IPSec/GRE tunnels. Cryptographic profiles don't seem to have this feature. Is there another way to do this?

    A snip Config by couple spoke it as below.

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

    interface GigabitEthernet0/0.1
    DESC LAN i / f
    IP 10.10.10.1 255.255.255.0
    political intellectual property map route ACB

    interface Tunnel100
    IP 172.16.254.13 255.255.254.0
    no ip redirection
    property intellectual PNDH card 172.16.254.1 103.106.169.10
    map of PNDH IP multicast 103.106.169.10
    PNDH network IP-1 id
    property intellectual PNDH nhs 172.16.254.1
    property intellectual shortened PNDH
    KeepAlive 10 3
    source of tunnel GigabitEthernet0/1.401
    multipoint gre tunnel mode
    key 1 tunnel
    Profile of tunnel DMVPN-Crypto ipsec protection
    end

    GIE Router 1
    no car
    NET 172.16.254.0 0.0.1.255
    EIGRP log-neighbor-warnings
    EIGRP log-neighbor-changes
    ! - router id
    NET 10.10.10.0 0.0.0.255

    ACB allowed 10 route map
    ACB match ip address
    IP 11.2.100.2 jump according to the value
    !
    ACB allowed 20 route map

    ACB extended IP access list
    permit icmp host 10.10.10.5 host 15.1.1.1 dscp ef
    allow icmp host 10.10.10.5 host 15.1.1.1 dscp 41
    deny ip any any newspaper

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

    Note: the routing table contains only a default route learned via EIGRP. Thus, if the ACB 10 past, policy would transmit to the Next-hop (PE). Or would otherwise use 0/0 and route thro' the tunnel.

    Thanks in advance!

    See you soon
    Aravind

    With DMVPN, no.  You will need to return to the use of just cryptographic cards, only using access lists to control what is and is not encrypted.

    If the "EF" traffic was dedicated VoIP subnets so you would have more options, you can choose everything just don't not to route these subnets above the Tunnel.

Maybe you are looking for

  • How to read and scale of multiple analog input channels

    Hello I'm reading the data of several types of sensors, with readings of 4-20mA. What I'm trying to do, is have a pressure transducer, a flow meter and a RTD sensor all connected on channels 1, 2 and 3 of my cDAQ using DAQmx. After channels are put o

  • Reading XML File.vi returns an empty string

    Hello I use reading of XML File.vi and this VI returns an empty string on my XML file, but on another XML file, it seems to work correctly. I open my file XML in Internet Explorer 7.0 and it apears as aspected. What could be the problem? Thanks in ad

  • HP 15 Notebook: BIOS

    which key F do I need to hit when you start to enter the bios? You want to check the boot order to see if my recovery bootable CD. HP will not tell me how to get my data to my new hard drive recovery.  #J$%&*

  • Corruption in large file copy to USB - Windows 7 Pro 64-bit SP1

    I have seen other people have reported this problem, but I have not found an answer. When I copy large files (1 GB +) from one hard disk to another (connected to the same computer), and the destination hard disk is on a port USB3 (also maybe USB2), s

  • Impossible to play Netflix movies

    Original title: Netflix I am new to this and I can't get netflix to play movies what could I hurt thanks Leon