SQLLOADER fails to load the CSV file space

Hello


-I use sqlloader to load the tables (Release 10.2.0.4.0)

- But I'm real spaces in my CSV files, which I want to load is in the tables.

-However, sqlloader load "null" instead.

-Please help.

Vishal,

Let me know if previously posted the solution works for you, or you always spaces loading problems

Concerning

Tags: Database

Similar Questions

  • start the computer to start but stops at "failed to load the core file?

    Original title: how to get Windows XP to boot my computer from starting when starts but stops at "failed to load the core file?

    When I try to start my computer, it stops at "cannot load the kernel."  It will go no further. What is the solution?

    Please see: How to perform a Windows XP repair install

  • OfficeJet 4620 - webscan to chrome book fail to load the PDF file

    Hi, I have a JO 4620 configuration to print/scan/fax of my acer chromebook using the service web printerns.  I type the IP address of printers in my browser and get the printers web server integrated. Scan turned offshore so had to go to admin setting and turn it on. Now, I get the good screen and can choose pdf/jpeg image qualityetc.

    I'm trying to scan from the autofeeder printers using the PDF. I start scanning and auto printer feeds the paper, it indicates that the analysis file was sent to the computer.

    On the book of chrome, it says its scanning, then said done and click Save to save it to computer.

    There is no record button as well as the document does not load. I know that I can preview a right-click and save this way but the preview window is all gray and "Failed to load PDF document" when I spend...

    Any ideas?  Need to use ADF for multiple page docs and need to be PDF...

    Thank you Zac

    Hello zacbec,

    Welcome to the Forums of HP Support!

    At this time, regarding the Chromebook and scanning with the integrated Web server. PDF formats are problematic. Items such as the sweep. JPG works well using the integrated Web server. To my knowledge the Chromebook side and better with their support line is addressed.

    If you have access to a Windows or Mac computer, you would be able to see that the ADF and. PDF scan in SAP works without problem.

    See if the Chromebook support has made a new light: Chromebook Central help Forum.

    Kind regards

  • Load the CSV file

    I use Apex 3.2 and construction of a facility charge of csv file.
    I received a lot of help on this post
    Re: Validate CSV File
    I'm now able to load the data into my custom table.
    Before I do that I want to update the collection first, using this option if statement
    IF c001 IS NULL THEN
                c006    := 'APXIMP';
                c007    := c007 || 'Storekey is missing!';
              END IF;
    
              IF c002 IS NULL THEN
                c006    := 'APXIMP';
                c007    := c007 || 'Plan Delivery Moment is missing!';
              END IF;
    
              IF c003 IS NULL THEN
                c006    := 'APXIMP';
                c007    := c007 || 'WRIN Base is missing!';
              END IF;
    
              IF c004 IS NULL THEN
                c006    := 'APXIMP';
                c007    := c007 || 'WRIN Suffix is missing!';
              END IF;
    
              IF c005 IS NULL THEN
                c006    := 'APXIMP';
                c007    := c007 || 'Order Qty. is missing!';
              END IF;
    
              IF c005 IS NOT NULL THEN
                IF SIGN(vt_record(5))=-1 THEN
                  c006    := 'APXIMP';
                  c007    := c007 || 'Order Qty. must be a positive integer value!';
                END IF;
                IF MOD(c005,FLOOR(c005)) <> 0 THEN
                  c006    := 'APXIMP';
                  c007    := c007 || 'Order Qty. must be a positive integer value!';
                END IF;
              END IF;
            EXCEPTION
              WHEN others THEN
                c006    := 'APXIMP';
                c007    := c007 || 'Order Qty. must be a positive integer value!';
    I am new to the collections, so if someone could show me an example or point me in the right direction, as there seems to be several types of update of collection procedures.

    See you soon

    Gus

    Hello

    You talk about the package but written the anonymous block syntax. I did understand what you're trying to do.

    Assuming that it is a procedure of your code should look like

    CREATE OR REPLACE PROCEDURE UPDATE_COLL (
      P_collection_name IN VARCHAR2  -- parameter passed when calling from Apex Process
    ) AS
    
    begin
    
    for x in (select seq_id, c001, c002, c003, c004, c005, c006, c007
             from apex_collections
            where collection_name = p_ collection_name )
    LOOP
    
         IF x.c001 IS NULL THEN
          apex_collection.update_member_attribute (
             p_collection_name=> p_collection_name,
             p_seq=> x.seq_id,
             p_attr_number =>6,
             p_attr_value=> 'APXIMP'
            );
           apex_collection.update_member_attribute (
              p_collection_name=> p_collection_name,
              p_seq=> x.seq_id,
             p_attr_number =>7,
             p_attr_value=> x.c007 || 'Storekey is missing!'
          );
         END IF;
    
        IF x.c002 IS NULL THEN
          apex_collection.update_member_attribute (
             p_collection_name=> p_collection_name,
             p_seq=> x.seq_id,
             p_attr_number =>6,
             p_attr_value=> 'APXIMP'
            );
           apex_collection.update_member_attribute (
              p_collection_name=> p_collection_name,
              p_seq=> x.seq_id,
             p_attr_number =>7,
             p_attr_value=> x.c007 ||  'Plan Delivery Moment is missing!'
          );
         END IF;
    
        IF x.c003 IS NULL THEN
          apex_collection.update_member_attribute (
             p_collection_name=> p_collection_name,
             p_seq=> x.seq_id,
             p_attr_number =>6,
             p_attr_value=> 'APXIMP'
            );
           apex_collection.update_member_attribute (
              p_collection_name=> p_collection_name,
              p_seq=> x.seq_id,
             p_attr_number =>7,
             p_attr_value=> x.c007 ||   'WRIN Base is missing!'
          );
        END IF;
    
        IF x.c004 IS NULL THEN
          apex_collection.update_member_attribute (
             p_collection_name=> p_collection_name,
             p_seq=> x.seq_id,
             p_attr_number =>6,
             p_attr_value=> 'APXIMP'
            );
           apex_collection.update_member_attribute (
              p_collection_name=> p_collection_name,
              p_seq=> x.seq_id,
             p_attr_number =>7,
             p_attr_value=> x.c007 ||  'WRIN Suffix is missing!'
          );
       END IF;
    
      IF x.c005 IS NULL THEN
          apex_collection.update_member_attribute (
             p_collection_name=> p_collection_name,
             p_seq=> x.seq_id,
             p_attr_number =>6,
             p_attr_value=> 'APXIMP'
            );
          apex_collection.update_member_attribute (
              p_collection_name=> p_collection_name,
              p_seq=> x.seq_id,
             p_attr_number =>7,
             p_attr_value=> x.c007 || 'Order Qty. is missing!'
          );
      END IF;
    
      IF x.c005 IS NOT NULL THEN
          IF SIGN(c005)=-1 THEN
          apex_collection.update_member_attribute (
             p_collection_name=> p_collection_name,
             p_seq=> x.seq_id,
             p_attr_number =>6,
             p_attr_value=> 'APXIMP'
            );
          apex_collection.update_member_attribute (
              p_collection_name=> p_collection_name,
              p_seq=> x.seq_id,
             p_attr_number =>7,
             p_attr_value=> x.c007 || 'Order Qty. must be a positive integer value!'
          );
         END IF;
         IF MOD(c005,FLOOR(c005))  0 THEN
          apex_collection.update_member_attribute (
             p_collection_name=> p_collection_name,
             p_seq=> x.seq_id,
             p_attr_number =>6,
             p_attr_value=> 'APXIMP'
            );
          apex_collection.update_member_attribute (
              p_collection_name=> p_collection_name,
              p_seq=> x.seq_id,
             p_attr_number =>7,
             p_attr_value=> x.c007 ||'Order Qty. must be a positive integer value!'
          );
        END IF;
      END IF;
    END LOOP;
     EXCEPTION
              WHEN others THEN
          apex_collection.update_member_attribute (
             p_collection_name=> p_collection_name,
             p_seq=> x.seq_id,
             p_attr_number =>6,
             p_attr_value=> 'APXIMP'
            );
          apex_collection.update_member_attribute (
              p_collection_name=> p_collection_name,
              p_seq=> x.seq_id,
             p_attr_number =>7,
             p_attr_value=> x.c007 || 'Order Qty. must be a positive integer value!'
          );
    end;
    
  • Failed to load the local profile. IO error. All files in My Documents have disappeared. How to restore

    did a normal turn on the computer.  Message came back failed to load the local profile.  IO error.  When he signed me, all my documents in My Documents had disappeared.

    A corrupt profile is fairly easy to recover with minimal losses.  Refer to the following procedure:

    "How to recover damaged Windows XP user profile"
      <>http://support.Microsoft.com/kb/555473 >

    Corrupt profiles are almost always accompanied by hard drive corruption.  After recovery, scan your hard disk for errors using chkdsk with the /f or/r option

    "How to perform disk error in Windows XP check"
      <>http://support.Microsoft.com/kb/315265 >

    The disk check procedure can take hours depending on the size of your hard drive and the amount of corruption and cannot be interrupted, then run it when you won't need your computer for awhile.

    HTH,
    JW

  • Load a CSV file into a table like in dataworkshop

    Workshop of data has a function to load a CSV file and create a table based on it, the same, I want to create in my application.



    I went through the forum http://forums.oracle.com/forums/thread.jspa?threadID=334988 & start = 60 & tstart = 0

    but not able to download all the files (application, package HTMLDB_TOOLS and PAGE_SENTRY function) could not find the PAGE_SENTRY function.

    AND when I open this link http://apex.oracle.com/pls/apex/f?p=27746

    I could not run the application. I've provided a CSV file and when I click on SEND, I get the error:

    ORA-06550: line 1, column 7: PLS-00201: identifier ' HTMLDB_TOOLS. PARSE_FILE' must be declared

    tried in apex.oracle.com host as shown in the previous post.

    any help pls..,.

    Another method to load data into the tables..., (as dataworkshop)

    Hello

    I have check app works very well.

    Have you read instructions?
    Load a CSV file in a table
    >
    Create a small csv file as

    col1, col2, col3
    VARCHAR2 (10), Number, "Number (10.2)" "
    Cat, 2, 3.2
    dog, 99, 10.4
    >
    First row must have valid column names. To verify that your first line of titles have no spaces or those who are not words reserved.
    Second line of the CSV file must have column of table data types.

    When you meet these requirements app works perfectly

    Kind regards
    Jari

  • "Failed to process the backup file" - bookmarks JSON file

    I deleted my appdata files without thinking and then allowed my trash. When I opened firefox again all my favorites have disappeared. I used piriform recuva to find my deleted files and recover the backup JSON files 10 bookmark. When I try to restore my bookmarks, I get the message "failed to process the backup file". "Files are 95 KB in size, but when I open them with Notepad that they are empty, however, when you use the Restore tool, it is said ' elements of 480", which I assume is the amount of bookmarks, I had, which means that firefox can see data. The same happens for all ten backups that I recovered.

    Any help would be appreciated.

    What is the name of this file?

    Firefox can only look at the file name for the number of items.

    • < number > _ < hash > .json bookmark-YYYY-MM-JJ_

    The files in the bookmarkbackups folder are currently in compressed format .jsonlz4 (i.e., they show data binary like a ZIP compressed archive) and cannot be easily unzipped for access the JSON text format.
    The files are compressed means that a single error in the file will make it impossible to unpack the file.

    Have you checked all the available JSON backup to see if everything works?

    A backup created manually JSON is always not compressed, so can be easily inspected or opened in a text editor (Notepad > "Pretty Print"), but with a compressed file, it is much more difficult.

    Recovery of a file via an undelete utility is no guarantee that the space occupied by the file has not been used by another file, and so is corrupt.

  • The monitoring of test data to write in the CSV file

    Hi, I'm new to Labview. I have a state machine in my front that runs a series of tests. Every time I update the lights on the Panel with the State. My question is, how is the best way to follow the test data my indicators are loaded with during the test, as well as at the end of the test I can group test data in a cluster, and send it to an another VI to write my CSV file. I already have a VI who writes the CSV file, but the problem is followed by data with my indicators. It would be nice if you could just the data stored in the indicators, but I realize there is no exit node =) any ideas on the best painless approach to this?

    Thank you, Rob

    Yes, that's exactly what typedef are to:

    Right-click on your control and select make typedef.

    A new window will open with only your control inside. You can register this control and then use it everywhere. When you modify the typedef, all controls of this type will change also.

    Basically, you create your own type as 'U8 numéric', 'boolean', or 'chain' except yours can be the 'cluster of all data on my front panel' type, "all the action my state machine can do," etc...

  • blue screen after Ko 2840149, error - "STOP: c0000218 {Registry hive failure} the registry cannot load the hive (file): \systemroot\system32\config\SOFTWARE.

    After I installed security KB2840149 on a 2008 VM w/exchange server that is running on the machine of Hyper-v server 2008 I'm dead in the water w / E-mail down hard.  The virtual computer is in a reboot cycle bluescreening before I can get anywhere.  Tried the last well known - no effect.  Safe mode - so bluescreens.

    BlueScreen info:
    STOP: c0000218 {Registry hive failure}
    The registry cannot load the hive (file):
    \systemroot\system32\config\SOFTWARE
    or its log or alternation.
    It is damaged, missing, or not accessible in writing
    I saw that it was a patch of replacement for a patch that crashed a lot of PCs.  Since there is no history on this patch, I wanted to check in a see what is the best way to fix this on a virtual machine?

    Being not so deep on VM, I wasn't sure if there was a better way. But I just put the virtual machine to load 2008 iso and then made the standard repair for registry problems off the coast of the article below.

    Of http:

    If the Windows registry is slightly or moderately damaged, you may be able to restart the computer in safe mode and use system restore to restore the registry from the computer to the last known good configuration. However, if the Windows registry is seriously damaged, all types of logon will be prevented. Trying to connect to Windows causes the system fails, then restart. In this case, you will need to boot the system into the recovery instead of Windows Console. Once in the Recovery Console, you can use the Startup Repair tool. Startup Repair tool automates common diagnostic and repair of the installations of Windows tasks starts longer.

    (a) start your Windows Vista or Windows Server 2008 DVD
    (b) on the first Setup screen click Next
    (c) in the lower left corner of the screen, choose "repair your computer".
    (d) on the System Recovery Options screen, select your Windows installation and then click Next
    (e) click on "Command prompt".
    (f) go to X:\sources\recovery > startrep.exe
    (g) this will take some time but will look at any registry related issues.

  • Half-life 2 says failed to load the Launcher DLL specified module could not be found

    Failed to load the Launcher DLL:

    the specified module could not be found

    Hi Madoo17,

    Welcome to the community of Microsoft and thanks for posting the question. I've surely you will help find a solution on the issue.

    1. Once you get this error message?

    2. it worked before?

    3 did you changes to the computer before the show?

    Perform the steps:

    Method 1:

    Put the computer in a State of boot is a way to know which application is causing this problem.

    To help resolve the error and other messages, you can start Windows by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    Step 1:

    Put your boot system helps determine if third-party applications or startup items are causing the problem. If so, you need to maybe contact the manufacturer of the program for updates or uninstall and reinstall the program.

    Follow the steps in the link below to do the same thing:

    How to configure Windows XP to start in a "clean boot" State

    Note: After troubleshooting, be sure to set the computer to start as usual as shown here:

    Step 2: To configure Windows to use a Normal startup state

    After you have used the boot is a way to solve your problem, you can follow these steps to configure Windows XP to start normally.

    a. Click Start and then click Run.

    b. type msconfig and click OK. The System Configuration Utility dialog box appears.

    c. click on the general tab, click Normal Startup - load all services and device drivers and then click OK.

    d. When you are prompted, click on restart to restart the computer.

    Method 2: Use the (SFC) System File Checker tool.

    SFC system gives an administrator the ability to scan the files all protected to check their versions. If the System File Checker detects that a protected file has been replaced, it retrieves the correct version of the file in the folder cache (% Systemroot%\System32\Dllcache) or the Windows installation source files and then replaces the incorrect file. System File Checker verifies and repopulates the cache folder also. You must be logged in as an administrator or as a member of the Administrators group to run the System File Checker.

    Check out this link to do the same thing:

    Description of Windows XP and Windows Server 2003 System File Checker (Sfc.exe)

    Hope this information helps. Please reply back with the State so that we can help you.

  • the user profile Service service has no logon failed to load the user profile

    I received the following message when I try and log in my account to have:

    The user profile Service service has no logon failed to load the user profile

    What are my options?

    Hello

    1st thing to try is the system in safe mode restore to before the problem

    http://www.windowsvistauserguide.com/system_restore.htm

    Windows Vista

    Using the F8 method:

    1. Restart your computer.
    2. When the computer starts, you will see your computer hardware are listed. When you see this information begins to tap theF8 key repeatedly until you are presented with theBoot Options Advanced Windows Vista.
    3. Select the Safe Mode option with the arrow keys.
    4. Then press enter on your keyboard to start mode without failure of Vista.
    5. To start Windows, you'll be a typical logon screen. Connect to your computer and Vista goes into safe mode.
    6. Do whatever tasks you need and when you are done, reboot to return to normal mode.

    If that does not solve it read more

    read the tutorial below

    http://www.Vistax64.com/tutorials/130095-user-profile-service-failed-logon-user-profile-cannot-loaded.html

    When you log on a Windows Vista-based or a Windows 7 computer by using a temporary profile, you receive the following error message:

    The user profile Service has not logon. User profile cannot be loaded.

    http://support.Microsoft.com/kb/947215#letmefixit

    Your user profile was not loaded correctly! You have been logged on with a temporary profile.

    http://support.Microsoft.com/kb/947242

    If you tried to log on to Windows and received an error message telling you that your user profile is damaged, you can try to fix it. You will need to create a new profile and then copy the files from the existing to the new profile. You must have at least three user accounts on the computer to perform these operations, including the new account that you created.

    http://Windows.Microsoft.com/en-us/Windows-Vista/fix-a-corrupted-user-profile

  • Log: error message: "the service user profile service has no logon failed to load the user profile.

    Error message: "the service user profile service has no logon failed to load the user profile.

    Unable to connect.

    ·                        Restore point:

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    If the above does not work:

    ·                        http://www.Vistax64.com/tutorials/130095-user-profile-service-failed-logon-user-profile-cannot-loaded.html

    See if the information in the above tutorial will help you.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/kb/947215#letmefixit

    Error message when you log a computer Windows Vista-based or Windows 7 by using a temporary profile: "the user profile Service has no logon. Unable to load the user profile.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://windowshelp.Microsoft.com/Windows/en-AU/help/769495bf-035C-4764-A538-c9b05c22001e1033.mspx

    Difficulty of a corrupted user profile

    After creating the profile, you can copy the files from the existing profile. You must have at least three user accounts on the computer to perform these operations, including the new account that you created.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/kb/947242

    A temporary profile is loaded after you connect to a Windows Vista-based system

    See you soon.

    Mick Murphy - Microsoft partner

  • I also, I get the error "the service user profile Service has no connection, failed to load the user profile" but I have not been able to correct the problem by following the listed solutions.

    I got the error "the service user profile Service has no connection, failed to load the user profile" when you try to use my desktip.  It is on the login page.  My account icon loads and the guest account. I have enter my password as an administrator and get the error message listed above. I followed all the solutions I could find and it is not corrected.

    I have a slight hitch, after several failed here, I checked the domestic Group on my laptop and I have high listed as connected to the Group Home Office; with all the files.  How can I fix the desk top to coinside with his status of being online.  Yet once, my counter top will not recognize the password, but the desk top shows online in the home group.

    Home Group is Windows 7.

    Here is the Vista Forums.

    What operating system do you use?

    Vista info below:

    ·                        Restore point:

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    If the above does not work:

    ·                        http://www.Vistax64.com/tutorials/130095-user-profile-service-failed-logon-user-profile-cannot-loaded.html

    See if the information in the above tutorial will help you.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://windowshelp.Microsoft.com/Windows/en-AU/help/769495bf-035C-4764-A538-c9b05c22001e1033.mspx

    Difficulty of a corrupted user profile

    After creating the profile, you can copy the files from the existing profile. You must have at least three user accounts on the computer to perform these operations, including the new account that you created.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/kb/947242

    A temporary profile is loaded after you connect to a Windows Vista-based system

    See you soon.

    Mick Murphy - Microsoft partner

  • Must be able to open the .csv file in Excel separated by two, and; -Windows 7 list separator

    Original title: list separator Windows 7

    Hi, I was wondering is it possible to add 2 values to list separator?  I need to be able to open the .csv file in Excel separated by two, and;  At the moment I can only do that if I continue to change the list separator value in the regional settings of Windows Alternatively, depending on which file I want to open.  Is it possible to add both?  I tried to add, and; separated by spaces, but it did not work.  Any suggestions would be much appreciated! Thank you!

    It may be one, sorry.  But you can use an Excel template or Excel macro to analyze and open any kind of delimited file of reproducibly (even give you one-click button on the toolbar in Excel to do if you wish), and this is probably the best option.

  • Failure of the load of the inventory... OPatch failed to load the inventory for the Home.OPatch Oracle data failed with the error code = 73

    Hello

    I will apply patch bundle and my oracle database 11.2.0.2 and Microsoft Windows x 86 platform. As read the file Readme Oracle recommends to use OPatch utility version 11.2.0.1.3 or later. To check the inventory availability I use the command lsinventory % ORACLE_HOME%/OPatch/opatch.

    It ended to give details below.

    Citing O 11.2 patch .0.1.1

    OPatch could not create/open history for writing file: * my home oracle path***\cfgtoollogs\opatch\opatch_history.txt

    **ORACLE_HOME***\cfgtoollogs\opatch\opatch_history.txt (access is denied)

    Setup Oracle interim Patch version 11.2.0.1.1

    Copyright (c) 2009, Oracle Corporation.  All rights reserved.

    OPatch could open the log file, the recording is not possible

    Home Oracle: *.

    Inventory Center: C:\Program Files\Oracle\Inventory

    from: n/a

    OPatch version: 11.2.0.1.1

    YES version: 11.2.0.2.0

    YES location: * ORACLE_HOME * \oui

    Location of the log file: **ORACLE_HOME**\cfgtoollogs\opatch\opatch2015-04-09_16-27-49PM.log

    History of patch file: **ORACLE_HOME**\cfgtoollogs\opatch\opatch_history.txt

    Failure of the load of the inventory... OPatch failed to load the inventory for the given Oracle Home.

    LsInventorySession failed: LsInventory failed to create the log directory * ORACLE_HOME * \cfgtoollogs\opatch\lsinv\lsinventory2015-04 -.

    09_16-27 - 49 PM .txt

    OPatch failed with error code = 73

    Can someone please help me solve this problem?

    Do I need to install the last opatch utility?

    Hello

    This error message " LsInventorySession failed: LsInventory failed to create the log directory * ORACLE_HOME * \cfgtoollogs\opatch\lsinv\lsinventory2015-04 - .

    09_16-27 - 49 PM .txt "

    indicates that you have a permission problem with your file systems: cfgtoollogs/ORACLE_HOME/opatch

    Check the owner of this file system.

    Kind regards

