Multiple programs recording from same sou

Hi, I have a audigy and I cant use the record function in multiple programs. Like, when im using the teamspeak and try to open skype, just the teamspeak can record from microphone and skype dont work.
Any help, thank you.

You would have to close your DAQmx reference in one vi before another vi could open one on the same DAQ device.  You could have some sort of flag variable, maybe a LV style functional global, that would signal the need for DAQ use.  Some sort of arbitration scheme in a separate vi would determine who gets priority over DAQ use.  It would then send signals (more funtional globals) to each subvi telling them who should close and who should open.  The differenct vi's would have to coninually poll the functional globals to see if they should open or close their session.  This will be quite complex.
- tbob
Inventor of the WORM Global

Similar Messages

  • How to call multiple stored procedure from same DB Adapter

    Hi,
    I want to invoke 3 stored procedures from my message flow in BUS . I created a DB adapter and invoked 1 successfully . Now I don't to configure 2 other DB adapters for calling other 2 stored procedures . I want some how to be able to call the other 2 from the first DB adapter only . Somehow I need the flexibility to have procedure names as the operation names in 1 wsdl and be able to configure this in JDeveloper for this at time of DB adapter configuration . I am using 11G . Is it possible ?

    You can probably create a DB adapter with operation type selected as Execute Pure SQL and write SQL code to invoke the stored procedures depending on the procedure name (which you can get as one of the parameters of DB Adapter).
    However, Even if you were able to do it, the DB Adapter schemas are generated based on stored procedure parameter list and types. If you use Execute Pure SQL type of DB Adapter the schema will be generated based on the parameters which you are using in your custom SQL code within DB Adapter. Which means that if you want to add a new stored procedure as target which has a different name and different parameters then you will need to regenerate the DB adapter and update your custom SQL code. This also means that you will need to do regression testing interfaces to all stored procedures whenever there is any change in this DBAdapter.
    Now, my question is why do you want to invoke multiple stored procedures from same DB adapter?
    This is not a good way to design integration solutions and makes your services resistance to change as it will take more time to change and test.
    If all that you want is to have a web service which can have different operations for different stored procedures then you should create three business services and create a wrapper proxy service which has one operation for each stored procedure, within the proxy transform and call the correct backend service (you can use operational branch). This way you have a modular code where each module (read interface to one stored procedure) can be independently modified and tested.

  • Load Multiple Tables (schemas) from same XML file

    Hi,
    This is first time i am working XML files.
    I have one XML file with two tables (schema). I need to load those two tables into two different Target tables.
    This is the startegy to choose tables.
    <Entry type="full"> --Table 1
    <Entry type="short">--Table 2
    I am try to find the tables like this using condition split (Type == "Full" ) but tables are not splitting as expected, is am i going with wrong approach??
    Can anyone suggest me to process multiples tables from same XML file??

    Hi Naveen,
    After the issue in my environment, the package works well that the data in the XML file load to two destination tables based on one column values. The screenshot is for your reference:
    To troubleshoot this issue, could you please check the values in the type column? Verify the values have exactly the same characters, case sensitivity. It seems that you haven’t write correct values in the Conditional Split Transformation. They should be like
    below:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
     If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Multiple message threads from same person

    I have multiple message threads from the same person in messages on my iPhone and iPad. One comes from their phone number and one from their email. Here are all the details, I would love to be able to combine them into one thread.
    This other person and myself each have a new MacBook Pro, iPad Air 2, I have an iPhone 6 and they have an iPhone 5S. They are all updated with the most recent system software.
    On my MacBook Pro, the conversations that are split on my iPhone and iPad are not split. On the MacBook Pro, all of the texts from both conversations are appearing in one. In my contacts which are syncing with iCloud I have both the phone number and email address of this other person.
    I have messages set up on all of my devices to send and receive from my phone number and my email, start new conversations is from my phone number. This other person has it set up the exact same way on all of their devices.
    So why when I text this person from one conversation thread and they respond it comes through to the other conversation thread?
    Why can't I seem to join these two conversations when everything is set up the way it should be and they ARE joined on my MacBook Pro but not my iPhone and iPad?

    She kept the same number on her new phone, but now there are 2 conversation threads. A new one started with messages sent from the new phone, the old phone should be out of service now. Why didn''t  messages sent by the new phone resume in the same conversation? I assume because it's a different IMEI.  But now whenever I use her  phone number to create a new message, it goes in the old IMEI*'s conversation thread and is therefore not delivered. It's in green so it thinks it's an SMS also not a iMessage device.
    If I want to send a message correctly  to the new phone, I have to make sure I  go into the correct newer thread and enter it there,
    For your second answer, the person is receiving the message but the thread now says "email address", not the person's name in the contact list. The sender is sending to the person's phone number, not her email address.

  • Multiple programs in the same VM

    I don't have lots on memory and whenever I run 2 java programs, it becomes very slow. Is it possible to have a JVM running a "launcher" aplication and starting programs all in the same VM?
    I guess it would have security risks, but I think it would be great to keep the VM running and optimizing the code (the API code) for very long periods of time instead of loading a new copy every time.
    Any ideas on how to implement it?, at least how to make a simple example running 2 programs in the same VM?
    I guess they would have to run in their own threads and it won't be easy if some of the programs do System.exit();
    If someone has any idea about this, message me or post a reply here.
    Fede.
    [email protected]

    Take a look at http://www.onjava.com (in java optimization). Also Enhydra (I think it is http://www.enhydra.org) has implemented this kind of library that allows to run several applications in one JVM.
    BTW. System.exit(0) from one of the threads problem can be easily mitigated by extending SecurityManager ( SecurityManager is always called before exit, so check what thread requested exit and either allow or disallow it).
    HTH,
    Leo

  • I have multiple programs downloaded from Creative Cloud, but when I try to download after effects and Audition it downloads to 42% and stops.

    I have multiple programs downloaded but cannot download Audition or After Effects for some reason.

    Creative Cloud Error Codes (WIP) | Mylenium's Error Code Database
    Refer to EX11. You are running out of disk space somewhere most likely.
    Mylenium

  • Parent/child records from same table

    I want to create a query that is a union such that the 2nd resultset is based on the 1st resultset. I have a table that has parent/child records in the same table.
    Table: EVENTS
    EVENT_ID
    PARENT_EVENT_ID
    CREATED_DATE
    (other columns)
    if PARENT_EVENT_ID is null then it is a parent record, else it is a child record. I want to select all parent records then union them with all the associated child records...something like this:
    select * from EVENTS where CREATED_DATE < sysdate - 90 and PARENT_EVENT_ID is null -- All parents
    union
    select * from EVENTS where PARENT_EVENT_ID in (select EVENT_ID from EVENTS where CREATED_DATE < sysdate - 90 and PARENT_EVENT_ID is null) -- include any children of parents selected from above
    This works but it's kind of ugly, I want to avoid using the sub-select in the 2nd because it is a repeat of the 1st statement, is there a way to alias the first statement and just refer to it in the 2nd query?

    Hi,
    kev374 wrote:
    Thanks, one question...
    I did a test and it seems the child rows have to also satisfy the parent row's where clause, take this example:
    EVENT_ID|PARENT_EVENT_ID|CREATED_DATE
    2438 | (null) | April 9 2013
    2439 | 2438 | April 11 2013
    2440 | 2438 | April 11 2013
    select * from EVENTS where CREATED_DATE < sysdate - 9
    start with EVENT_ID = 2438
    connect by PARENT_EVENT_ID = prior EVENT_IDSo you've changed the condition about only wanting roots and their children, and now you want descendants at all levels.
    This pulls in record #2438 (per the sysdate - 9 condition) but 2439 and 2440 are not connected. Is there a way to supress the where clause evaluation for the child records? I just want to pull ALL child records associated with the parent and only want to do the date check on the parent.Since the roots (the only rows you want to exclude) have LEVEL=1, you can get the results you requested like this:
    WHERE   created_date  < SYSDATE - 9
    OR      LEVEL         > 1However, since you're not ruling out the grandchildren and great-grandchildren any more, why wouldn't you just say:
    SELECT  *
    FROM    events
    WHERE   created_date     < SYSDATE - 9
    OR      parent_event_id  IS NOT NULL;?
    CONNECT BY is slow. Don't use it if you don't need it.
    If you x-reference my original query:
    select * from EVENTS where CREATED_DATE < sysdate - 90 and PARENT_EVENT_ID is null -- All parents
    union
    select * from EVENTS where PARENT_EVENT_ID in (select EVENT_ID from EVENTS where CREATED_DATE < sysdate - 90 and PARENT_EVENT_ID is null) -- include any children of parents selected from above
    The 2nd select does not apply the created_date < sysdate - 90 on the children but rather pulls in all related children :)Sorry; my mistake. That's what happens when you don't post sample data, and desired results; people can't test their solutions and find mistakes like that.

  • Why are there multiple keychain records for same email account?

    I have noticed that it takes sometimes up to 45 seconds for Apple Mail to send (whoosh...) an email. Then I started getting an alert asking for my password intermittently.
    I checked my KeyChain Access and note 5 records for this email account dating back to 2007 and while the password hasn't changed in all these years, I note the "Where" field is different in some of these records. So my uneducated hunch is Apple Mail is getting a little confused and having to go thru all 5 records insteads of just one.
    As note multiple records for other email accounts and website logins I have.
    1. Why is this happening?
    2. Is it normal
    3. Can I, should I, delete all but one for each item be it an email account or web login, etc.
    or
    Should I delete all 5 and let a brand new one be created for Keychain next time I send or get email for this particular email account?
    I also see there is some info on keychain syncing. Does this have anything to do with my situation?
    Thx,
    Steven

    I'm a little distracted with Steve's passing. He will be missed to say the least
    But if it isn't too disrepectful to reply at this time, I'm unclear with your advise because there are 5 items all for the same email account. A couple are duplications, and the others have slightly different "Where" info.
    I can't imagine I need all 5 and wonder if I should delete 4 and keep the newest one?
    All my email accounts have multiple entries.
    Anyone know why this is happening and if it's OK to delete the oldest ones and keep just the newest?

  • Question about creating multiple output  files from same query

    I have a query like this:
    select * from emp;
    ename empno deptno
    Scott 10001 10
    Tiger 10002 10
    Hanson 10003 20
    Jason 10004 30
    I need to create multiple output files in xml format for each dept
    example:
    emp_dept_10.xml
    emp_dept_20.xml
    emp_dept_30.xml
    each file will have the information for employees in different departmemts.
    The reason I need to do this is to avoid executing the same query 200 times for generating the same output for different departments. Please let me know if it is practically possible to do this.
    Any input is greatly appreciated.
    Thanks a lot!!

    You can write a shell script to generate the multiple spools files for the same output. Below script may helps you.
    #====================
    #!/bin/bash
    n=0
    while [ $n -le 20 ]
    do
    n=`expr $n + 1`
    sqlplus -s system/manager <<EOF
    spool emp_dept_$n.xml
    select count(1) from tab;
    spool off
    EOF
    done
    #====================

  • Create multiple external tables from same flat file ?

    using oracle 10g
    currently create many external tables like so..
    CREATE TABLE "XT_UNITS"
    "Q1_2012" VARCHAR2(25 BYTE),
    "Q2_2012" VARCHAR2(25 BYTE),
    "Q3_2012" VARCHAR2(25 BYTE),
    "Q4_2012" VARCHAR2(25 BYTE)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER DEFAULT DIRECTORY "XE_FILES" ACCESS PARAMETERS ( records delimited BY newline
    skip 1 fields terminated BY ',' OPTIONALLY ENCLOSED BY '"' MISSING FIELD VALUES
    ARE NULL ) LOCATION ( 'xtunits.csv' ))
    is there any way I can use 1 flat file (csv) to populate many external tables ?
    maybe by section ?

    Jay wrote:
    using oracle 10g
    currently create many external tables like so..
    CREATE TABLE "XT_UNITS"
    "Q1_2012" VARCHAR2(25 BYTE),
    "Q2_2012" VARCHAR2(25 BYTE),
    "Q3_2012" VARCHAR2(25 BYTE),
    "Q4_2012" VARCHAR2(25 BYTE)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER DEFAULT DIRECTORY "XE_FILES" ACCESS PARAMETERS ( records delimited BY newline
    skip 1 fields terminated BY ',' OPTIONALLY ENCLOSED BY '"' MISSING FIELD VALUES
    ARE NULL ) LOCATION ( 'xtunits.csv' ))
    is there any way I can use 1 flat file (csv) to populate many external tables ?
    maybe by section ?Not a logical question.
    An external table definition relates to one or more files.
    You could probably create multiple externable table definitions to access the same file(s), but you may end up with some operating system file locking issues if you're not careful, and to be honest why would you need to do that?

  • Question about creating multiple XML files from same query

    I have a query like this:
    select * from emp;
    ename empno deptno
    Scott 10001 10
    Tiger 10002 10
    Hanson 10003 20
    Jason 10004 30
    I need to create multiple output files in xml format for each dept
    example:
    emp_dept_10.xml
    emp_dept_20.xml
    emp_dept_30.xml
    each file will have the information for employees in different departmemts.
    We are using DBMS_XMLGEN package to generate XML.
    The reason I need to do this is to avoid executing the same query 200 times for generating the same output for different departments. Please let me know if it is practically possible to do this.
    Any input is greatly appreciated.
    Thanks a lot!!

    one solution i can think of is to use SQLX operator instead of dbms_xmlgen.
    here is a sample example.
    declare
      l_xmltype xmltype;
      l_deptno  emp.deptno%type;
    begin
      for i in (select * from emp order by deptno)
      loop
        select xmlconcat(
                    xmlelement("ename", i.ename)
                   ,xmlelement("sal", i.sal)
                   ,xmlelement("detpno", i.deptno))
          into l_xmltype from dual;
        dbms_output.put_line(l_xmltype.GetClobVal());
      end loop;
    end;
    /Now here you can open the query once, keep writing to the file till the deptno
    is same, when the deptno changes, close the file and open a new file with new
    deptno and start writing.
    Note : in this way you will have to add the xmlprolog manually to each of the file which should not be an issue. after opening the file add the prolog string manually.
    Hope this helps.

  • Multiple nohup commands from same path

    I had a doubt which is very urgent as my live migration is going on. I had run the 2 import commands from $ORACLE_HOME/bin for importing 2 schemas like:-
    nohup imp JISPBILCORBILLINGPRD501/JISPBILCORBILLINGPRD501 fromuser=JISPBILCORBILLINGPRD501 touser=JISPBILCORBILLINGPRD501 file=JISPBILCORBILLINGPRD501.dmp log=JISPBILCORBILLINGPRD501.log commit=y feedback=10000 ignore=Y &
    nohup imp JISPRATCORBILLINGPRD501/JISPRATCORBILLINGPRD501 fromuser=JISPRATCORBILLINGPRD501 touser=JISPRATCORBILLINGPRD501 file=JISPRATCORBILLINGPRD501.dmp log=JISPRATCORBILLINGPRD501.log commit=y feedback=10000 ignore=Y &
    Normally I run one import from the path of $ORACLE_BASE and one from $ORACLE_HOME/bin so that I have 2 different nohup.out files to see the output. But, in this case, as the 2 imports are run from the same path, will the nohup.out have output from both the files?
    So, my doubt is that hope there is no problem in running the nohup command from the same path and the nohup.out is populated with the output of both the
    imports.
    I hope, my question is clear.
    Please, help in solving the doubt.
    regards

    I had a doubt which is very urgent See how to configure application server 10g for forms 10g about urgency....
    That said...
    will the nohup.out have output from both the files?Yes, and outputs will be mixed.... but you have separate logs, haven't you ?

  • How to Disassemble Varying Multiple Repeating Records from Single Row

    I have a flat file that has hundreds of thousands of rows.  Each row is a new record.
    On each row there are about 23 elements that occur once per row and then there are two groups of 4-6 fields each group that repeat a certain number of times.  There is an integer field before each group that indicates how many times the group repeats
    0 or greater.  An few examples rows are the following. 
    a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|0|0
    a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|1|b|b|b|b|0
    a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|2|b|b|b|b|c|c|c|c|0
    a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|2|b|b|b|b|c|c|c|c|1|d|d|d|d|d|d
    a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|2|b|b|b|b|c|c|c|c|2|d|d|d|d|d|d|e|e|e|e|e|e
    a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|0|1|b|b|b|b|b|b
    a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|0|2|b|b|b|b|b|b|c|c|c|c|c|c
    I'd rather not do a custom pipeline if possible unless there is something already written.
    thanks in advance.

    Thank you for the quick response.  Would rather stick in biztalk if possible.
    I was able to get something like this to process through no problem.
    a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|1|b|b|b|b
    a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|a|0
    Just using and unbounded record with the group order type set to sequence. each row could have 0 to hundreds
    of groups.  And I've been able to process files with millions of rows.
    I'm wondering if there is a way to check the integer number in order to tell the group how many records
    there will be?
    Sucks that it is all the same delimiter.

  • Multiple Receiver Dtermination from Same Business Sender Service to RecvStp

    Hi,
    I was trying to implement FORK STEP in ccBPM. Scenario I'm trying to implement is, using fork bundle PO with same items together.
    Can anybody help me to create multiple receiver dterminations for three receiver steps in three branches of fork step, where a common business sender service and same Integration process is used for receiving messages into SAP XI.
    Please advice soon,
    Thank You,

    Hi Murali,
    If it's always the same message, only one receiver determination is necessary. I'd also rather tend to do the capturing within a loop which is executed three times.
    Best regards
    Joachim

  • Can you install apps on multiple iphones/ipods from same itunes account?

    Hello, My first post so please be gentle. I will be picking up my 3g in an hour or 2 and have a few apps lined up including super monkeyball. My wife has an 8g touch. We have seperate pc's each with their own library and installation of itunes although both signed in to my account. Itunes has let me download super monkeyball on both pc's ( same account ). Will it let me install the game to my iphone and my wifes touch? I'm pretty new to itunes and have never even purchased music through it yet but I understand purchased music can be downloaded to 5 seperate pc's and unlimmited ipods? is that correct? I would be surprised if this was the same for applications.

    Your answer is yes although you were going to attempt it in a few hours anyway so why bother asking? Oh that's right you're excited

Maybe you are looking for

  • Tax depreciation for vehicles from limited value in Poland

    Hi, for a polish company I have to define the depreciation for cars. In Poland is for vehicles  the start value for calculation of the tax depreciation lower then the acquisition value of depreciation area "book depreciation". The tax value is limite

  • Frozen ipod touch 4g

    its frozen on the texting app i have downloaded i have tried to hold the power button for both 3 and ten seconds, double clicked home, and pressed it once , help!

  • Rewrite a sql query

    Hi All i want to rewite the sql from select x from table1 t1 where y = ( select max(y) from table1 t2 where t1.id = t2.id ) to be more simple i believe that analytic functions can do that i tried select x from table1 having y = max(y) over() but it d

  • How to arrange picture folders

    how can i make seprate folders for all pic like family friends so that all pics do not get mix in Photo Library

  • Participating in the CinemaDNG Initiative

    Over fifty companies are now participating in the CinemaDNG Initiative. Most recently we met at NAB 2010. Adobe continues to engage partners to join the CinemaDNG Initiative. Critical for the success of the CinemaDNG Initiative is the active particip