Issues on ODBC CALL SQLStatistics

We have an application that call ODBC
function SQLStatistics to get the information of database objects, oracle
ODBC Driver can return the right answer,
the problem is that the process is very
slow, we analyzed the database, why oracle ODBC driver doesn't use the instant statistics information from
system view?
thanks for your advice
Mark

The first issue you raised doesn't seem to be a cucm prompt. This looks like the Telco is playing this prompt. Was this an outside number you forwarded the call to? Does this happen when you do a call forward to an internal number
The second issue can be solved by changing the calling device properties on the gateway. Go to the gateway, then scroll to:
Call Routing Information - Outbound Calls and choose either of the ff: ( it appears that the gateway is set to use the last/first redirecting number (which is the users desk phone not the calling phone)
Originator—Send the directory number of the calling device.
Once the change is made reset the gateway. If its mgcp you need to stop and start the mgcp process on the gateway itself

Similar Messages

  • Issue using ODBC CALL

    I'm calling a oracle stored procedure using ODBC Call method
    {call testSP(?)}"&params
    The parameter read from the SP is VARCHAR2. On this call, the 2001th character gets replaced by chr(0). The same SP called with Begin, End block does not reproduce the error. Can someone please point me to a document which explains this? please feel free to ask any questions to clarify the issue

    maybe you can try another theme. You can download hundreds of themes. There is surely one that displays the time during the "incoming call" screen.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Unable to connect to SQL database through ODBC calls

    I have been looking around for an answer to this, but haven't found the exact issue I'm seeing.
    I have several Excel spreadsheets which have been working until recently, which use an ODBC call to a remote SQL database. The database is running, remote connections are allowed. The SQL server is in a domain which has no external trusts. Users with accounts
    in this domain can remotely access the SQl databases through ODBC just fine. Users who do not have domain accounts in this domain are being denied access by their domain account, and the SQL authentication is not passed through, even though remote access is
    set to allow "everyone", and the database is set to Windows authentication and SQL authentication. This worked until early this week (the spreadsheet was created in 2010), and I have been looking fruitlessly for a fix ever since. As far as I know,
    no changes were made to group policy on this domain, and no changes were made to the server or database recently, except Microsoft patches. None of the patches this month looked like they would affect this.

    It works locally on the server and remotely for users in the same domain. I am trying to use the SQL account and password to connect to the database, but users from outside this domain fail to reach the SQL database for authentication. It looks like Windows
    authentication is not passing the SQL credentials on if the windows authentication fails. I don't know how to resolve this. The only options in SQL are "Windows authentication and SQL authentication" or "Windows authentication only". The database is already
    set to the first option. Somehow, I need to set the server to allow the SQL authentication even if the Windows authentication fails.
    Hi pkuti01,
    SQL Server mixed mode is "Windows Authentication and SQL Server Authentication", we have to restart SQL Server service after change the authentication to mixed mode.
    In your case, have you got any error message/information if you faild connect to SQL Server via ODBC? If so, please post them to us for further investigation. Furthermore, here is an article regarding steps to troubleshooting SQL connectivity issues for
    your reference. Please see:
    http://blogs.msdn.com/b/sql_protocols/archive/2008/04/30/steps-to-troubleshoot-connectivity-issues.aspx
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support

  • ODBC call SQLDriverConnect for data source Server name failed: [ . Notify Customer Support.

    Need help !
    While running DS job through designer we are getting below error:
    ODBC call <SQLDriverConnect> for data source <SErver name> failed: <[>. Notify Customer Support.
    Additional notes:
    1. Source and Target datastore are getting connected properly as i have imported table's definition using it.
    2. Source and target data store pointing to SQL server 2008 R2 express edition DB (64 bit).
    3. It seems like server machine has both 32bit and 64bit drivers installed on it. Please refer attached driverdetails.jpg file for more details.
    Thanks

    Hi did you referred this :
    ODBC call <SQLDriverConnect> for data source <MyComputer\SQLServer2008R2> failed: <[Microsoft][ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist or access denied.>. Notify Customer Support.

  • How can I debug leaks caused by ODBC calls in app linked with libtt.so?

    Hi,
    we are using TimesTen Release 7.0.5.0.0 on Solaris 10.
    and we are using libtt.so to link our application and connect using ODBC calls.
    The problem is that we have made some serious changes to our large code base and now we see a leak.
    Here is what I know:
    1) Although it is easy to reproduce it doesn't seem to follow a clear pattern. ie. the amount leaked isn't a direct function of the number of request or time spent.
    2) When our application is linked with libttclient.so there is no leak at all.
    3) prstat shows increments of 4 MBytes each time it leaks.
    So I suspect it is because the memory isn't freed but how can I tell which ODBC calls are causing it?
    Is there a debug option I could turn on to help with this?
    Perhaps something in ttTraceMon?
    Thanks

    Hello Serge,
    Just a note that we often times get this type of alarm about memory leaks in TimesTen when using the libtt.so library when using tools such as top or prstat to gage memory consumption. The reality is that these commands are not a good way to look for memory leaks / memory utilization when using TimesTen in direct connect mode. The TimesTen database resides in shared memory and so the fact that prstat shows big or increasing numbers should not be alarming.
    The only reliable way to check for memory leaks is to use a tool designed exactly for that such as Purify, which the TimesTen development team uses extensively and so it's unlikely that you'll find memory leaks in TimesTen.
    Have you found that memory is being exhausted after a period of application runtime and transaction iterations?
    You could use ttTraceMon and work with TimesTen support/engineering to extrapolate and answer from the trace it gaves, but unfortunately, there's rarely an easy way to answer queries on what is going on in either the Permament or Temporary partition.
    I'd first make sure that there is indeed a problem but running your application workload for some time. My suspicion is that the prstat command results are being misleading once more.
    Regards,
    Henri

  • How to execute STP with Named type table as parameter through ODBC calls.

    Hi All,
    I am using Oracle 10g release 2. I am having a Stored function which takes Named Type Table as its parameter.
    For example
    CREATE OR REPLACE TYPE tblName is table of someUDT.
    CREATE OR REPLACE function nestfunction(t tblName)
    return NUMBER
    as
    //function body here.
    end;
    Now, I want to call this Stored function nestfunction through ODBC calls. Also want to add multiple rows in tblName parameter.
    But am unable to perform the above mentioned task. If you have answers please, reply.
    Thanks and regards
    ftil555

    Hi Arik,
    Thanks for the reply. I got the solution by configuring a NonXA data source. The problem was with internal commits of the fnd_global.initialize api.
    If the DB adapter is calling aPL/SQL procedure (written inside a pakcage) using the data source configured to support XA, will expect not to have any commits in side the procedure or anywhere, the XA driver will take of the commits and whole transactions. By default the FND_GLOBAL.INITIALIZE(...) procedure will have the internal commits, so it was throwing the errors.
    The solution was configuring the a NonXA Data source in the databae adapter configuration will allow the commits inside the callings procedures. So we created Two data sources one for XA and another for NonXA and we are using the NonXA datasource whereever we are calling the EBS APIs which have the internal commits.
    -- Khaleel

  • Having issues with phone calls on my new phone.

    Having issues with phone calls on my new phone. Other user is hearing echoes or nothing at all. This seems to be a common issue on here. VERY annoying! Anything seem to fix this problem?

    I had similar issues - Turns out it was a hardware problem or bad antennae - Call the tech support number and they can do some testing to determine the issue.  They might be able to give you a replacement if you do it quickly.

  • Okay, for a novice (iphone for dummies) what steps to take and in what order to identify specific problem and resolve issue of dropped calls and/or bad connections.  I have a 3g iphone4, I think.  Where is best place to find that information so I can veri

    Okay, for a novice (iphone for dummies) what steps to take and in what order to identify specific problem and resolve issue of dropped calls and/or bad connections.  I have a 3g iphone4, I think.  Where is best place to find that information so I can verify.  

    You can call your wireless provider and talk to them about it.
    You can restart your iphone, reset, your iphone and restore your iphone.

  • ODBC call fails under userwith no admin rights

    I installed the Oracle 9i client, like I always do, while logged in with admin rights. I install the basic client, and the ODBC driver, version 9, I believe.
    When the user logs on and tries to setup a link to some oracle odbc tables she gets the following error:
    ODBC - call failed
    Specified driver could not be loaded due to system error 5(Oracle in ORaHome92). (#160)
    Unless I am installing a different ODBC driver on other people's machiens, this is the way I have done it for all of the users in my building, and they don't seem to have a problem. And some of them do not have admin rights on their box

    let me add that the DSN is listed as a system DSN. And it is version 9.0.1 as the ODBC driver.
    Perplexed

  • 8961 phone having issue receiving and calling mobile phone

    Ext XXX is having issue receiving and calling mobile phone. It stated that 'Download Status -Failed' attached is the screenshot of the error in Cisco Unified CM Administration. Any idea where to look into?
    If i want to grab the log, should be from Trace & Log Central under CUCM?

    Phone goes "offline" for about 7-10 minutes at a time (every couple of hours) usually in the afternoon (near ~60% charge).
    In an office most of the day with coverage going from 4 bars to 0 bars every few minutes or so.  I never miss or drop a call though given the appearance of erattic signal. RSSI usually -83.  EvDO and 1x will flicker on and off througout the day.  WiFi is on all the time with WPA2.  Bluetooth is on without anything connected.  I will sometimes get the issue if I wander out of WiFi range (out for lunch)
    Reseting the phone will clear the problem.  Toggling the Airplane, WiFi, and Bluetooth on/off dont clear the problem.
    I have:
    - Exchange calendar setup with owa.mailseat.com (I believe they have Exchange 2003)
    - Google standard calendar (personal)
    - Google standard shared calendar (wifes)
    My wife has a Pre as well and to my knowledge has never had the phone offline problem. (I would certainly hear about it if she did )
    She has:
    - Google standard calendar (personal)
    - Google standard shared calendar (mine)
    * No exchage setup.
    Message Edited by zonyl on 08-29-2009 07:04 AM
    Message Edited by zonyl on 08-29-2009 07:06 AM

  • Issuing Solaris system calls through Java

    How can I issue a system call to Solaris using Java? (i.e. Start a script, open a file, and similar)

    Hi Srini,
    This is just a suggestion, but try entering the following commands (in your SQL*Plus session) before executing your stored procedure:
    set serveroutput on size 1000000
    exec dbms_java.set_output(1000000)Hope this helps.
    Good Luck,
    Avi.

  • IPhone 5 call quality issue. (Either call ends or very choppy on the other end)

    At random times my calls don't go through. The phone says call ended and doesn't ring. The reception is either full or close to full. This has occurred numerous times while calling different numbers. If I do manage to get the phone to ring, the person on the other end wouldn't be able to hear me as it would be very choppy. I have tried to reset the network settings with no luck. It is a random thing that happens at random times. It is not the carrier issue as all other functions of the phone work. Also this phone is an unlocked unit from Apple and is not in the U.S.

    I just replied to a similar post and I'll copy and paste my response here. I was having the same exact issue. Here is my possible fix.
    Yesterday I updated the OS to the latest release. Then right after that I called AT&T and they reset my sim card. Or something like that. They did some sort of reset.
    I then got in my car and drove around to test the phone. Because that is when the problem is worse. FINALLY they claim to be able to hear me clearly!!!!
    I think it was the combination of both the OS update and the sim card reset that fixed it. Hopefully..... It has only been one day but so far so good. I'll update this post if things change.
    Try this and let us know if this works for you.

  • Issue with using call transaction CJ9F and F.M  BAPI_PROJECT_MAINTAIN

    Hello All,
    In my custom program for a given project in selection screen we are getting all the related data as shown in CJ20N, in this screen I first created the WBS element and during save we used F.M BAPI_PROJECT_MAINTAIN to update the data, and next called transaction CJ9F to update BLC, after this we are comming back to selection screen 1000.
    Now from selection screen if i enter again into that project details screen and try to create a new WBS it is showing below information msg.
    Changing the contents of the field is not permitted
    Message no. CJ727
    If i remove the call transaction CJ9F part during save i am not getting the above error msg.
    I think i am getting this error when we call the function module BAPI_PROJECT_MAINTAIN twice in the program.
    Please help me to resolve this issue, as this msg is not allowing to save or create anything. 
    But i found that if i come totally out of my custom transaction and enter once again into that Z transaction it is working fine with out that message
    Please help me to resolve this issue.

    Hi,
    Not sure, but if it is possible, complete your project update using the custom transaction and do the CJ9F afterwards seperately.
    Regards
    Sreekanth

  • Issue with transferring calls to VM for the correct DN Unity Connection 9.1.2

    Hi all
    I have been facing an issue with a Unity Connection Server v9.1.2. Every time an internal extension (assigned to VM profile and to Unity as a user) which is configured to be transferred to VM after 20 sec or so NoAN,is called , Unity treats the call as the extension of the calling party and not the called party. Furthermore , I dont know if this has any relation with the problem I am facing but when I check the voicemail port status in RTMT its seems like that regardless it is a direct call to the Unity from an extension (dial the pilot number or press the messages button on the IP phone) or a redirected call from an extension to Unity due to NoAN configuration, the Reason is Direct and the caller party number is always the extension initiated the call and not the one redirected to the Unity (second case).
    I have changed the Use Last (Rather than First) Redirecting Number for Routing Incoming Call  Unity parameter in the
    System Settings > Advanced >Conversations -> checked   and
    Redirecting Diversion Header Delivery - Outbound CUCM parameter ->checked
    in the SIP Trunk configuration used for the integraton of the CUCM with Unity but none of those seem to address this issue. Is there any guidelines you can give me to overcome this issue?
    The servers I am using are
    CUCM v9.1.2 BE
    CUC    v9.1.2 BE
    Thank You in Advance

    Hello again,
    The Voice Mail Box Mask was blank before. However I tried XXXX (I use 4-digit extension for the VM pilot) but this did not seem to fix anything to the system....Same situation as before. Any more suggestions?
    Thank you

  • Issue With Receiving Calls. PLEASE HELP!!!!

    For the past couple of months both lines on my account have been experiencing issues. Randomly, when someone attempts to call one of the 2 lines (me or my wife), they receive the "Thank you for calling Verizon Wireless. The number you have reached has been changed, disconnected, or no longer in service." They then have to call back (sometimes multiple times before they can get through). I experience it when I call from my mobile to my wife's phone as well. It is become quite a pain and VZW has been NO help at all!!! They claim I am in a marginal service area. There are multiple problems with that statement.
    1. I am in a great service area and I always have full service.
    2. The problem does not always occur in my home service area!!!
    The rep then changed her mind and said it must be equipment, however my wife has been through 3 different phones within the past couple of months.
    She then recommended I changed carriers!!!!! This really upset me as I have Verizon service for everything (VZW and FiOS).
    Can someone please recommend any kind of solution????

    jnd1020 wrote:
    For the past couple of months both lines on my account have been experiencing issues. Randomly, when someone attempts to call one of the 2 lines (me or my wife), they receive the "Thank you for calling Verizon Wireless. The number you have reached has been changed, disconnected, or no longer in service." They then have to call back (sometimes multiple times before they can get through). I experience it when I call from my mobile to my wife's phone as well. It is become quite a pain and VZW has been NO help at all!!! They claim I am in a marginal service area. There are multiple problems with that statement.
    1. I am in a great service area and I always have full service.
    2. The problem does not always occur in my home service area!!!
    The rep then changed her mind and said it must be equipment, however my wife has been through 3 different phones within the past couple of months.
    She then recommended I changed carriers!!!!! This really upset me as I have Verizon service for everything (VZW and FiOS).
    Can someone please recommend any kind of solution????
    First, you really should consider calling another representative and report your disatisfaction with that prior rep. Advising you to switch carriers was in poor taste. They are trained quite thoroughly to assist customers to the fullest and not advise leaving VZW. Secondly, if the issue has transcended the device in that it has happened through multiple esn changes (your wife has been through 3, you wrote), then it obviously is not the device. Next, if you are experiencing intermittent issues with this in an area that otherwise works fine, it probably has nothing to do with the service coverage; if the coverage was a problem, you either would be unable to make a call at all, would have multiple dropped calls, or would experience an increasingly degraded call quality. This tells me that it has to do with the phone's connection to the network, which an over-the-air program attempt might resolve (*228, option number 1 - you could even possibly get away with option number 2) like the prior individual explained above. The likelihood is that you are going to need to file a trouble ticket with your lines, which can only be done through technical support after going through the initial level of troubleshooting through customer care. You really should call them again, with this knowledge backing you up.

Maybe you are looking for

  • IPod Classic Trouble

    i Recently Found my Ipod Classic that i been searching for the last 3 months and when i connected it to itunes it doesnt sync completely and stops itunes from working. Can Anyone Help Me On This?

  • IN MY MAC option not shown on Mail left bar

    Hello everybody:      I hope I can get some help on this.      I use Mail for all my email activities.      I like to move items from the Inbox, to a respective folder, using the right click, then Move to, and then it will appear the list of my folde

  • Select statement not populating the internal table

    Hi, I have a requirement where I have to upload a file from C drive, the fields in this file are VBELN, description & date of creation. I am able to get this file into the internal table. After this i need to cross check the VBELN against VBRK-VBELN,

  • Comparison of Oracle 8i and Oracle 9i

    Hello everyone, I would like to know all the diferences between the Oracle 8i and Oracle 9i.The diference in features of these 2 versions and the technical difference between the two. If anywhere the data type gets changed between the 2 versions, tha

  • Backup all projects by default (and more)

    Is there any simple way to get Version Cue to backup all data on a regular basis? Or to set a default Backup Configuration for all future projects? Having to define Backup Configurations on a per project basis (manually, and only after project creati