Hello!I only want to use the sql loader,and then what sould I do?

Such as the title

f7ae7c6c-6210-4d88-b8c9-fad38d9ee626 wrote:
but somebaby say i can
  1> scp [email protected]:/home/oracle/oracle_home/bin/sqlldr/usr/local/oracle/sqlldr
   2> mkdir -p /usr/local/oracle/rdbms/mesg
      cd /usr/local/oracle/rdbms/mesg/
      scp [email protected]:/home/oralce/oracle_home/rdbms/mesg/ulus.msb./ulus.msb
and then can use the sqlldr
but somebaby say i can
Ok, knock yourself out ...
Guy: Where did you hear that?
Girl: On the internet
Guy: And you believed it?
Girl: Sure. They can't put anything on the internet that isn't true
Guy: Where did you hear that?
Girl: On the internet.  Oh, here comes my date.  I met him on the internet.  He's a French Model.
Guy 2 (with sly wink) : Bonjour
http://www.youtube.com/watch?v=bufTna0WArc
============================================================================
BTW, it would be really helpful if you would go to your profile and give yourself a recognizable name.  It doesn't
have to be your real name, just something that looks like a real name.  Who says my name is really Ed Stevens?  But at
least when people see that on a message they have a recognizable identity.  Unlike the system generated name of
'ed0f625b-6857-4956-9b66-da280b7cf3a2', which is like going to the pub with a bag over your head.
Call me a racist, but all you ed0f625b-6857-4956-9b66-da280b7cf3a2's look alike to me. 
============================================================================

