Using mathscript formula to create test sound question tia sal22

Greetings All
I'm trying to use mathscript formula to create an audio file and I'm not sure why my vi is not working.  It says the data type has to be string but the graph just shows a blank line
TIA
sal22
Attachments:
mathscript formula to sound test.vi ‏274 KB

Building a waveform from a formula requires special syntax.  The mathscript node is trying to output a 1-D array.  Rather than trying to fold your formula into something the waveform generator can understand, I recommend just building the waveform directly.
I tested it, and did not get the straight line.  Dunno if the sound is working properly, as I do not have a soundcard.
Message Edited by jasonhill on 06-16-2006 11:45 AM
Attachments:
mathscript to waveform.PNG ‏13 KB

Similar Messages

  • How can I improve quality of sound signal tia sal22

    Greetings All
    I have a VI that plays an audio signal out of an audio card but the quality isn't that great in real time when I modify it.  I can create the audio signal in mathematica 6 and it sounds great but labview has some issues can anyone recommend a way to improve the way the qualtiy of the audio signal sounds...Do I need to increase buffers or memory allocation to labview if so how can I do that.
    tia sal22
    PS I'm using labview 8.2 does 8.5 fix this problem?
    Solved!
    Go to Solution.
    Attachments:
    mathscript formula to sound test test vmr.vi ‏680 KB

    I'm creating different audio sounds using equations using mathscript.  The generate sound.vi is what I used along with mathscript.  Every once in awhile I can here a drop out... (I have good ears :-) I'm just trying to find out a way to increase the buffers or memory to labview to prevent drop outs from occuring from the sound card.
    The equation is below
     0.61887-0.680232 *cos(6.28319 *t)+2.96293 *cos(12.5664 *t)-0.532024 *cos(18.8496 *t)-0.87105 *cos(25.1327 *t)-0.708467 *cos(31.4159 *t)-0.510603 *cos(37.6991 *t)-0.236222 *cos(43.9823 *t)-0.112403 *cos(50.2655 *t)-0.0682778 *cos(56.5487 *t)-0.0317201 *cos(62.8319 *t)-0.00399665 *cos(69.115 *t)+0.0110171 *cos(75.3982 *t)+0.0150056 *cos(81.6814 *t)+0.0156793 *cos(87.9646 *t)+0.0122262 *cos(94.2478 *t)+0.00657111 *cos(100.531 *t)+0.00432201 *cos(106.814*t)+0.00341808 *cos(113.097 *t)+0.00370543 *cos(119.381 *t)+0.00333083 *cos(125.664 *t)+0.00210063 *cos(131.947 *t)+0.00505182 *cos(138.23 *t)+0.00866377 *cos(144.513 *t)+0.0110508 *cos(150.796 *t)+0.0103873 *cos(157.08*t)+0.00850073 *cos(163.363 *t)+0.00811838 *cos(169.646 *t)+0.00689916 *cos(175.929 *t)+0.0069005 *cos(182.212 *t)+0.00596679 *cos(188.496*t)+0.00358397 *cos(194.779 *t)+2.25013 *sin(6.28319 *t)-4.51511*sin(12.5664 *t)+0.380184 *sin(18.8496 *t)+0.461366 *sin(25.1327*t)+0.0632479 *sin(31.4159 *t)-0.135095 *sin(37.6991 *t)-0.160692*sin(43.9823 *t)-0.131694 *sin(50.2655 *t)-0.118779 *sin(56.5487*t)-0.0966167 *sin(62.8319 *t)-0.0797548 *sin(69.115 *t)-0.0599806*sin(75.3982 *t)-0.0380326 *sin(81.6814 *t)-0.0247422 *sin(87.9646*t)-0.0141664 *sin(94.2478 *t)-0.0078713 *sin(100.531 *t)-0.0060369*sin(106.814 *t)-0.0062354 *sin(113.097 *t)-0.00650479 *sin(119.381*t)-0.00560183 *sin(125.664 *t)-0.00806245 *sin(131.947 *t)-0.00982397*sin(138.23 *t)-0.00853789 *sin(144.513 *t)-0.00582364 *sin(150.796*t)-0.00249366 *sin(157.08 *t)-0.00125506 *sin(163.363 *t)-0.0000310571*sin(169.646 *t)+0.000971067 *sin(175.929 *t)+0.00160663 *sin(182.212*t)+0.00321022 *sin(188.496 *t)+0.00388205 *sin(194.779 *t)
    tia sal22

  • Create test scripts using e-Tester without using visual scripts

    I'm new researching on e-Test suite.
    I have the following question. Is there any possibility to create test scripts to run automatic tests without using the visual scripts created by e-Tester?
    Today, we are using Selenium to make Web based tests and this tool is included in a custom framework developed in Java. So, we don't use record and play. Directly we create code using objects, methods and attributes provided by Selenium api.

    You can create a dummy java agent script that can that call your module. The java agent script can then be automated to run in e-Load.
    1) e-tester menu ->options->New Scripts (global) -> Advanced -> Java Agent: Check on "Create Java Agent Script.." and the other 2 check boxes.
    2) menu -> File -> New Script
    3) Do Nothing. No navigations, ect...
    4) menu -> File -> Save Script i.e. "empty"
    5) Download and install Eclipse IDE (other IDEs should work but you need to create your own project)
    6) Eclipse -> Menu -> File -> Import -> General -> Existing Project into workspace: Select the root directory that contains the etester generated Java Agent script prefixed with the underscore "_" i.e c:\ETS\etest\Default!\_empty
    7) Once imported I suggest you call your module from within scriptCallback.class EndScript(RunState, ScriptResult);
    7b) When you get better at this you can return errors by changing the ScriptResult() object and view stats from the RunState() object.
    8) You will have to modify the Eclipse Project to be dependent on your jars if you want to debug in eclipse. Secondly there are 2 batch files. These two batch files create the *.JWG file which is just a renamed .JAR file.
    9) You MUST modify the batch files to create the new Empty.JWG including your *.JAR files.
    10) I recommend compiling in eclispe and only running the makefileNocompile.bat (after you add the *.jar inclusion). Ignore the makefile.bat unless you also change the javac.exe execution line to include all the correct classpaths.
    11) Once you are happy with running in Eclipse you should be able to execute in eload. I recommend you test the procedures steps 5 through 10 before adding your own module and code.

  • How to Create Test Sequence Document in HTML using command line

    How to Create Test Sequence Document  in HTML using command line
    I have lot of sequences and I want to create Test Sequence Documentation in HTML format using Command Line automatically, is there a way to automate this task using .bat file or using   C#  .Net

    If you aren't able to figure out how to call a C++ DLL in .net then there may be another option.  Unfortunately I don't know how to do this off the top of my head and I don't have an example.
    The other option would be to change docgen.seq a little bit to the dialog doesn't display and you just hardcode the options.  Then you can use a command line to call testexec.exe: http://zone.ni.com/reference/en-XX/help/370052K-01/tsfundamentals/infotopics/startup_opt/
    Hope this helps,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Why does the App store ask if I want to create three security questions when, in fact, I am required to create three security questions to use the App store?

    This is sooooo lame. I'm given the choice of "Not Now" when asked if I want to create three security questions, but clicking "not now" logs me out rather than letting me download the app I came for. Is this sort of poor design typical for Apple?

    Then why doesn't Apple simply say:
    "To download the app you must first create three security questions and answers. Do you wish to create the questions now so that you may then download the app?"
    As written, the text implies that I could download the app without creating the questions first. Good design calls for a clear and direct statement that an act is mandatory when it is mandatory.
    Best
    Jim

  • Using mathscript to generate multiple digital outputs for switch control

    Hello 
    I am new to this NI LV and a have kind of a basic question. I would like to use Mathscript to generate an array of bolean numbers which will be used to control the Digital I/O lines. I am using NI 6251 USB device and the Mathscript code runs well. But I have a problem using this array to control the Digital output. So I created a simple test programme where I set the DAQ assitant to generate 4 digital outputs(P0.0 ~ P0.3) and it gives error that  ".. number of channels in the data does not match the number of channels in the task..." (see attachment) . How can I solve this problem thank you.
    Attachments:
    K-9.jpg ‏36 KB

    looks like you did not initialize all 4 of the elements in the bool array....

  • Very good surround sound question

    Some of my instruments I use are in stereo, of course. But when mixing in surround sound, all those different speakers used are actually just outputting mono sounds, which I guess if sounds are placed properly it woud make the sound in stereo, maybe. My question is i this. Say you have a lead vocal on one track and a track with either background vocals or maybe a stereo piano. While panning in surround sound, you pan the lead vocals to the center. You pan the other track to the center, but behind the lead vocals so that it appears that the lead vocals are in front. Since surround sound mixing seems to be the art of playing sounds in positions to be picked up by different mono speakers, will the backgrounds vocals actually seem to be wider than the lead vocals or not? I can not analyze the stereo spread of the background vocals. While i was panning my background vocals and stereo piano in the stereo field, the only thing I have to analyze the stereo image was the Waves PAZ positioner plug-in and the Logic Multimeter plug-in using the Goniometer window. When I move the sound around in the surround sound paning box, there is no change in graphic representavie in either of those two plug-ins. So my guess is that eventhough my back ground vocals and pianos have a much wider stereo field then by lead vocals, I'm guessing that I'm not going to here the wider representaive. Is there a way to analyze surround sound graphically like we do stereo, or am I going to have to split my stereo sound into two mono sounds and pan them wide in the surround sound field. If you don't the answer, write back and say, "I don't know, that's a good one" If you do know, then write back.

    jdubz101 wrote:
    "So my guess is that eventhough my back ground vocals and pianos have a much wider stereo field then by lead vocals, I'm guessing that I'm not going to here the wider representaive. Is there a way to analyze surround sound graphically like we do stereo, or am I going to have to split my stereo sound into two mono sounds and pan them wide in the surround sound field."
    That's certainly one technique you could use if you wanted to preserve the front stereo field only, or if you wanted to move the stereo field to a different angle. When you assign a stereo track to Surround, panned dead center, it feeds the front pair and rear pair equally. But left is still left and right is still right. Unfortunately, when you pan left or right, it's really more of a balance control. As you pan left, the right channel attenuates until it's completely gone when you pan hard left.
    Normally, a stereo instrument wouldn't get panned, other than forward or back. Moving a stereo instrument angle left or right by using 2 mono files does work, but wouldn't translate well when downmixed to stereo. Fine for "surround exclusive" recordings. Watch your center channel feed. Any stereo instrument panned hard front will be mixed to mono on the center channel.
    If you create audio objects for your outputs in the environment, you can easily see what's going on. Especially if you use a test stereo file with one channel blank.
    Regards, Randall

  • Why does iTunes/iPhone 4S insist it can't find a song on my PC or my phone when it is on both? This is resulting in me being unable to use the ringtones I created from these songs, but I can still play the songs.

    OK, so I'm clearly a newb. I thought if I asked a question, it would post, and now I'm being told to post a comment, so I'm asking the same question again. Sorry I sound like an idiot. I'm new to this apple/mac stuff.
    Why does iTunes/iPhone 4S insist it can't find a song on my PC or my phone when it is on both? This is resulting in me being unable to use the ringtones I created from these songs, but I can still play the songs.

    If you have added the ringtone file correctly to iTunes, it will appear under iTunes 'Tones' library.
    If you don't find Tones library in iTunes, go to iTunes menu EDIT/PRFERENCES under GENERAL tab, check the Tones Box under Library source to display Tones library in iTunes.
    iTunes accepts only m4r file as ringtone and has to be less than 40secs.

  • Creating a sound from an array of numeric values and playing it on speakers

    How do I create take a sound I have stored as an array (or could be an arraylist if needed) of numeric values (at the moment as doubles) whiten my program and output it to speakers? I am using blueJ.
    for example (0, 0.1, 0.4, 0.8, 0.9, 1, 0.8, 0.6, 0.3, 0.1, etc...) would be a very high frequency sin wave.
    Edited by: alan2here on Feb 6, 2008 11:28 AM

    I stumbled upon this thread with a question somewhat related:
    I've recorded a wave file from microphone. But what I would like is an array of numbers in the same way alan said. I'm also working on my own project involving signal processing (i'm trying to do speech recognition).
    I can't really find a nice way of getting that array of numbers. I've tried to find out how wave file stores it's data, and directly read from the File object, but i figured there should be an easier way...
    I used this code to read the sound:
    *     SimpleAudioRecorder.java
    *     This file is part of jsresources.org
    * Copyright (c) 1999 - 2003 by Matthias Pfisterer
    * All rights reserved.
    * Redistribution and use in source and binary forms, with or without
    * modification, are permitted provided that the following conditions
    * are met:
    * - Redistributions of source code must retain the above copyright notice,
    *   this list of conditions and the following disclaimer.
    * - Redistributions in binary form must reproduce the above copyright
    *   notice, this list of conditions and the following disclaimer in the
    *   documentation and/or other materials provided with the distribution.
    |<---            this code is formatted to fit into 80 columns             --->|
    import java.io.IOException;
    import java.io.File;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.TargetDataLine;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.AudioFileFormat;
    public class SimpleAudioRecorder
    extends Thread
         private TargetDataLine          m_line;
         private AudioFileFormat.Type     m_targetType;
         private AudioInputStream     m_audioInputStream;
         private File               m_outputFile;
         public SimpleAudioRecorder(TargetDataLine line,
                             AudioFileFormat.Type targetType,
                             File file)
              m_line = line;
              m_audioInputStream = new AudioInputStream(line);
              m_targetType = targetType;
              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 main(String[] args)
              if (args.length != 1 || args[0].equals("-h"))
                   printUsageAndExit();
              /* 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 = args[0];
              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(
                   AudioFormat.Encoding.PCM_SIGNED,
                   44100.0F, 16, 2, 4, 44100.0F, 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!).
              DataLine.Info     info = new DataLine.Info(TargetDataLine.class, audioFormat);
              TargetDataLine     targetDataLine = null;
              try
                   targetDataLine = (TargetDataLine) AudioSystem.getLine(info);
                   targetDataLine.open(audioFormat);
              catch (LineUnavailableException e)
                   out("unable to get a recording line");
                   e.printStackTrace();
                   System.exit(1);
              /* Again for simplicity, we've hardcoded the audio file
                 type, too.
              AudioFileFormat.Type     targetType = AudioFileFormat.Type.WAVE;
              /* Now, we are creating an SimpleAudioRecorder object. It
                 contains the logic of starting and stopping the
                 recording, reading audio data from the TargetDataLine
                 and writing the data to a file.
              SimpleAudioRecorder     recorder = new SimpleAudioRecorder(
                   targetDataLine,
                   targetType,
                   outputFile);
              /* We are waiting for the user to press ENTER to
                 start the recording. (You might find it
                 inconvenient if recording starts immediately.)
              out("Press ENTER to start the recording.");
              try
                   System.in.read();
              catch (IOException e)
                   e.printStackTrace();
              /* Here, the recording is actually started.
              recorder.start();
              out("Recording...");
              /* And now, we are waiting again for the user to press ENTER,
                 this time to signal that the recording should be stopped.
              out("Press ENTER to stop the recording.");
              try
                   System.in.read();
              catch (IOException e)
                   e.printStackTrace();
              /* Here, the recording is actually stopped.
              recorder.stopRecording();
              out("Recording stopped.");
         private static void printUsageAndExit()
              out("SimpleAudioRecorder: usage:");
              out("\tjava SimpleAudioRecorder -h");
              out("\tjava SimpleAudioRecorder <audiofile>");
              System.exit(0);
         private static void out(String strMessage)
              System.out.println(strMessage);
    }Daniel

  • After Creating a RecordSet using Wizard, Unable to Create RecordSet Paging - Error Occurs

    I created a record set using the wizard and it tested just fine using the test button.  So my next step was to create the "RecordSet Paging" "Move to First Record", whe I select this I get the error "Before using this Server Behavior, please create a record set"
    The record set is there, it is even checked off in the binding list as being there, yet I can not do anything, I even went in and deleted it and tried again with the same result, this is getting very annoying and is causing me a lot of extra work.
    Is this a BUG!!!
    I have seen this issue several times now.
    Running Version 11.0 build 4993
    Signed
    Frustrated!!!!!

    Hi,
    For questions regarding dynamic site development,  hop over to the following forum.  You'll get better answers there.
    Dreamweaver Application Development Forum
    http://forums.adobe.com/community/dreamweaver/dreamweaver_development?view=discussions
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Creating test data for a problem

    Hi,
    I've been using this forum for a few months and it has been extremely useful. The problem is that I actually have no idea how to create test data for a specific problem. I've tried googling but to no avail. I have had other users create test data for some of my problems using a 'WITH' statement but it would be great if someone could explain the logic behind it and how to approach a specific problem where in the query I use multiple tables.
    I know it's probably a stupid question and I'm relatively new to sql but it would help a lot if I understood the process.
    Banner:
    Oracle Database 11g Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE 11.2.0.2.0 Production"
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production

    Look at the point 3 and 4. You can also follow other points too.
    Please consider the following when you post a question. This would help us help you better
    1. New features keep coming in every oracle version so please provide Your Oracle DB Version to get the best possible answer.
    You can use the following query and do a copy past of the output.
    select * from v$version 2. This forum has a very good Search Feature. Please use that before posting your question. Because for most of the questions
    that are asked the answer is already there.
    3. We dont know your DB structure or How your Data is. So you need to let us know. The best way would be to give some sample data like this.
    I have the following table called sales
    with sales
    as
          select 1 sales_id, 1 prod_id, 1001 inv_num, 120 qty from dual
          union all
          select 2 sales_id, 1 prod_id, 1002 inv_num, 25 qty from dual
    select *
      from sales 4. Rather than telling what you want in words its more easier when you give your expected output.
    For example in the above sales table, I want to know the total quantity and number of invoice for each product.
    The output should look like this
    Prod_id   sum_qty   count_inv
    1         145       2 5. When ever you get an error message post the entire error message. With the Error Number, The message and the Line number.
    6. Next thing is a very important thing to remember. Please post only well formatted code. Unformatted code is very hard to read.
    Your code format gets lost when you post it in the Oracle Forum. So in order to preserve it you need to
    use the {noformat}{noformat} tags.
    The usage of the tag is like this.
    <place your code here>\
    7. If you are posting a *Performance Related Question*. Please read
       {thread:id=501834} and {thread:id=863295}.
       Following those guide will be very helpful.
    8. Please keep in mind that this is a public forum. Here No question is URGENT.
       So use of words like *URGENT* or *ASAP* (As Soon As Possible) are considered to be rude.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Create test env from production system

    Hi,
    Please sorry,
    I am new in this area of Oracle Applications 11.5.10 and I need help in couple of questions.
    We have production system with Oracle Applications 11.5.10, APPS tier on 32bit Red Hat Linux EE 4 server, and 10.2.0.3 DB tier on 64bit Red Hat Linux EE 4 server.
    We get the 2 new servers for test Oracle Applications 11.5.10 environment with same versions of OS like production.
    First test 32bit for APPS,
    Second test 64bit for DB tier.
    Now we need to create test environment, same like production.
    Questions>
    1) What is the best way to create same env in this situation (32bit app tier, 64bit database tier). I suppose that cloning using rapid clone procedure isn't possible on this clear machines.
    2) If I need to install Oracle Applications 11.5.10 software first on both machines, is it possible to use 32bit rapidwiz installer (existing in stage) to create test db tier on this 64bit node, or not.
    I have read in the document Oracle Applications 11.5.10 - Installation Update Notes for Linux x86
    You can only install Oracle Applications on an x86-64 architecture server if the operating system is 32-bit Linux or Windows. If your operating system is 64-bit, contact your operating system vendor to obtain a 32-bit operating system before installing Oracle Applications.
    3) How to now from which stage production is created. When I try to create the stage for my test environment using perl command perl /mnt/cdrom/Disk1/rapidwiz/adautostg.pl
    I get these options:
    1 - to choose Oracle Applications
    2 - to choose Oracle Applications with NLS
    3 - to choose Oracle Database technology stack (RDBMS)
    4 - to choose Oracle Applications database (Databases)
    5 - to choose Oracle Applications technology stack (Tools)
    6 - to choose APPL_TOP
    7 - to choose National Language Support (NLS) Languages
    Because I haven't seen directory oraNLS is this 1 good choose for stage.
    Thanks, and sorry because I am new in this area.
    Regards
    Edited by: user12009428 on Sep 30, 2010 12:12 PM

    Hi,
    1) What is the best way to create same env in this situation (32bit app tier, 64bit database tier). I suppose that cloning using rapid clone procedure isn't possible on this clear machines. Use Rapid Clone.
    Rapid Clone Documentation Resources, Release 11i and 12 [ID 799735.1]
    FAQ: Cloning Oracle Applications Release 11i [ID 216664.1]
    2) If I need to install Oracle Applications 11.5.10 software first on both machines, is it possible to use 32bit rapidwiz installer (existing in stage) to create test db tier on this 64bit node, or not.Type "linux32 bash" -- See this thread for details.
    How to install 11i on Red Hat Linux 64 bit
    Re: How to install 11i on Red Hat Linux 64 bit
    You can only install Oracle Applications on an x86-64 architecture server if the operating system is 32-bit Linux or Windows. If your operating system is 64-bit, contact your operating system vendor to obtain a 32-bit operating system before installing Oracle Applications. What is the database version?
    To migrate the database from 32-bit to 64-bit you need to follow the steps in these docs (depends on your version).
    Using Oracle Applications with a Split Configuration Database Tier on Oracle 9i Release 2 [ID 304489.1]
    Using Oracle Applications with a Split Configuration Database Tier on Oracle 10g Release 2 [ID 369693.1]
    Using Oracle EBS with a Split Configuration Database Tier on 11gR2 [ID 946413.1]
    3) How to now from which stage production is created. When I try to create the stage for my test environment using perl command perl /mnt/cdrom/Disk1/rapidwiz/adautostg.pl
    I get these options:
    1 - to choose Oracle Applications
    2 - to choose Oracle Applications with NLS
    3 - to choose Oracle Database technology stack (RDBMS)
    4 - to choose Oracle Applications database (Databases)
    5 - to choose Oracle Applications technology stack (Tools)
    6 - to choose APPL_TOP
    7 - to choose National Language Support (NLS) Languages
    Because I haven't seen directory oraNLS is this 1 good choose for stage.oraNLS is only required when you want to install additional languages in addition the base English one. If you have no installed languages you can skip this one.
    Please run md5sum as per (MD5 Checksums for 11i10.2 Rapid Install Media [ID 316843.1]) to verify the integrity of the stage area directory before you run Rapid Install.
    Thanks,
    Hussein

  • Newbie: Howto create test env by cloning prod?

    Hello Forum...
    I've posted a similar question to metalink but I don't think there's much activity there, so do excuse me if I bother you guys too.
    I've inherited an Oracle Lite server and application that is used in some of the world's most remote regions. I can't touch the production server, and so I want to recreate the entire environment (mobile server, repository, application schema, etc) in a separate test environment.
    Has anyone done this - created a copy of a running production system for testing? What gotchyas should I be looking out for? I'm particularly nervous about getting the new server to use a copy of an already established repository.
    thanks for any suggestions.
    /j-p.

    Hello Gary...
    Many thanks once again for your advice.
    Before you replied, I had in the meantime asked the DBA to create test schema for 1) the application data and 2) the mobile repository, and to import the data from prod. The installation (not a standalone mobile server, but on an OAS installation) went without any problem however I noticed when I started up the enterprise manager for the OAS that there were two mobile server instances - for prod and test. Access to prod was refused, so that was ok. However the MGP of test didn't run on the test mobile server, but on the prod instance. I figured this might be a show stopper. Incidentally, I was able to pack the application with wtgpack, and deploy it successfully.
    I then decided to follow your instructions (to try to understand a little more the architecture). As the installation to test would always find a repository (despite me renaming the schema to mobileadmintest), I had to delete the test repository schema in the end. I then ran an install to a previously-created empty mobileadmin schema which completed ok but there was no mention of the enterprise application data schema in the installation procedure, so I was quite confused as to how this could work.
    Now when I goto the url apptest.our.org/webtogo, I get the following stacktrace:
    java.lang.NullPointerException
         at oracle.lite.web.util.TaggedHtml.parse(Unknown Source)
         at oracle.lite.web.util.TaggedHtml.init(Unknown Source)
         at oracle.lite.web.WebtogoLogonPage.init(Unknown Source)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2231)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4617)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4541)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2821)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:740)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    And when I login to the OAS enterprise manager, and click on "mobileserver" in the cluster topology, it say's:
    "The administrator's credentials for this OC4J instance are invalid, please set the credentials."
    As I've no idea of what's going on at this stage, I insert the same password as that of OAS, but then receive the following message:
    "Administrator credentials were saved but they cannot be used to make a connection. Enter new credentials or cancel."
    I hope you understand this - as I certainly don't.
    I seem to have worked myself into a dead-end, without understanding much of what's happening. I'd really appreciate if you could explain where I'm screwing up at this stage.
    Many thanks for your patience and understanding.
    Kind regards,
    /j-p.

  • I can not export photos onto DVD. After I click export, close iPhoto, click Finder, At this point I can't find the file to burn. (copy to be used on Windows) Sorry for the lame question....new to mac

    I can not export photos onto DVD. After I click export, close iPhoto, click Finder, At this point I can't find the file to burn. (copy to be used on Windows) Sorry for the lame question....new to mac

    So it sounds like you are trying to burn a DVD with photos on it so the photos can be either transferred to or displayed on a Windows PC, is that correct?
    For the purposes of this I am going to assume you are using iPhoto '11.
    Gather the photos you want to burn to DVD in one album in iPhoto. This is not absolutely necessary but it sure makes things easier for me.
    Select that album, then go to the File menu and select Export...
    In the dialog that shows up, select the File Export tab. Select the setting you want to use for export. Click the Export button.
    Another dialog will show up. Set the location to Desktop and click the New Folder button. Name the folder something nice and descriptive and click the Create button.
    Click the OK button. Quit iPhoto as the rest of this work will be done in the Finder.
    You will now have a folder on your desktop with that nice descriptive name. Find it and select it. Go to the File menu and from it select Burn "Descriptive folder name" to Disc...
    Insert a blank DVD when prompted.
    Let the finder complete the work and eject the disc afterwards.
    That's it. Best of luck.

  • Extracting portions of the timeline from iMovie to create a 'Sound File'

    Hello
    I recently used my Cannon GL2 as a field recorder to record 16 bit audio sound effects.
    I'd like to extract certain portions of the timeline to create various 'Sound Files' which will be used later (as sound effects), in either iMovie, or FCE HD.
    In iMovie HD, the only method I'm familiar with to extract a portion of the timeline to a 'Sound File', is to FIRST export that portion to a Quicktime File. Then I use 'Sound Studio 2.2.4' to import the Quicktime File. In Sound Studio, I can then create either an AIFF File, or Wav File.
    From there, I open iTunes, and import the Wav File. Now I convert that Wav File to an MP3 (if I need to compress the size of the file).
    I know I can import Raw DV Video Files (Captures), into Garage Band, but then I can't export that edited project into a Sound File.
    But I do know I can use Garage Band to edit (EQ), a portion of the timeline, then Export that portion (as I explained above). But I'm still going through some extra steps .....
    With all I'm mentioned, perhaps I need to get another software program in order to eliminate a step on my way to exporting a portion of a Video timeline from either iMovie, or FCE, and get straight to creating a sound file suitable for later import back into FCE, or iMovie?
    Thanx for your comments
    Mike

    Hey Piero
    Comestah?
    I'm an Italiano too My Granparents are from Bari
    Well yes thank you - that certainly answered part of my question
    Now I wonder if I can extract just a 'PORTION' of the timeline? I tried to insert division points without actually cutting out all the unwanted stuff, and highlighted just that portion, but the Audio Extract process reverts back to extracting the ENITIRE timeline. So I guess I'd have to actually cut and delete all the unwanted parts, then 'save as' to that NEW iMovie project reflecting just that edit in order to extract JUST that audio piece?
    I wonder if the process is more precise in FCE?
    Gracias
    Mike

Maybe you are looking for

  • How to do media recovery from cold backup?????????/

    Hi i take cold backup of my 9i database .... in case my database is up ..... how will i recover my database if i lose a single database file and i want to recover it from cold backup...... Thanks in advance Gagan

  • Portal server issues

    Hi All, I am having some issues with the portal server. I am unable to view the J2EE Information screen, ume, web dynpro console etc. I get the error Application cannot be started.   Details:   com.sap.engine.services.deploy.container.ExceptionInfo:

  • Can I create a system image with System Image Utility and then transfer the image folder to another server?

    I am currently in the process of creating several images to restore for classroom purposes. I am wondering if it is possible to use the System Image Utility on a computer which has Server Admin Tools installed, then transfer that image folder directl

  • Tif files aren't recognized by LR5

    I have hundreds of .tif files that I'm trying to import into Lightroom so I can evaluate whether I want to switch from Aperture. All of the .tifs have been created in Photoshop and may or may not have compression. Lightroom does not recognize them as

  • Pricing Base price

    Our base price ZZR0 condition value shows with red font color in sales order,  Rest all the condition value for discount , charge etc shows in blue font color in condition value. Amount column is ok shows all the values in black. Need to understand r