Maybe you are looking for

  • Satellite M50-161: after you have reinstalled XP, OS lost the DVD/CD player

    Hi, I have a laptop Satellite M50-161. Since the loading of Windows XP Professional, I lost the driver and can not copy on a CD, but it will read. How to restore the driver to copy! Your wings66

  • Network controller is not recognized on Satellite A100 Windows XP

    Hi all! I bought a Satellite A100 PSAAR and I did a clean install of Windows XP on it. I installed all the drivers in the correct order (downloaded from the support page) but I still have a problem: Ethernet controller and network controller appear w

  • switch control

    How can I optimize control of some switches through the use of the card NI 6218 and labview? Can I use the digital I/o and how? Is this the right way that I make a virtual switch in labview and connect them with the OR digital CHANNEL. Then the real

  • FPGA ~ data acquisition

    Hello, I'm doing some sort of dummy program.  I put in a sinusoidal signal generator to the place where I hope to possibly an acquisition of data vi.  However, whenever I have it take data it spits out hundreds of text files that do not appear to res

  • Formatting 300 GB WD HDD

    OK, here's what I have: I have windows xp pro service pack 3 I installed a Western Digital hard drive additional 300 GB and formatted it.  He formatted only 8 GB of space instead of the whole 300.  I know he can do it all, it is formatted as a Fat32