Similar Messages

  • I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    You only need the ODBC driver on each computer. If you are distributing the SQL Toolkit app as an executable and do not install the whole toolkit on each computer, you'll need the SQL Toolkit support files. This is about a dozen files. You can get the list at http://digital.ni.com/public.nsf/websearch/b814be005f9da9258625658700550c75?OpenDocument.

  • I am a serviceman deployed to East Africa, and I bought an itunes gift card but cannot use it to purchase anything because itunes sends me to the billing page for a credit card but I only want to use the gift card, how do I get pass that?

    Hello, deployed an want to use an itunes gift card after I put in the number to use it and purchase music itunes continues to take me back to the credit card billing page. I only want to use the gift card, how to I get pass the credit card billing page. Also as soon attempt to put in my new credit card number it immediately times out can this be associated to where I'm located?

    Go to your account on your computer and set the credit card to none. This will allow you to use the gift card.

  • I want to use the SQL query IF EXIST to update or insert data in a ms access table, but it doesn´t work

    Hi,
    I want to use the SQL query IF EXIST to update or insert data in a ms access table, but it doesn´t work
    (fault number -2147217900)
    I want to search for a value in a ms access table , if it exist i want to update it, if not i want to insert a new row.
    Working with LabView 7.1, database con. toolset.
    Who can HELP?
    Thanks a lot
    Marco

    Hello,
    I think that If exist is not a standar SQL command (I know it exists I think in Oracle and SQL server), MS access doesn't support it, so I think the best way to do it is first make a Select and then either an Update or an insert, sorry...
    Paulo

  • What are the steps to make it seamless for a customer to use the install program and then use the installed program?

    I wrote an install program (.exe) that is downloaded from a website.  When run, it 1) leads a customer to browse to a directory, and 2) copies files (.exe, .dll, etc.) from a website to that directory.  When I run, the installed program works.
    What are the steps to make it seamless for a customer to use the install program and then use the installed program? 
    bhs67

    This site https://msdn.microsoft.com/en-us/library/vstudio/2kt85ked%28v=vs.110%29.aspx provides a basic description of the Visual Studio Windows Installer. 
    Near the bottom of the page is "You can unlock all the features of InstallShield by paying to upgrade to the full version of InstallShield."  Where do I find info that describes the differences between the "free" and the "full"
    versions?
    bhs67
    Hello,
    The default feature does support the task for your requirement, so there is no need to pay for the other features unless you want to use some feature which is not free.
    In addition, as this thread
    InstallShield LE not available with VS 2012 RTM? shared, even through there is a link to InstallShield LE in the New Project dialog under Deployment solutions, but it belongs to third-party that I would recommend you consider posting this issue
    at the following forum to get supports about InstallShield.
    http://community.flexerasoftware.com/forumdisplay.php?133-InstallShield
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I want to use destination server as production then what will be steps

    Hi,
    I am using Oracle 10g 10.2.0.3.0 on Linux 64 bit in Production as well as destination server. Using Oracle one way schema replication from Production to destination server.
    Now my question is if my production is schema is destroyed by any unforseen disaster and i want to use destination server as production then what steps should take to use destination server , especially how to terminate apply process and queue waiting.
    Regards

    Hello
    Removing streams is very simple in 10g. Please follow the below steps:
    1. Remove all the streams configuration metadata informations:
    connect / as sysdba
    execute dbms_streams_adm.remove_streams_configuration;
    2. Now drop the streams administrator user who owns the streams queues:
    connect / as sysdba
    drop user strmadmin cascade;
    Thats all the steps to remove streams. This will automatically stop the apply, drop them and then drop all the other related informations, then finally remove the streams queues and other objects when dropping strmadmin user.
    Earlier in 9i (9.2) we used to stop the apply, then drop them and drop all the objects manually. From 10g onwards the procedure dbms_streams_adm.remove_streams_configuration does everything under the covers.
    Thanks,
    Rijesh

  • Want To Capture The File name Using the SQL Loader

    Hi,
    I Am loading The Data To Staging Table Using The SQL*developer, The File That need to be Loaded Will be One Of The Input To the SQL*Loader Concurrent Program.
    In One Of The Column Of My staging Table I want To Put The File name.
    Can We do the Same.
    thanks,
    Ankit

    Not unless you generate the loader controlfile dynamically.. try this.. pass file name as $1 first parameter. Use the below example and modify as per your requirement
    1) create table with following table structure
    create table temp_table (x varchar2(20),file_name varchar2(30));
    2) create data file - test.dat (contains only values for x)
    abc
    def
    geh
    ggg
    fff
    3) create a host file host file - test.sh with following content:
    echo "load data
    infile $1
    append
    into table temp_table
    fields terminated by ','
    (x,
    file_name constant "$1")" > test.ctl
    sqlldr <usr>/<pwd>control=test.ctl
    4) run the host file from unix prompt with data file name as parameter (ensure test.sh has execute permissions)
    test.sh test.dat
    Hope this helps
    Regards,
    Bhadri

  • I only want to use the icloud for my music

    I have a PC and an ipad2.  I would like to use the icloud to transfer music I previoulsy loaded via a CD.  Music that was not purchased from iTunes does not show available to download when I open my ipad2/shared music library.  Would I use the icloud for this and if so, how would I select specific albums?  I have heard many horror stories regarding icloud syncs so I have yet to activate my account.  I only want to use icloud for my music and nothing else.

    Yes. Only purchases from iTunes are stored in the cloud. If you want to store songs imported via CD you need iTunes Match.
    http://www.apple.com/itunes/itunes-match/

  • How do I uninstall the standard American dictionary? I only want to use the English/Australian dictionary.

    I do not want to use the default American dictionary. Although I have the English/Australian dictionary installed, every time I use a word that in Australia has an 's' but in the States has a 'z' the word in highlighted as incorrect. For example. Australia: 'organisation'. US: 'organization' - the word 'organisation' is highlighted as an error although it is not. In other words, the US dictionary takes precedence over my installed English/Australian dictionary which makes that English dictionary totally superfluous and makes me wonder why it's offered in the first place. I would like to remove the US dictionary but can't find it to kill it.

    A possibility is to install the en-GB Firefox version as that version doesn't come with a dictionary like the en-US version does.
    Otherwise you can find the en-US dictionary files in the dictionaries folder in the Firefox program folder and remove them there.
    *(32 bit Windows) C:\Program Files\Mozilla Firefox\
    *(64 bit Windows) C:\Program Files (x86)\Mozilla Firefox\
    You can see which dictionary is selected if you right-click in a text area and open the Languages submenu.<br />
    At least one dictionary should be installed and have a check mark to indicate that it is selected.
    *Open the "Add Dictionaries" link to install a dictionary if you do not have one.
    *Make sure that [X] "Check Spelling" in the right-click context menu is check-marked.
    You can look here for dictionaries:
    *https://addons.mozilla.org/firefox/language-tools/

  • How to load the international characters by using the SQL*Loader(UNIX)?

    Hi Everyone,
    I am not able to load the international characters thru SQL*Loader which is calling from Unix. Whenever I load these characters , appears in DB such as Square box. Please help me how to resolve the issue.
    Using version is:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE     10.2.0.4.0     Production
    TNS for IBM/AIX RISC System/6000: Version 10.2.0.4.0 - Productio
    NLSRTL Version 10.2.0.4.0 - Production
    Thanks in advance.
    Regards,
    Vissu.....

    This may help
    SQL> CREATE TABLE test_sqlldr_unicode (id INTEGER, name VARCHAR2(100 BYTE));
    Table created.Now my data file.
    1,"ABóCD"
    2,"öXYZó"
    3,"EFGÚHIJK"
    4,"øøøøøøøøøøøøøøø"My control file.
    LOAD DATA
    CHARACTERSET WE8ISO8859P1
    INFILE 'C:\test_sqlldr_unicode.txt'
    REPLACE
    INTO TABLE test_sqlldr_unicode
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
    (id INTEGER EXTERNAL , name )
    {code}
    Running the sqlldr
    {code}
    C:\>sqlldr USERID=hr/hr CONTROL=test_sqlldr_unicode.ctl LOG=test_sqlldr_unicode.
    log
    SQL*Loader: Release 10.2.0.1.0 - Production on Thu Dec 30 19:38:22 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 5
    C:\>
    {code}
    The table
    {code}
    SQL> SELECT * FROM test_sqlldr_unicode;
            ID NAME
             1 ABóCD
             2 öXYZó
             3 EFGÚHIJK
             4 øøøøøøøøøøøøøøø
    SQL>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I was using my debit card for itunes now i want to use the gift card and it keeps going to my card information

    I want to use my itunes gift card... everytime i try to download music it keeps going to my debit card information.  Why wont it use the money that is credited to from the itunes card?

    Did you perhaps create multipe Apple IDs without realizing it?
    To investigate, go here.

  • How do I add variables to different checkboxes without using the 'Export Value' and then add them together (if checked)?

    Hello,
    I am very new to JavaScript.  I would like to create a checkbox with a numerical value variable activated if the box is checked.  Unfortunately, I cannot use the 'Export Value' because I already need to use it for something else.
    Any help is really appreciated.
    Thanks,
    Robyn

    Brace yourself, here's your solution.
    First of all, the export value of you checkboxes should definitly be the number of hours for the class since you will just add them up further.
    Second, we will use the userName property for our second export value (its the field right under Name and its labeled "tooltip").  You will name the class there.
    Finally, you need to name each checkbox with a number at the end starting with 1 all the way to 190.  This will be used in loops. ("whatever.1", "whatever.2,....."whatever.190")
    In the calculate event of "total hours":
    var sum = 0;  //declaring a variable that will be used in the loop
    for (var i = 1; i <= 190; i++){    //this loop will scan through all your checkboxes
         if (this.getField("whatever."+i).isBoxChecked(0) == true){  //if box is checked....
              sum += Number(this.getField("whatever."+i).value);   //.....add its value to the sum
    event.value = sum;  //display the total
    Now for the course name field, we will use the same pattern in the calculate event
    var courseList = new Array();  //declaring an empty array that will contain the courses
    for (var i = 1; i <= 190; i++){    //this loop will scan through all your checkboxes
         if (this.getField("whatever."+i).isBoxChecked(0) == true){  //if box is checked....
              courseList.push(this.getField("whatever."+i).userName);   //.....add its userName (tooltip) to the array
    event.value = "You are attending these courses:  "+courseList.join(", ")+".";  //display the array by turning it into a string and joining its items with ", "
    You can try it out with just a few checkboxes at first.  Don't forget that the loop mustn't go further than the existing field or you will get an error and the script will stop.  Make sure no error show in the console (ctrl+J).

  • Use of SQL*Loader and Thin Client

    I have a java application that is currently using the thin client. For portability issues, I am unable to use an OCI driver. My application also uses SQL*Loader.
    My big issue is that The Thin client requires the HOST and SID for a connection.
    But, for SQL*Loader to work in a client/server environment it needs to use the SERVICE_NAME and net8. Is there any way to have SQL*Loader use similar information that the thin client is using?
    I know the right solution is to use the OCI drivers, but right now that is not feasible.
    Thanks for any help in advance
    Jeff McNurlan
    Navigation Technologies.

    I assume you are using an ObjectInputStream. Without seeing your code or a snippet I can't be certain...
    The JDBC spec says the following about ObjectInputStream :
    "An ObjectInputStream deserializes primitive data and objects previously written using an ObjectOutputStream"
    Since there was nothing written by ObjectOutputStream, ObjectInputStream has nothing to deserialize and this exception would be raised.

  • When i select the Full Screen option in video streams (like youtube, veoh, anything like that) i can do that 1 time 2nd time the screen goes blank and can only exit it with the Esc button and then i have to restart firefox and again i have my one Full ...

    When i select the "Full Screen" option in video streams (like youtube, veoh, anything like that) i can do that one(1) time second(2nd) time the screen goes blank and can only exit it with the escape(Esc) button and then i have to restart firefox and again i have my one "Full-screen Ticket"

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • HT1363 i have an 8GB ipod touch, it's pretty old now. I've recently tried to reset the whole device as it is being given to someone else and it only comes up with the apple logo and then the screen turns off again. none of the above is helping?

    I've recently tried reseting the whole Ipod and it came up with an on-screen message saying ''are you sure you want to reset the device? it will take up to an hour and no music or pictures will be restored'' so i clicked ''Yes, Rest'' (or what ever it said). I am now sitting here 24 hours later with an ipod that won't turn on.
    i have tried holding the 'power' button down along with the 'home' button for 30 seconds etc.. and nothing is working; it won't show up on Itunes niether the computer. why won't it turn on?

    If you did not try any items listed here, try them
    iOS: Not responding or does not turn on
    I still problem make an appointment at the Genius Bar of an Apple store.

Maybe you are looking for

  • Font Book "not compatible" with 10.9 after upgrade from 10.7

    I upgraded from os x 10.7 to 10.9 on my iMac and now my font book won't open. I keep getting a message that says my version of font book is not compatible with 10.9. Is there a way to reinstall font book?

  • I cant receive replies to group text I sent.

    Suddenly my iphone doesnt receive group replies from a group I have been using for a long time. I can initiate the group text and they receive it, but I dont get the replies everyone else gets. Please help!

  • Sw plugin-container.exe application error on closing Firefox

    The displayed message is - The instruction at "0x0158609c" referenced memory at "0x00000014". The memory could not be "read". Click on OK to terminate the program.

  • DVD data disc song order

    Is it possible to burn a DVD MP3 disc in itunes. Every time I select MP3 disc and insert a DVD it switches to data disc. I then end up with a disc of seemingly randomly organised tracks which is pretty useless when trying to play in my dvd player as

  • I cannot modify the word file

    when i convert a pdf to word i cannot modify anything in the new document. Why?