System call in the procedure

Hi,
Is it possible to have a system call with in the stored procedure???
Example
IS
BEGIN
select ****
cp temp temp123 (System Call)
END
It would be a great help if you send the reply to
[email protected]
Thanks,
Hari

look for external proc topic

Similar Messages

  • Can I source an environment before making a system call from the database

    I can execute system calls from the database like
    Process proc = Runtime.getRuntime().exec("env");
    but I am unable to source an environment before making the call.
    Our goal is to from within the database to execute tkprof on a
    raw trace file then load both files into clobs in a table. We can load
    the raw trace no problem, we just cannot figure out how to execute
    tkrprof on the raw trace then load its output.
    Anyone know if this is possible to hava java get a runtime and then call
    an environment file to source the environment so that path's and other environment variables are set prior to executing another system command.

    Thanks for that...but can I do multiple edits in my Stored Procedure Vaibhav and pass back something that I can then utilize in my SSIS? For example...
    One and Only one Member Span...so I'd be doing a SELECT COUNT(*) based on my match criteria or handle the count accordingly in my Stored Procedure and passing something back via the OLE DB Command and handling it appropriately in SSIS
    Are there "Diabetes" claims...again probably by analyzing a SELECT COUNT(*)
    Am I expecting too much from the SSIS...should I be doing all of this in a Stored Procedure? I was hoping to use the SSIS GUI for everything but maybe that's just not possible. Rather use the Stored Procedure to analyze my stged data, edit accordingly, do
    data stores accordingly...especially the data anomalies...and then use the SSIS to control navigation
    Your thoughts........
    Could you maybe clarify the difference between an OLE DB Command on the Data Flow and the Execute SQL Task on the Control Flow...
    You can get return values from oledb comand if you want to pipeline.
    see this link for more details
    http://josef-richberg.squarespace.com/journal/2011/6/30/ssis-oledb-command-and-procedure-output-params.html
    The procedure should have an output parameter defined for that
    I belive if you've flexibility of using stored procedure you may be better off doing this in execute sql task in control flow. Calling sp in data flow will cause it to execute sp once for each row in dataset whereas in controlflow it will go for set based
    processing
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • I need to add a printer to my system and forget the procedures?

    How do you insery a regulat DVD into Mac mini?

    - To add printer go to System Preferences>Pint and Scan and add the printer. If the printer is connected, the printer should then be shown.
    - Older Minis have a DVD drive. The newer ones do not. For those you  will either have to use an external USB DVD drive or chare the DVD from another computer.

  • Call or execute the procedure 1000 times simultaneously

    Hi all,
    I hava written a procedure. And i want to call or execute the procedure 1000 times simultaneously.
    I don't want like below
    for i in 1..1000 loop
    exec procedure1
    end loop;
    Any Idea ?
    Bye
    Nathan

    You want the procedure to run 1000 simultaneously? Well, one way to do this is to set up 1000 SQL*Plus sessions and prepare 1000 EXEC statements, which you kick off at the same time. This approach is good if you're a Hindu deity.
    Alternatively you can use DBMS_JOB to submit calls to the procedure, viz.
    for i in 1..1000 loop
       DBMS_JOB.SUBMIT(jobno , what=>'procedure1', next_date=> trunc(SYSDATE) + 11/24);
    end loop; This - trunc(SYSDATE) + 11/24 - ensures that all the jobs kick off at 11 o'clock in the morning. You may need to adjust the timing to suit your needs.
    Are you sure you have sufficient resources to run this job 1000 times?
    Vibes, APC

  • I am getting ORA-01403: no data found error while calling a stored procedur

    Hi, I have a stored procedure. When I execute it from Toad it is successfull.
    But when I call that from my java function it gives me ORA-01403: no data found error -
    My code is like this -
    SELECT COUNT(*) INTO L_N_CNT FROM TLSI_SI_MAST WHERE UPPER(CUST_CD) =UPPER(R_V_CUST_CD) AND
    UPPER(ACCT_CD)=UPPER(R_V_ACCT_CD) AND UPPER(CNSGE_CD)=UPPER(R_V_CNSGE_CD) AND
    UPPER(FINALDEST_CD)=UPPER(R_V_FINALDEST_CD) AND     UPPER(TPT_TYPE)=UPPER(R_V_TPT_TYPE);
         IF L_N_CNT >0 THEN
              DBMS_OUTPUT.PUT_LINE('ERROR -DUPlicate SI-1');
              SP_SEL_ERR_MSG(5,R_V_ERROR_MSG);
              RETURN;
         ELSE
              DBMS_OUTPUT.PUT_LINE('BEFORE-INSERT');
              INSERT INTO TLSI_SI_MAST
                   (     CUST_CD, ACCT_CD, CNSGE_CD, FINALDEST_CD, TPT_TYPE,
                        ACCT_NM, CUST_NM,CNSGE_NM, CNSGE_ADDR1, CNSGE_ADDR2,CNSGE_ADDR3,
                        CNSGE_ADDR4, CNSGE_ATTN, EFFECTIVE_DT, MAINT_DT,
                        POD_CD, DELVY_PL_CD, TRANSSHIP,PARTSHIPMT, FREIGHT,
                        PREPAID_BY, COLLECT_BY, BL_REMARK1, BL_REMARK2,
                        MCC_IND, NOMINATION, NOTIFY_P1_NM,NOTIFY_P1_ATTN , NOTIFY_P1_ADDR1,
                        NOTIFY_P1_ADDR2, NOTIFY_P1_ADDR3, NOTIFY_P1_ADDR4,NOTIFY_P2_NM,NOTIFY_P2_ATTN ,
                        NOTIFY_P2_ADDR1,NOTIFY_P2_ADDR2, NOTIFY_P2_ADDR3, NOTIFY_P2_ADDR4,
                        NOTIFY_P3_NM,NOTIFY_P3_ATTN , NOTIFY_P3_ADDR1,NOTIFY_P3_ADDR2, NOTIFY_P3_ADDR3,
                        NOTIFY_P3_ADDR4,CREATION_DT, ACCT_ATTN, SCC_IND, CREAT_BY, MAINT_BY
                        VALUES(     R_V_CUST_CD,R_V_ACCT_CD,R_V_CNSGE_CD,R_V_FINALDEST_CD,R_V_TPT_TYPE,
                        R_V_ACCT_NM,R_V_CUST_NM ,R_V_CNSGE_NM, R_V_CNSGE_ADDR1,R_V_CNSGE_ADDR2, R_V_CNSGE_ADDR3,
                        R_V_CNSGE_ADDR4,R_V_CNSGE_ATTN,     R_V_EFFECTIVE_DT ,SYSDATE, R_V_POD_CD,R_V_DELVY_PL_CD,R_V_TRANSSHIP ,R_V_PARTSHIPMT , R_V_FREIGHT,
                        R_V_PREPAID_BY ,R_V_COLLECT_BY ,R_V_BL_REMARK1 ,R_V_BL_REMARK2,R_V_MCC_IND,
                        R_V_NOMINATION,R_V_NOTIFY_P1_NM, R_V_NOTIFY_P1_ATTN, R_V_NOTIFY_P1_ADD1, R_V_NOTIFY_P1_ADD2,
                        R_V_NOTIFY_P1_ADD3, R_V_NOTIFY_P1_ADD4, R_V_NOTIFY_P2_NM, R_V_NOTIFY_P2_ATTN, R_V_NOTIFY_P2_ADD1,
                        R_V_NOTIFY_P2_ADD2, R_V_NOTIFY_P2_ADD3, R_V_NOTIFY_P2_ADD4, R_V_NOTIFY_P3_NM, R_V_NOTIFY_P3_ATTN,
                        R_V_NOTIFY_P3_ADD1, R_V_NOTIFY_P3_ADD2, R_V_NOTIFY_P3_ADD3, R_V_NOTIFY_P3_ADD4,
                        SYSDATE,R_V_ACCT_ATTN,R_V_SCC_IND,R_V_USER_ID,R_V_USER_ID
                        DBMS_OUTPUT.PUT_LINE(' SI - REC -INSERTED');
         END IF;

    Hi,
    I think there is a part of the stored procedure you did not displayed in your post. I think your issue is probably due to a parsed value from java. For example when calling a procedure from java and the data type from java is different than expected by the procedure the ORA-01403 could be encountered. Can you please show the exact construction of the call of the procedure from within java and also how the procedure possible is provided with an input parameter.
    Regards, Gerwin

  • Correct Forum? CGI and Server behaviour on Solaris at system()-call

    Hi to you all,
    Do not know if i am in the correct forum, but maybe it is a Webserver problem.
    I have Sun ONE Webserver 6.1 running on Solaris.
    Craete some CGI`s in C.
    Now I have a problem with one CGI, which have to call a Shellscript via system() call.
    The Client just calls the CGI with some parameters, which will write the informations in a file with some additional informations from a database, after that, the script should be startet and do some printjobs in the background.
    The CGI and the Shell-script is working fine. My Problem is, that the system() call always waits, until the ShellScript has finished, so the Webserver send the "data successful written" site after a couple of minutes, it should send it immeditatly to the client, so the session is closed.
    I have tried to put the shellscript in background with "&", also with nohup and a second shell script which justs starts the first script, also with all combinations of nohup and "&" for background process.
    also i tried with "pclose(popen(SCRIPT,"W");" to call the script, it is always the same, the session will close only, when the script has been finished.
    In an other Forum I found an entry, that , however, IPlanet webserver always will do this in this way. The session will be closed, when all called processes has benn fisnished.
    Any Ideas to solve my problem?

    The web server reads from the CGI program's stdout. It knows the HTTP response is complete when the CGI program closes its stdout.
    When you call system(), the child process inherits the CGI program's stdout and keeps it open until it finishes. If you want the child process to run asynchronously from the HTTP response, you should give the child process a new stdout with > /dev/null. (You'll still need to place the child process in the background with &.) Alternatively, you can fork(), close(1), then exec().

  • How can I use system call in kernel loadable module?

    Hi,
    I want to use system call (shmat, mmap,...) in kernel module.
    When kernel module is loaded, it cause system error (undefined symbol name 'shmat', 'mmap').
    How can I use system call in kernel module ?
    Thanks in advance.
    david joo

    You cannot use system calls in the kernel modules.
    Read 'Writing Device Drivers' answerbook - it lists the set of interfaces (known as DDI/DDK) that are supposed to be used instead.
    Hope this helps...
    --I.

  • Making a system call

    When I make a system call of the sort
    Process theProcess = Runtime.getRuntime().exec(*my command here*);
    Does the thread wait for the command to be executed, or does it keep on executing subsequent lines of code?

    Does the thread wait for the command to be executed, or does it keep on executing subsequent lines of code? Write some simple test code and then report the results back here.

  • Program Units or Call to DB Procedure ?

    Hi
    This is a general query -
    Which method is better - to write db procedures in the program units itself or
    write the procedure in the DB (SQL *PLUS), and then add the call to the procedure in the forms.
    Since, both method can be adopted, which is the better method.
    Thanks
    Deepa

    Hi!
    As a general rule you should put all database I/O into database PL/SQL objects.
    Simply because you limit communication between client and database.
    Put all cursors, all inserts, updates and deletes into database packages. This way you will create a transparent structure of layers in your application: database stuff goes into the database, forms stuff will be in forms (and PL/SQL libraries).
    Good Luck!
    Remco

  • System Call in Classes - CL_IXML

    Hi Gurus,
    Please interpret this code.
    system-call ixml did 259129538 parameters cl_ixml=>the_ixml me rval.
    Regards,
    G.Srinivasan.

    Hi,
    system calls are used by SAP to call specific functionality of the SAP kernel... in this case, a system call is made using some parameters, including an attribute of class CL_IXML.
    You can get some info on the general principle by checking the command system-call in the online help.
    Note that system calls are for internal SAP implementation and use only, and should not be replicated in a customer program, since their interfaces or behaviours are not (publicly) documented and are subject to change without further notice.
    Regards,
    Trond
    Edited by: Trond Stroemme on Nov 21, 2008 9:20 AM

  • Making Palm System calls using J2ME

    Hi is there anyway where I can use the old KJava API or even the J2ME to make system calls such as
    DmFindDatabase(0,"Something")
    SysAppLaunch(0,dbID,0,cmdPrintChars,theChars,&result);
    axlrose82

    [axlrose82],
    At the moment, we are quite certain that the kVM for the PalmOS do not contain any API that allows a developer to make system calls to the PalmOS itself. The CLDC/MIDP specification does not specify any native system calls access any of the native apps. I can see from your code that you are trying to access the Palm database but I'm afraid you are out of luck with the current specs.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Shutting service down via subscribed event using TMIB or system call

    I have a client that performs a tppost of a database event(in this case a oracle RAC FAN event indicating a down node). I created another server that subscribes to this event. At this point I have had issues. From the server I am unable to perform a system call of tmshutdown and tmboot.
    It performs the tmshutdown but not the tmboot. When i do the same thing from a client I have no issues. Is there something unique about the tuxedo server main preventing me from doing a system call effectively? The TMIB calls appear to work ok also but do nto restart the server. If someone has an idea thanks.
    I then tried to perform the activity via TMIB calls but also had not luck:
    void DBSTATECHGSERV(TPSVCINFO *svcinfo)
    char charBuf[2000];
    FBFR32 *fbfr;
    FLDLEN32 len;
    char *pEventName = NULL;
    int i=0;
    FBFR32 ibuf = (FBFR32 )tpalloc((char *)FMLTYPE32, NULL, 0);
    Fchg32(ibuf, TA_OPERATION, 0,(char*) "SET", 0);
    Fchg32(ibuf, TA_CLASS, 0,(char*) "T_SERVER", 0);
    Fchg32(ibuf, TA_GRPNO, 0, (char *)"1", 0);
    Fchg32(ibuf, TA_SERVERNAME, 0, (char *)"ECHO", 0);
    Fchg32(ibuf, TA_SRVID, 0, (char *)"10", 0);
    Fchg32(ibuf, TA_STATE, 0, (char *)"DEA", 0);
    int retc = tpcall((char *)".TMIB", (char *)ibuf, 0, (char **)&ibuf, &len, (l
    ong)0);
    //int retc = tpadmcall(ibuf, &ibuf, 0);
    if ( retc < 0)
    printf("tpadmcall() failed:%s\n",tpstrerror(tperrno));
    Fchg32(ibuf, TA_OPERATION, 0,(char*) "SET", 0);
    Fchg32(ibuf, TA_CLASS, 0,(char*) "T_SERVER", 0);
    Fchg32(ibuf, TA_GRPNO, 0, (char *)"1", 0);
    Fchg32(ibuf, TA_SERVERNAME, 0, (char *)"ECHO", 0);
    Fchg32(ibuf, TA_SRVID, 0, (char *)"10", 0);
    Fchg32(ibuf, TA_STATE, 0, (char *)"ACT", 0);
    retc = tpcall((char *)".TMIB", (char *)ibuf, 0, (char **)&ibuf, &len, (long)
    0);
    //int retc = tpadmcall(ibuf, &ibuf, 0);
    if ( retc < 0)
    printf("tpadmcall() failed:%s\n",tpstrerror(tperrno));
    tpfree((char *)ibuf);
    userlog("got the subscription ");
    execl("/home/hems/prod/getit.sh","","getit.sh", NULL);
    i = system("getit.sh ");
    userlog("return value from system call %d ",i);
    //i = system("tmboot -yg -yg TESTGRP_1 ");
    //userlog("return value from system call %d ",i);
    tpreturn(TPSUCCESS, 0, NULL, 0, 0);

    I did what you mention yesterday and came up with the following:
    #/bin/ksh
    export FIELDTBLS32=tpadm,Usysfl32,evt_mib,tpadm
    export FLDTBLDIR32=${TUXDIR}/udataobj
    ud32 -C tpsysadm < ud32dead.txt
    ud32 -C tpsysadm < ud32active.txt
    Contents of ud32dead.txt:
    SRVCNM .TMIB
    TA_FLAGS 65536
    TA_OPERATION SET
    TA_CLASS T_SERVER
    TA_GRPNO 1
    TA_SRVID 10
    TA_STATE DEAD
    Contents of ud32aCTIVE.TXT:
    SRVCNM .TMIB
    TA_FLAGS 65536
    TA_OPERATION SET
    TA_CLASS T_SERVER
    TA_GRPNO 1
    TA_SRVID 10
    TA_STATE ACTIVE
    This works like a champ. I then added this as a system call to the server program and it also worked. This may prove to actually be a more flexible way to accomplish this but still wanted to understand what is wrong with what I am doing in the server. I was able to set the domain to protected via this code and an example you worked with on another person:
    Fchg32(ibuf, TA_OPERATION, 0,(char*) "SET", 0);
    Fchg32(ibuf, TA_CLASS, 0, (char *)"T_DOMAIN", 0);
    Fchg32(ibuf, TA_SYSTEM_ACCESS, 0, (char *)"PROTECTED", 0);
    int retc = tpcall((char *)".TMIB", (char *)ibuf, 0, (char **)&ibuf, &len, (long)0);
    userlog("value of retc %d",retc);
    if ( retc < 0)
    userlog("tpadmcall() failed:%s",tpstrerror(tperrno));
    So I think my security is correct. When I try the folllowing code I receive an error
    int tpsvrinit(int argc, char **argv)
    TPEVCTL ctl;
    int found = 0;
    int i = 0;
    TPINIT * tpinfo = (TPINIT*)tpalloc((char *)"TPINIT",NULL,TPINITNEED(20));
    strcpy(tpinfo->grpname,"dba");
    strcpy(tpinfo->usrname, "tuxedo");
    strcpy(tpinfo->cltname, "tpsysadm");
    strcpy(tpinfo->passwd,"XXXXX#");
    // tpinfo->flags = TPSA_FASTPATH;
    userlog("the logging feature associated with DB waits is set to %s",logWaits);
    ctl.flags = TPEVSERVICE;
    strcpy(ctl.name1, "DBSTATECHGSERV");
    strcpy(ctl.name2, "");
    if ((subscribeHandle = tpsubscribe("DB_STATE_CHG", "", &ctl, 0)) == -1)
    if (tperrno != TPEMATCH)
    /* Could not subscribe so just get out without starting since we can't do anything */
    userlog("Could not subscribe, tperrno = '%s'", tpstrerror(tperrno));
    return -1;
    userlog("Started Service %s", DBSTATESERVX);
    return 0;
    void tpsvrdone(void)
    /* Clean up subscription before exiting */
    if (subscribeHandle != 0 && subscribeHandle != -1)
    tpunsubscribe(subscribeHandle, 0);
    /* Service Entry Point for subscription */
    void DBSTATECHGSERV(TPSVCINFO *svcinfo)
    char charBuf[2000];
    FBFR32 *fbfr;
    FLDLEN32 len=1024;
    char *pEventName = NULL;
    int i=0;
    long srvid=10;
    long grpno=1;
    userlog("got there");
    FBFR32 ibuf = (FBFR32 )tpalloc((char *)FMLTYPE32, NULL, len);
    //Fchg32(ibuf, TA_FLAGS, 0,(char*) "65536", 0);
    Fchg32(ibuf, TA_OPERATION, 0,(char*) "SET", 0);
    Fchg32(ibuf, TA_CLASS, 0,(char*) "T_SERVER", 0);
    Fchg32(ibuf, TA_GRPNO, 0, (char *)"1", 0);
    Fchg32(ibuf, TA_SRVID, 0, (char *)"10", 0);
    Fchg32(ibuf, TA_STATE, 0, (char *)"DEAD", 0);
    //Fchg32(ibuf, TA_SRVGRP, 0,(char*) "TESTGRP_1", 0);
    //Fchg32(ibuf, TA_SERVERNAME, 0, (char *)"ECHO", 0);
    //Fchg32(ibuf, TA_LMID, 0, (char *)"CWSFEP1", 0);
    //Fchg32(ibuf, TA_PID, 0, (char *)"9094", 0);
    //Fchg32(ibuf, TA_OPERATION, 0,(char*) "SET", 0);
    //chg32(ibuf, TA_CLASS, 0, (char *)"T_DOMAIN", 0);
    //Fchg32(ibuf, TA_SYSTEM_ACCESS, 0, (char *)"PROTECTED", 0);
    int retc = tpcall((char *)".TMIB", (char *)ibuf, 0, (char **)&ibuf, &len, (long)0);
    userlog("value of retc %d",retc);
    if ( retc < 0)
    userlog("tpadmcall() failed:%s",tpstrerror(tperrno));
    // userlog("past call to set svr to dead");
    This is the userlog output from the above.
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: { tpservice({"DBSTATECHGSERV", 0x4, 0x0, 0, 0, -1, {1279653754, 0, 1000}})
    152234.CWSFEP1!DBSTATECHGSERV.4488: got there
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: { tpalloc("FML32", "", 1024)
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: } tpalloc = 0x4001aea0
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: { tpcall(".TMIB", 0x4001aea0, 0, 0x7f7f2ca4, 0x7f7f2ca0, 0x0)
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: } tpcall = -1 [tperrno TPESVCFAIL]
    152234.CWSFEP1!DBSTATECHGSERV.4488: value of retc -1
    152234.CWSFEP1!DBSTATECHGSERV.4488: tpadmcall() failed:TPESVCFAIL - application level service failure
    152234.CWSFEP1!DBSTATECHGSERV.4488: past call to set svr to active
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: { tpfree(0x400289a0)
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: } tpfree
    152234.CWSFEP1!DBSTATECHGSERV.4488: got the subscription
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: { tpreturn(2, 0, 0x0, 0, 0x0)
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: } tpreturn [long jump]
    152234.CWSFEP1!DBSTATECHGSERV.4488: TRACE:at: } tpservice
    Something I am just not seeing. Thanks for your time.
    Jim

  • How to secure a PL/SQL procedure that is called from the web browser

    If you have ever seen the sample document management application, and tried to download a file that was stored in the system, you are probably familiar with the apex_util.count_click URL that is used to download the file. If you copy that URL and paste it into a new browser, you will not be prompted to login to download the requested file. I'm using SSO with Apex as a partner application. How can I secure a pl/sql procedure like this to redirect to the login page before beginning the download?
    Thanks,
    Kris

    You can use the second method described here:
    http://apex.oracle.com/pls/otn/f?p=31517:15
    You would use an application process instead of pasting the procedure call in the browser. In the case I describe, you don't need to grant execute to public on the download procedure.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • TS1702 I am updating my IPAD to version 5.1 and the update has stopped before completion. What is the procedure. If I stop the update or restart the IPAD will the update be corrupted and also the IPAD operating system.

    I am updating a new IPAD to the latest version from ITUNES. The update is not complete and has stopped. What  is the procedure to restart? If I close ITUNES i get a message that the IPAD is updating. Will closing the application cause the update to be corrupted and thus the operating system? Will the same occur if I power the IPAD down or disconnect it vis the USB port?
    Help!!!

    routnom wrote:
    AppleWill - when i closed the app and restarted Itunes, I had to go thru a Restore process. The restore goes to certain point and stops. It seems at the same time as the Update stopped. I can Force a stop and reboot the computer and try again. It possible the screensaver interrupted the restore? It doesn't sound right. Any suggestions?
    You may also want to go to:
    ~/Library/iTunes/
    This is done by  going to the "Go" in the Finder and select Go To Folder. Copy and paste:
    ~/Library/iTunes/
    In to Go To Folder selection. Look for a folder called iPad Software Updates. Delete anything in that folder and re download the upadate.

  • I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4.  However, I cannot record voice memos with my Bluetooth mic.

    I can record voice memos fine using the built-in iPhone 4 mic.  And my Bluetooth headset (Jawbone Era) works fine when I leave messages on voice mail systems etc. when calling on the iPhone 4, so it appears my headset mic is fine.  I can also use voice activated dialing, although it fails miserably interpreting numbers.  However, I cannot record voice memos with my Bluetooth mic.   I just get barely audible static.  Any suggestions?   Thanks.

    Hello, did you ever get an answer to your question? I just picked up a Jawbone Era and using on an iPhone 4s running 5.0.1. Seems to work fine on regular calls, but not on the built in Voice memos application. It worked fine on my older Jawbone Icon, but haven't tested on the 4s or iOS 5.
    Thanks!

Maybe you are looking for

  • Need help with page display URGENTLY!!!

    Hey, I'm trying to start up my new iPod nano. I've got the songs for it, but the page won't display all the way. Where it says the licence of agreement it won't show the o.k. button and before that it doesn't say the register button either. It doesn'

  • Importing song issues

    So I use the program "Ares" and all the music that gets downloaded from there goes to a specific folder. Now, I know exactly how to import those songs and erase the duplicates when that happens, but there has to be an easier way to do what I want to

  • Is it true that iPhone 4s for Malaysia will not have "siri"?

    Well, iphone 4s is going to hit the Malaysian markets on 16 December, but i have noticed that it doesn't have Siri. Is it True?

  • Shopping cart not getting released after SSR-SPS upgrade

    Hi all, We are facing an issue wherein the shopping cart doesnt get released at the final step. All the approvals are taking place correctly. when i test in the BOR BUS2121/SetReleased method , i am getting an error 'Buffer table not up to date'.  Me

  • SP02 showing update was terminated and not showing Spool no and other data

    Hi Friends, Can anyone guide me in the below problem After going to change mode of transaction when i go to message and i have done repeat output and further data and communication methods. After that i have saved document. After that when i enter in