Recording from line in and built in mic simultaneously?

This might be more iMac hardware specific, but as it would be pertinent to GB I thought I'd ask here.
I'm getting my feet wet with the program, and I have GB setup to record an instrument through the 1/8th jack plugged into the back of my iMac - but I'd also like to record some vocals at the same time through the integrated microphone. I figured that the stereo input was the microphone jack, and the mono inputs were for the integrated mic - but this doesn't seem to be the case.
Can the mac record from both inputs simultaneously? Or do I need to go out and get a USB/Bluetooth/something else mic? It's starting to look like even though they are technically different inputs, only one can be active at a time. As it stands, I'm left swapping between one and the other and recording instrument and vocals on separate takes, which is less than ideal.

I'd seen this posted to a similar question, but either I'm blind or doing something completely wrong. In my midi/audio screen (from GB> Preferences > Audio/Midi) I see no such option. Searched the '08 help for anything remotely close to "aggregate device" provides no topics.
Am I looking in the wrong place? Has this feature been renamed in GB '08?

Similar Messages

  • I can record and hear me recording through the computer's built in mic, but can't get the external mic and headphones to work., The preferences are set for the external mic and headphones...

    I can record and hear me recording through the computer's built in mic, but can't get the external mic and headphones to work., The preferences are set for the external mic and headphones...

    What operating system are you using? Is it on a Mac or a PC? Which preferences are set for external mic/headphones, Audition's or the computers?

  • Recording from line-in without Audacity

    I've got a bunch of vinyls I'd like to start recording to my computer, and it seems that the best way to do it is through Audacity.  But I seem to have the problem where PortMixer isn't included in the version of Audacity that I have, so I can't record from line-in.  I've tried other versions of 1.3.x, but I can't get any of them to compile.  Apparently 1.2.x would work, but it uses OSS and I have ALSA.  So is there any other program that I can use to record from line-in?
    Thanks!

    Thanks, but when I tried that I hit the "Start Recording" button and it just returned to the main menu.  I'm assuming its because I need xmixer installed.  I tried finding it on Google, and apparently xmixer is the same as xmix, but I could only find that on Freshmeat and it seems to be broken (when you run it it just spits out some errors and quits).

  • Newbie asks: "How do I record my voice using my built-in mic?"

    I will admit it - I am the newbie. I cannot for the life of me figure out how to record my voice, using my built-in mic on my laptop (G4). The manual for GarageBand doesn't have a step by step.
    My Track Info does not list "Vocal", as I have seen it listed on Apple tutorials and pdf manuals. Also, I have set my Preferences to "built-in audio" for input and output. I am using version 2.0.2 (50) of Garage Band.
    I am probably just being mentally deficient, but can anyone help me with a step-by-step explanation of how to record my voice?
    iBook G4   Mac OS X (10.4.9)   Complete Novice
    iBook G4   Mac OS X (10.4.9)  

    Hi,
    You can use Windows "Sound Recorder'
    Start Sound Recocrder
    Speak, Sing or may noises
    And stop when finish
    Save file
    To start Sound Recorder
    Windows 7: Click Start > All Programs > Accessories > Sound Recorder
    Windows 8 & 8.1: Hold down Win key then press Q > Type Sound R in Search box
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Delete record from the form and from the database

    hi,
    i want delete record from the form and the database ,but the record is only delete from the from !!!
    this is my code :
    if //condition then
    delete_record;
    commit;
    end if ;
    Any solutions ??
    thnx

    You have unique key field(s) on the table you are trying to insert which actually restricts you from inserting the same value again.
    When you are deleting the record and issue commit there is a record to be inserted in the table which is a duplicate that's why you are getting this unique error.
    As oracle is not able to insert your commit fails and stops your deletion of record from table

  • How to count records from 2 tables and show in RDLC Report

    hi all,
    its being a one day searching for the solution but No Luck.
     I have two SQL tables tblstudetail and tblfeereceiptdetail.
    i just want to count records from both tables and show in RDLC report.
    I tried SQl Query Like This:
    select a.session, a.course,
    Count(CASE a.ADstatus WHEN 'OK' THEN 1 ELSE 0 END ) AS Admission,
    Count(CASE s .I_receiptstatus WHEN 'OK' THEN 1 ELSE 0 END) AS Feeprint
    from
    tblstudetail a
    FULL join
    tblfeereceiptdetail s on s.studentID = a.studentID
    where a.session = '2015' AND s.Fsession = '2015' AND a.adcat = 'Regular'
    GROUP BY a.session,a.course
    ORDER by a.course
    The result Show the Same Value in Both columns
    Session    Course      Admission       FeeDetail
    2015          B.A. I               275              275
    2015          B.A. II              307             307
    2015         B.A. III             255            255
    2015          B.Sc. I             110             110
    2015           B.Sc. II           105            105
    2015          B.Sc. III            64               64
    Actully I want to Count How many ADMISSION have been Taken(FROM tblstudetail) and How many FEE RECEIPT have been Print (From tblfeereceiptdetail).
    please guide me for this as soon as possible.
    thanks in advance...

    I am counting 'OK' in both the table columns I.e 'ADstatus' in tblstudetail and 'feereceiptstatus' in tblfeereceiptdetail
    please suggest me

  • Recording from LINE-IN problem

    Hi at all,
    I have a problem with recording input audio coming from LINE-IN of my pc.
    I looked up on google and on this forum to find something useful but I found nothing. If I try to access line-in I get exception: Line unsupported.
    I found a discovery code to find what I have on my pc:
    ArrayList<Mixer.Info> mixerInfos = new ArrayList<Mixer.Info>(Arrays.asList(AudioSystem.getMixerInfo()));
    Line.Info portInfo = new Line.Info(Port.class);
    for (Mixer.Info mixerInfo: mixerInfos) {
         Mixer mixer = AudioSystem.getMixer(mixerInfo);
         if (mixer.isLineSupported(portInfo)) {
              // found a Port Mixer
              System.out.println("Found mixer: " + mixerInfo.getName());
              System.out.println("\t" + mixerInfo.getDescription());
              System.out.println("Source Line Supported:");
              ArrayList<Line.Info> srcInfos = new ArrayList<Line.Info>(Arrays.asList(mixer.getSourceLineInfo()));
              for (Line.Info srcInfo: srcInfos) {
                   Port.Info pi = (Port.Info) srcInfo;
                   System.out.println("\t" + pi.getName() + ", " + (pi.isSource() ? "source" : "target"));
                   showControls(mixer.getLine(srcInfo));
              } // of for Line.Info
              System.out.println("Target Line Supported:");
              ArrayList<Line.Info> targetInfos = new ArrayList<Line.Info> (Arrays.asList(mixer.getTargetLineInfo()));
              for (Line.Info targetInfo: targetInfos) {
                   Port.Info pi = (Port.Info) targetInfo;
                   System.out.println("\t" + pi.getName() + ", " + (pi.isSource() ? "source" : "target"));
                   showControls(mixer.getLine(targetInfo));
         } // of if
    .....follow the result:
    Found mixer: Port Intel [hw:0]
        HDA Intel, Realtek ALC662 rev1
    Source Line Supported:
         Front Mic Boost, source
              Available controls:
                   Front Mic Boost Control containing Volume, and Balance Controls.
                        Volume with current value: 0.6666667  (range: 0.0 - 1.0)
                        Balance with current value: -2.9802322E-8  (range: -1.0 - 1.0)
         Mic Boost, source
              Available controls:
                   Mic Boost Control containing Volume, and Balance Controls.
                        Volume with current value: 0.6666667  (range: 0.0 - 1.0)
                        Balance with current value: -2.9802322E-8  (range: -1.0 - 1.0)
         Capture, source
              Available controls:
                   Capture Control containing Volume, Balance, and Select Controls.
                        Volume with current value: 1.0  (range: 0.0 - 1.0)
                        Balance with current value: 0.0  (range: -1.0 - 1.0)
                        Select Control with current value: true
         Capture, source
              Available controls:
                   Capture Control containing Volume, Balance, and Select Controls.
                        Volume with current value: 1.0  (range: 0.0 - 1.0)
                        Balance with current value: 0.0  (range: -1.0 - 1.0)
                        Select Control with current value: true
    Target Line Supported:
         Master, target
              Available controls:
                   Master Control containing Volume, and Mute Controls.
                        Volume with current value: 1.0  (range: 0.0 - 1.0)
                        Mute Control with current value: false
         Headphone, target
              Available controls:
                   Headphone Control containing Volume, Balance, and Mute Controls.
                        Volume with current value: 1.0  (range: 0.0 - 1.0)
                        Balance with current value: 0.0  (range: -1.0 - 1.0)
                        Mute Control with current value: false
         PCM, target
              Available controls:
                   PCM Control containing Volume, and Balance Controls.
                        Volume with current value: 1.0  (range: 0.0 - 1.0)
                        Balance with current value: 0.0  (range: -1.0 - 1.0)
         Front, target
              Available controls:
                   Front Control containing Volume, Balance, and Mute Controls.
                        Volume with current value: 1.0  (range: 0.0 - 1.0)
                        Balance with current value: 0.0  (range: -1.0 - 1.0)
                        Mute Control with current value: false
         Front Mic, target
              Available controls:
                   Front Mic Control containing Volume, Balance, and Mute Controls.
                        Volume with current value: 0.61290324  (range: 0.0 - 1.0)
                        Balance with current value: -1.8822519E-8  (range: -1.0 - 1.0)
                        Mute Control with current value: true
         Front Mic Boost, target
              Available controls:
                   Front Mic Boost Control containing Volume, and Balance Controls.
                        Volume with current value: 0.6666667  (range: 0.0 - 1.0)
                        Balance with current value: -2.9802322E-8  (range: -1.0 - 1.0)
         Line, target
              Available controls:
                   Line Control containing Volume, Balance, and Mute Controls.
                        Volume with current value: 0.7096774  (range: 0.0 - 1.0)
                        Balance with current value: 2.9802322E-8  (range: -1.0 - 1.0)
                        Mute Control with current value: false
         Mic, target
              Available controls:
                   Mic Control containing Volume, Balance, and Mute Controls.
                        Volume with current value: 0.7419355  (range: 0.0 - 1.0)
                        Balance with current value: -1.0366025E-8  (range: -1.0 - 1.0)
                        Mute Control with current value: true
         Mic Boost, target
              Available controls:
                   Mic Boost Control containing Volume, and Balance Controls.
                        Volume with current value: 0.6666667  (range: 0.0 - 1.0)
                        Balance with current value: -2.9802322E-8  (range: -1.0 - 1.0)
         Beep, target
              Available controls:
                   Beep Control containing Volume, Balance, and Mute Controls.
                        Volume with current value: 0.0  (range: 0.0 - 1.0)
                        Balance with current value: 0.0  (range: -1.0 - 1.0)
                        Mute Control with current value: trueThis is the class I use for my test:
    import java.io.File;
    import java.io.IOException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import javax.sound.sampled.AudioFileFormat;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.Mixer;
    import javax.sound.sampled.TargetDataLine;
    import org.apache.commons.configuration.ConfigurationException;
    import org.apache.commons.configuration.PropertiesConfiguration;
    import org.apache.log4j.Logger;
    public class LineinRecorder extends Thread {
         /** Logger instance */
         private static Logger log = Logger.getLogger(LineinRecorder.class);
         private TargetDataLine m_line;
         private AudioFileFormat.Type m_targetType;
         private AudioInputStream m_audioInputStream;
         private File m_outputFile;
         private LineinRecorder(TargetDataLine line, AudioFileFormat.Type m_type, File file) {
              m_line = line;
              m_targetType = m_type;
              m_audioInputStream = new AudioInputStream(line);
              m_outputFile = file;
          * Starts the recording. To accomplish this, (i) the line is started and
          * (ii) the thread is started.
         public void start() {
               * Starting the TargetDataLine. It tells the line that we now want to
               * read data from it. If this method isn't called, we won't be able to
               * read data from the line at all.
              m_line.start();
               * Starting the thread. This call results in the method 'run()' (see
               * below) being called. There, the data is actually read from the line.
              super.start();
          * Stops the recording.
          * Note that stopping the thread explicitely is not necessary. Once no more
          * data can be read from the TargetDataLine, no more data be read from our
          * AudioInputStream. And if there is no more data from the AudioInputStream,
          * the method 'AudioSystem.write()' (called in 'run()' returns. Returning
          * from 'AudioSystem.write()' is followed by returning from 'run()', and
          * thus, the thread is terminated automatically.
          * It's not a good idea to call this method just 'stop()' because stop() is
          * a (deprecated) method of the class 'Thread'. And we don't want to
          * override this method.
         public void stopRecording() {
              m_line.stop();
              m_line.close();
          * Main working method. You may be surprised that here, just
          * 'AudioSystem.write()' is called. But internally, it works like this:
          * AudioSystem.write() contains a loop that is trying to read from the
          * passed AudioInputStream. Since we have a special AudioInputStream that
          * gets its data from a TargetDataLine, reading from the AudioInputStream
          * leads to reading from the TargetDataLine. The data read this way is then
          * written to the passed File. Before writing of audio data starts, a header
          * is written according to the desired audio file type. Reading continues
          * untill no more data can be read from the AudioInputStream. In our case,
          * this happens if no more data can be read from the TargetDataLine. This,
          * in turn, happens if the TargetDataLine is stopped or closed (which
          * implies stopping). (Also see the comment above.) Then, the file is closed
          * and 'AudioSystem.write()' returns.
         public void run() {
              try {
                   AudioSystem.write(m_audioInputStream, m_targetType, m_outputFile);
              } catch (IOException e) {
                   e.printStackTrace();
         public static void record() {
               * We have made shure that there is only one command line argument. This
               * is taken as the filename of the soundfile to store to.
              String strFilename = "audios/linein_rec.wav";
              File outputFile = new File(strFilename);
               * For simplicity, the audio data format used for recording is hardcoded
               * here. We use PCM 44.1 kHz, 16 bit signed, stereo.
              AudioFormat audioFormat = new AudioFormat(8000.0F, 16, 1, true, false);
               * Now, we are trying to get a TargetDataLine. The TargetDataLine is
               * used later to read audio data from it. If requesting the line was
               * successful, we are opening it (important!).
              Mixer.Info[] aInfos = AudioSystem.getMixerInfo();
              TargetDataLine targetDataLine = null;
              try {
                            // aInfos[2] is the only supported
                   targetDataLine = AudioSystem.getTargetDataLine(audioFormat,aInfos[2]);
                   targetDataLine.open(audioFormat);
              } catch (LineUnavailableException e) {
                   out("unable to get a recording line");
                   e.printStackTrace();
                   System.exit(1);
               * Now, we are creating an AudioRecorder object. It contains the
               * logic of starting and stopping the recording, reading audio data from
               * the TargetDataLine and writing the data to a file.
              LineinRecorder recorder = new LineinRecorder(targetDataLine, AudioFileFormat.Type.WAVE, outputFile);
               * Here, the recording is actually started.
              recorder.start();
              out("Recording...");
              try {
                   if (p==null) {
                        Thread.sleep(5000);
                   } else {
                        Thread.sleep(p.getLong("registrationTime"));
              } catch (InterruptedException e1) {
                   e1.printStackTrace();
               * Here, the recording is actually stopped.
              recorder.stopRecording();
              out("Recording stopped.");
         private static void out(String strMessage) {
              System.out.println(strMessage);
    }So, when i call LineinRecorder.record() I get :
    java.lang.IllegalArgumentException: Line unsupported: interface TargetDataLine supporting format PCM_SIGNED 8000.0 Hz, 16 bit, mono, 2 bytes/frame, little-endian
         at com.sun.media.sound.PortMixer.getLine(PortMixer.java:120)
         at javax.sound.sampled.AudioSystem.getTargetDataLine(AudioSystem.java:731)
         at capture.LineinRecorder.record(LineinRecorder.java:149)
         at entrypoint.MainEntry.main(MainEntry.java:73)I don't understand why ? I don't know if I must specify explicitly     the line port but I don't know how to build TargetDataLine object.
    Please help me I'm in trouble.
    Any help is granted.
    Regards,
    edcruise.

    Thanks for the reply..
    I read the article and followed the example...but, I get:
    java.lang.IllegalArgumentException: No line matching interface TargetDataLine supporting format PCM_SIGNED 44100.0 Hz, 16 bit, stereo, 4 bytes/frame, little-endian is supported.
         at javax.sound.sampled.AudioSystem.getLine(AudioSystem.java:459)
         at entrypoint.MainEntry.main(MainEntry.java:133)Is there a way to list all available audio formats ? I wonder that does not exist a simple method to get them.
    Follow my code taken from above example:
                   File outputFile = new File("audios/linein-rec.wav");
                   AudioFormat recordingFormat = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, 44100.0F, 16, 2, 4, 44100.0F,
                             false);
                   DataLine.Info info = new DataLine.Info(TargetDataLine.class,
                             recordingFormat);
                   TargetDataLine recordLine = null;
                   try {
                        recordLine = (TargetDataLine) AudioSystem.getLine(info);
                        recordLine.open(recordingFormat);
                   } catch (LineUnavailableException e) {
                        System.out.println("unable to get a recording line");
                        e.printStackTrace();
                        System.exit(1);
                   adjustRecordingVolume();
                   AudioFileFormat.Type fileType = AudioFileFormat.Type.WAVE;
                   KokRecorder recorder = new KokRecorder(recordLine, fileType, outputFile);
                   recorder.start();
                   System.out.println("Recording...");
                   try {
                        Thread.sleep(5000);
                   } catch (InterruptedException e1) {
                        e1.printStackTrace();
                   recorder.stopRecording();
                   System.out.println("Recording stopped.");
         public static void adjustRecordingVolume() throws Exception {
              Port.Info recPortInfo = new Port.Info(Port.class, "Capture", true);
              Port recPort = (Port) AudioSystem.getLine(recPortInfo);
              setRecControlValue(recPort);
         private static void setRecControlValue(Port inPort) throws Exception {
              inPort.open();
              Control[] controls = inPort.getControls();
              for (int i = 0; i < controls.length; i++) {
                   if (controls[i] instanceof CompoundControl) {
                        Control[] members = ((CompoundControl) controls).getMemberControls();
                        for (int j = 0; j < members.length; j++) {
                             setCtrl(members[j]);
                        } // for int j
                   } // if
                   else
                        setCtrl(controls[i]);
              } // for i
              inPort.close();
         private static void setCtrl(Control ctl) {
              if(ctl.getType().toString().equals("Select")) {
                   ((BooleanControl)ctl).setValue(true);
              if(ctl.getType().toString().equals("Volume")) {
                   FloatControl vol = (FloatControl) ctl;
                   float setVal = vol.getMinimum() + (vol.getMaximum() - vol.getMinimum()) * 0.8f;
                   vol.setValue(setVal);
    Thanks in advance.
    Regards,
    edcruise.

  • Problem recording from Line-in (Audio Control Pod)... NOT THE TIPICAL OBVIOUS PROBLEM (I think X

    Hi guys!!
    I have a little problem and i have think you could help me...
    I'm trying to connect my electric guitar to my Audigy 2 ZS... My problem is that i connect the AMPLIFIED output of my guitar to Line-In in Audio Control Pod of my T7700 speakers... I Can hear the what i'm playing from my speakers but I can't record anything... I check all the obviuos things, like I have selected Analog Mixer (Line/CD/TAD/...) from Surround Mixer Tab drivers (Rec tab) and in Control Panel of Windows too. What am i doing bad?...
    Thank you for your help!

    May have already been answered, but, hey, what the heck, I've got free time:
    Allow me to clarify. Plug your guitar into the Line-In on your <EM>sound card</EM>. Plugging it into your speakers only uses your speakers as an amp.
    Then, in Creative Recorder select Line-In as the source.
    Speakers, unless they're plugged into the mic jack on your sound card (which they shouldn't be), do not transmit data back to the PC.
    EDIT: Line-in is this thingie (( )) with an arrow pointing inside.Message Edited by ghostrecon09 on 02-22-2005 05:4 AM

  • Recording using line 2 and line 3 xfi

    i have asked the tech for help on this but didnt come up with anything,
    is there a solution to this or has anyone managed it's
    im trying to record from 2 devices (micraphone and
    ?guitar) at the same time but i would like to record these onto 2
    seperate channels using eg Reason or Abelton li've,
    the only way i can see doing this is if i can plug into line
    and line 2 and record from both similtaniously, is it possible to
    ?activate line and line 2 at the same time?

    I don't know X-Fi cards but supposed you need to work on Audio Creation Mode + ASIO driver mode. On your recording software, check what input ports are available, enable those ports you need (normally through <software> options audio ... ) and select each port for tracks properly.
    Remember that instrument/vocal is 'normally' recorded as mono source -> you don't necessarily need more than one stereo input channel for this task (if you have pre-amp for mic/both) or one mic input + one mono channel (from stereo input).
    jutapa

  • Need help on filtering out one record from a report and open in new page

    Hi I am new and embarrassed to write in the forum asking silly questions. Thing is I am learning all from scratch without help from anyone. I have created a database (have previous knowledge only from Access) and have managed to create a beautiful report from a search filter. This report lines up several records matching what I needed. Now, I want to make the whole report with hyperlinks to a detailed page on each of the records in the report. I have tried using the feature where one can make one column hyperlinked and redirect to a new page, where I am getting all the records again - instead of only getting the record I am clicking on. I have looked and looked in the forums without finding solution and I have tested and tried various methods without luck. I am suspecting that I need some sort of knowledge on how to write a select query with where conditions that can apply to filtering out a record from one report to get another detailed on only one object (i.e. record). :/ Stupid or what?

    Hrefna.
    What you need to look into is two things:
    1) The link you defined, needs to set additional attributes for the target page. In the "Column Link" box, you have set the link to "Page in this Application" and followed by the page number (let's say, Page 10). Below that, you should set an Item to an item on you target page (let's call that P10_PRODUCT_ID). This item should be the primary key of your detail table (on the targe page). You can select this item from the popup list. The Value of the item should be picked from a popup list as well, being the value from the record you clicked on. This should then transfer your selected item to your page. The URL will then have something like P10_PRODUCT_ID:5 at the end.
    2) On the target page, 10, you must change the query slightly, so that it adds a WHERE clause:
    WHERE PRODUCT_ID = :P10_PRODUCT_ID
    Now, you should be set.
    Hope this helps.
    Borkur

  • Just open new Lenovo S10 from RadioShack...built-in mic help please....

    Hello . I'm Ricardo & today I just opened up my new Lenovo S10 I bought from RadioShack. How ever, I have been having trouble with the built in mic. It is only hearing on very low levels. I tried doing what was done in another forum post here, but to no avail. So, now I'm stuck & need some help. Please. Thank you. God bless :smileyhappy .

    Hi and welcome...
    in sound volume mixer there is a point advanced setting ...set a hook at microphone boost ... 
    sincerely KalvinKlein
    Thinkies 2x X200s/X301 8GB 256GB SSD @ Win 7 64
    Ideas Centre A520 ,Yoga 2 256GB SSD,Yoga 2 tablet @ Win 8.1

  • Can't record from Line-In because the signal is too strong

    This is happening with a just bought h9-1150 desktop system.
    Intel Core i5-3550 CPU
    IDT High Def audio codec
    NVIDIA High Def Audio
    I've been trying to record from a turntable into Line-In. No matter how low I set the recording levels, the signal is too hot, resulting in overdriven, distorted audio.
    Doesn't seem to matter whether Beats is turned on or off.
    Any help would be appreciated.

    You will need to attenuate the signal or you will damage the audio input of your motherboard. You can either find a circuit online to make a converter or buy one. Here is a web document with more information on the subject.
    Best regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Select records from one database and insert it into another database

    Hi
    I need to write a statement to select records from one database which is on machine 1 and insert these records on a table in another database which is on machine 2. Following is what I did:
    1. I created the following script on machine 2
    sqlplus remedy_intf/test@sptd @load_hrdata.sql
    2. I created the following sql statements in file called load_hrdata.sql:
    rem This script will perform the following steps
    rem 1. Delete previous HR data/table to start w/ clean import tables
    rem 2. Create database link to HR database, and
    rem 3. Create User Data import table taking info from HR
    rem 4. Drop HRP link before exiting
    SET COPYCOMMIT 100
    delete from remedy.remedy_feed;
    commit;
    COPY FROM nav/donnelley@hrp -
    INSERT INTO remedy.remedy_feed -
    (EMPLID, FIRST_NAME, MI, LAST_NAME, BUSINESS_TITLE, WORK_PHONE, -
    RRD_INTRNT_EMAIL, LOCATION, RRD_OFFICE_MAIL, RRD_BUS_UNIT_DESCR) -
    USING SELECT EMPLID, FIRST_NAME, MI, LAST_NAME, BUSINESS_TITLE, WORK_PHONE, -
    RRD_INTRNT_EMAIL, LOCATION, RRD_OFFICE_MAIL, RRD_BUS_UNIT_DESCR -
    FROM ps_rrd_intf_medium -
    where empl_status IN ('A', 'L', 'P', 'S', 'X')
    COMMIT;
    EXIT;
    However, whenever I run the statement I keep getting the following error:
    SP2-0498: missing parenthetical column list or USING keyword
    Do you have any suggestions on how I can fix this or what am I doing wrong?
    Thanks
    Ali

    This doesn't seem to relate to Adobe Reader. Please let us know the product you are using so we may redirect you or refer to the list of forums at http://forums.adobe.com/

  • How to record from line in?

    I followed the procedure to change Apple preferences to line in and set the input volume setting. Also adjusted the Garage Band input setting. But how do you start Garage Band to start recording? After creating a new track I'm lost.

    But how do you start Garage Band to start recording? After creating a new track I'm lost.
    Select the track you want to record into, then press the red "Record" button.
    You may also want to set the Metronome and count in features in the "Control" menu:

  • Recording from line in

    I want to transfer audio from a cassette player into Audition.  In Audio Hardware Setup - Edit View, "Release ASIO Driver in Background" is checked.  Under Edit View Ports, it shows Default Input as "[01M] Line In (High Definition... - 1."  When I hit record in Audition (while playing the tape, which I can hear) it records nothing.  I would appreciate ANY help on this.  I'm not a technical wiz, so please try to dumb it down for me.  Thanks!

    I assume you are using Audition 3, not an earlier version. You need to tell us which operating system your machine is using and whether you have installed anything like asio4all.
    If you are on Audition 3 and Windows 7, and your machine has a jack labelled LIne In (I have come across a machine recently with a Line In option in Windows, but no actual input!), you should select Audition Windows Sound as the input in the Edit->Audio Hardware Setup in Auditioon, then via the Control Panel button check the DirectSound input port is selected..
    After this it should just be a matter of setting the recording options correctly in Windows Control Panel, Manage Audio Devices. You should plug something in to the Line Input. This ensures that "Jack Sensing" in the OS isn't disabling something, then via the Recording Tab, ensure that Line in is enabled and selected as the default.
    Let us know if this helps.
    PS Release asio driver in background should be unchecked, but I don't think it will affect this.

Maybe you are looking for

  • DVI KVM switch to use with iMac and Cinema Display

    I currently have a 20" iMac that I use with a 20" Cinema Display. I'd like to share the Cinema display between the iMac and a Dell computer. Assuming this can be done, are there any recommendations for a DVI-KVM switch? Most important is no loss in v

  • I can hear caller but they cant hear me

    Hi When I receive a call on my iphone 4s i can hear the caller but they cant hear me. When I call the caller back there are no problems.

  • Oracle 11g: How to ensure the same transaction across several BPEL calls?

    How to ensure transaction semantics across invocations of several BPEL services with a Database operations (Insert, update)? We are using transaction REQUIRED property in all of our BPELs. We are using webserive and JCA to access and modify the same

  • Approver for a PO

    Hi All, My requirement is to develop a report which will display the approver (who has approved) the PO. The report also shows the time on which the approver has approved the PO. Are there any tables which stores these details for a PO. Thanks in adv

  • I look for a "java client IRC applet"

    Hello every body and good hollydays! For long time, I looked for a open source java "client irc" applet. I have found one, but it does' n run! (it needs to be signed and unfortunatly I don't doing it !). Briefly i need links about all this subject. A