Db replay and spa

Hi,
what is the minimum version for db replay and spa(sql performance analyzer) in real application testing.
please anyone tell the combination version for source and target db in RAT.

Hi,
If you type the words "database replay" into metalink you should get some useful notes. For your particular query, check out note 560977.1.
In theory, the source can be on version 9.2.0.8.0 upwards, target has to be in 11g...
Hope this helps.
Regards,
Ados

Similar Messages

  • Mail is not working properly (cannot replay), and skype cannot be answered

    Did the verification, repair and installation disk of Mac. Why mail is not working properly (cannot replay), and skype cannot be answered?

    I most often do not restart my new MBPro .... 10.9.5 .....  but happened to a day or so ago, and it immediately began to block / problem with email .... I waited to see if it sorted out, but no .....
    I get he server “p06-imap.mail.me.com” cannot be contacted on port 993 .....     then deselected SSL and that did not help, so went back and selected it again .... and again not working .....
    I can see my stuff "online" but I do not want to do it that way EVER ..... 
    your "deselect mail" in ICloud preferences    ....   did nothing good for me .... any other thoughts Linc ??   in fact, some hundreds of in and sent emails did not show up .... I'm hoping they are going to when this gets fixed .... but hey, .....  right now I'm NOT in business ....
    thanks

  • WAG200G and SPA-2102?

    I need some help here. I am trying to use my SPA2102 behind a DSL modem/Router WAG-200G. ive tried these combinations: WAG200G-->SPA2102-->PC WAG200G-->PC + SPA2102 Done port forwarding on WAG and even DMZ but no result -> no phone1 line on SPA2102!? However, if i connect PC thru either wag or SPA, PC works fine. Current IP address of SPA on my router is 192.168.1.101 but SPA works in this format 192.168.0.XXX any ideas?

    me_grimlock wrote:
    What are the ports that you have forwarded?
    The usual ports for the SPA are 5060-5061 and 16384 -16482. If the computer can already get online behind the SPA then if the settings on the LINE 1 for the subcriber information are correct then you should be getting a dial tone already. Check what you have on the info tab. The NEXT registration in field should tell you what wrong.
    in my experience if the time is below 30 seconds then ti is possibly a registration problem associated with the password or user ID. If it is higher sa y 1000 seconds or higher. It is not reaching sa proxy server of your provider. Check the proxy server address and NAT settings.
    Hope this helps.
    Thank you for replying..but i still cant use the phone!
    I have forwarded a lot of ports including 5060-5062 and 16384-16482.
    And the computer works fine behind the SPA but there is no dial-tone.
    As far as settings on SPA is concerned, my spa is blocked so i have to put a link in my browser which is something like http://192.168.0.1/admin/resync?http://name-removed.com/provision.php?MAC=$MA
    and then im not able to access the SPA.
    otherwise i reset the spa using my phone and then login on spa but since i dont have the voip settings , i end up using that auto-sync!
    DSL/ROUTER/WAG200g --> SPA2102 --> PC AND phone
    SPA's ip on WAG200G is 192.168.1.101
    AND WAG200G IP is 192.168.1.1
    AND SPA IP 192.168.0.1
    PC working fine. but phone not working. Please help.
    Message Edited by Technocrate on 08-14-2007 12:11 PM

  • TS3899 I am receiving email on my iphone 5OS but I am not able to replay and forward. How can I change setting?

    I am receiving email on my iphone 5OS but I am not able to replay and forward. How can I change setting?

    Close out of the mail app, double tap the home button and completely close out of the app.
    Then do a reset, no data loss.  Hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.
    Then check your email again.

  • ASR 1006, are the SIP and SPA cards Hot-swappable?

    I can find references that the SPA cards should be hot-swappable in the form of documents stating you should shut down traffic before removing, but I can not find any clear reference that states that the SPA and the corresponding SIP modules can be pulled while the chassis is on.

    Both modular SIPs and SPAs are hot-swappable in ASR1K:
    http://www.cisco.com/c/en/us/td/docs/interfaces_modules/shared_port_adapters/install_upgrade/ASR1000/asr_sip_spa_hw/ASRmin.html#73220
    http://www.cisco.com/c/en/us/td/docs/interfaces_modules/shared_port_adapters/install_upgrade/ASR1000/asr_sip_spa_hw/ASRsin.html#pgfId-1060193
    (Text in the second link begins with "Cisco 7600 series router SIPs and SPAs", but that's a typo, the book is about ASR1K (the statement isn't wrong though - SIPs and SPAs are hot-swappable in the 7600 series as well))

  • Sound issues in a replay and....

    Below is code for a simple game that has music that starts as soon as the game scene is reached....third scene. There are 4 buttons associated with the music, volume up, volume down, stop music,  and play music.
    As I said the music plays automatically at the start of the game, which I want. The up, down and stop volume work. The problems are.
    First, if you stop the music the play button will not start the music again.
    Second, none of the sound buttons work on a replay.
    Would it help to have a link to the game? I will up load and put a link in in a few minutes.
    I am stuck. I am new to actionScript. I am taking a class and the project is my final. I look forward to the day when Action
    I appreciate your help!
    Thanks,
    Michelle
    var bool:Boolean
    var score: Number = 0;
    var flag:Number = 1;
    var myTimer:Timer = new Timer(1000);
    var soundReq:URLRequest = new URLRequest("music.mp3");
    var sound:Sound = new Sound();
    var soundControl:SoundChannel = new SoundChannel();
    var volumeControl:SoundTransform = new SoundTransform();
    var flag2:Number = 1;
    count_txt.text = "0";
    myTimer.addEventListener("timer", timedFunction);
    insect_btn.visible = false;
    timer_txt.text = "20";
    function disappear(e:MouseEvent):void
        if (timer_txt.text == "0")
            launch_btn.removeEventListener(MouseEvent.CLICK, target);
            insect_btn.removeEventListener(MouseEvent.CLICK, disappear);
        else
            insect_btn.visible = false;          
            count_txt.text = String(++score);
    function target(e:MouseEvent):void
        if(flag==1)
            myTimer.start();
            flag = 0;
        insect_btn.x = Math.random()*625;
        insect_btn.y = Math.random()*475;
        insect_btn.visible = true;  
    function timedFunction(e:TimerEvent)
       var tc:int= 20 - myTimer.currentCount;
        timer_txt.text = tc.toString();
        if (myTimer.currentCount >19)
            insect_btn.removeEventListener(MouseEvent.CLICK, disappear);
            launch_btn.removeEventListener(MouseEvent.CLICK, target);
            myTimer.stop();
            gotoAndPlay("done_frame");
    function playAgain(evt:MouseEvent):void
        gotoAndPlay("play_frame");
    if(!bool){
    bool=true;
    sound.load(soundReq);
    soundControl = sound.play();
    function playSound(event:MouseEvent):void
               if ( flag2 == 0)
                soundControl = sound.play();
                flag2 = 1;
    function stopSound(event:MouseEvent):void
        soundControl.stop();
        flag = 0;
    function increaseVolume(event:MouseEvent):void
        volumeControl.volume += .5;
        soundControl.soundTransform = volumeControl;
    function decreaseVolume(event:MouseEvent):void
        volumeControl.volume -= .5;
         if (volumeControl.volume >= 0)
            soundControl.soundTransform = volumeControl;
        else
            volumeControl.volume = 0;
    insect_btn.addEventListener(MouseEvent.CLICK, disappear);
    launch_btn.addEventListener(MouseEvent.CLICK, target);
    btn_play.addEventListener(MouseEvent.CLICK, playSound);
    btn_stop.addEventListener(MouseEvent.CLICK, stopSound);
    btn_up.addEventListener(MouseEvent.CLICK, increaseVolume);
    btn_down.addEventListener(MouseEvent.CLICK, decreaseVolume);

    The sound control buttons are available for the entire timeline. Other than when I went to turn in a different project today I have been playing with this problem.
    Can you see anything wrong with the AS below? The only thing I can think of is it has to be a typo of some sort.  I gone over it so many times I don't think I even see it anymore.
    function handleClick3(e:MouseEvent):void
        if ( e.target == btn_again)
        gotoAndPlay("play_frame", "game_scn");
    btn_again.addEventListener(MouseEvent.CLICK, handleClick3);
    I just got this error code.  It happened when I click more than once on the sound button during the replay. I havn't had much success when I google these errors. I will do that next. But just in case you recognize it. Here it is:
    ArgumentError: Error #2068: Invalid sound.
        at flash.media::Sound/play()
        at find_the_butterfly_fla::MainTimeline/playSound()

  • SIP phone and SPA 3102

    Hi,
    I don't have an ipPBX or call signaling server. Can I register a SIP phone on the remote SPA 3102 then call the remote number. SPA 3102 is on remote site, the FXO port is connected to a phone line. My SIP phone is on local site, connected to Internet.
    Thanks

    yytellmey wrote:
    Hi,
    Can I register a SIP phone on the remote SPA 3102 then call the remote number. SPA 3102 is on remote site, the FXO port is connected to a phone line. My SIP phone is on local site, connected to Internet.
    Yes you can do that. You need to know the ip address where you are calling. This is called direct ip dialing. You can call the SPA3102 and have the attached phone ring, or you can call the SPA3102 and have it dial a call out the pstn line. It all depends on what you want to do.
    Initially you can get it working with whatever ip address you have at the moment. For the long term, if you don't have a static ip address you can get a symbolic address from someone like dyndns.com and then when your ip address changes you setup some means, either thru your router that supports dynamic dns, or with a pc program to keep your ip address updated at dyndns for your symbolic address.
    You almost always have to forward the sip signalling port in your router to the SPA3102. You may also have to forward the spa's rtp ports in your router to the SPA3102.
    There are a couple of ways to configure the SPA3102 when you want to bridge the call out the pstn line. The simple way is to just return a dial tone to the caller and then the caller enters the pstn number they want to dial. A more complicated way is to send a sip invite to the SPA3102 and have the SPA dial the number. The latter method is more reliable because you don't have to send dtmf signals over your voip link.

  • Extend telephone system extension to home - PAP2 and SPA-3102

    Hi All,
    I was wondering if someone could explain if this setup is easily implemented, or if it would be best left to a professional!
    In short I am trying to extend one of my office telephone extensions to my home. I have found this product/setup on eBay which does exactly what I want it to but it carry's a rather large price tag.
    http://cgi.ebay.co.uk/Voip-adapters-Extend-your-telephone-system-anywhere_W0QQitemZ280227103178QQihZ018QQcategoryZ34165QQcmdZViewItemQQ_trksidZp1742.m153.l1262
    I already have the PAP2, and am planning on buying the other piece of hardware but I just wanted to check that this is something I could setup myself. Any and all advice will be gratefully received!
    Kind regards,
    Matthew
    P.S. I am fairly familiar with networking but I have very limited knowledge on VoIP.

    Hello,
    look at this page http://www.provu.co.uk/support.html , check manuals named :
    Linksys ATA Back-To-Back 1x SPA-3000 and 1x SPA-1001.(pdf)
    Linksys ATA Back-To-Back 2x SPA-3000.(pdf)
    Linksys ATA Back-To-Back 2x SPA-3000 and 1x SPA-2000.(pdf)
    SPA-3102 has VoIP and PSTN part moreless identical to SPA-3000, just has additional build-in network router
    SPA-2102 has VoIP part moreless identical to SPA-2000, just has has (like SPA-3102) build-in network router
    PAP2T is similar to SPA-2000
    PAP2 is very similar to SPA-2000
    SPA-1001 is (except of dual voip registration) similar to one half of PAP2 - VoIP adapter with one port for analog phone
    Thus using the mentioned info you shall be able to setup phone line VoIP extension.
    Your knowledge of networking will come handy, the network setup is important part of this setup.
    Message Edited by Scorpio-cz on 03-10-2009 10:11 PM

  • Always use default account for replays and forwards

    Dear All,<o:p></o:p>
    I have the next setup:<o:p></o:p>
    .- Two different pop account using the same .pst file, by default outlook use the account and emails is received as the from account
    when replying and forwarding that email.<o:p></o:p>
    I need to always reply and forward from the default account even when the emails is received by the other pop.
    Thanks in advanced.<o:p></o:p>

    Hi Daniel,
    Edit the SMTP (Outgoing Server Settings) server information and assign the details of second email address through which you want to send email.
    You can also use the given VB code to perform this task:
    Set oMail = Application.ActiveExplorer.Selection(1).Reply
    Source:
    http://www.slipstick.com/outlook/email/choose-the-account-to-send-a-reply-from/
    Note: Improve community discussions by marking the answers helpful otherwise respond back for further help.
    Thanks
    Clark Kent

  • Real Application Testing (RAT); questions

    Hi,
    We are currently working on a missing involving RAT, both SPA and DB Replay.
    The customer raised some questions and I was wondering if anybody has more detailed information to share?
    FYI: we are using in most cases the API calls, as we don’t have an EMGC 11G available, only Database control.
    h4. Q1: If the DB capture runs out of space, what would be the impact on Prod database
    My response would be: no impact on the database as the recorder stops
    Best Practice: create a separate location to store the recording
    h4. Q2: What could be missing with RAT (SPA/DB Replay) --> gap analysis.
    Reduce as most as possible the time needed by ADM (Development Team) in order to validate database migration.
    The database team wants to be as independent as possible of the development team in order to do the upgrade of the databases more autonomous. They want to have an idea on what they could be missing if they use SPA and DB Replay to make sure they don't miss anything which could have an impact on the developers after the upgrade. Are there any particular things that SPA and DB-replay would miss, and as a consequence aren't tested, which could lead to unhappy developers after the upgrade of the database.
    h4. Q3: Difference between DB Replay and SPA (when to use which one)
    h4. Q4: Oracle recommends shutting down database before recording workload, but may not be always possible (Web Banking), when and how to do it then?
    My response was to start recording at a the lowest load time.
    Any other ideas to minimize the impact of a running instance
    h4. Q5: Does it need to filter out sys/system, rman,... Activities during captures?
    h4. Q6: The capture report is showing 5 user calls captured with Errors, but I can’t find any related information on what went wrong.
    To what is this related?
    Captured Workload Statistics
    •     'Value' represents the corresponding statistic aggregated across the entire captured database workload.
    •     '% Total' is the percentage of 'Value' over the corresponding system-wide aggregated total.
    Statistic Name     Value     % Total
    DB time (secs)     7.77     10.43
    Average Active Sessions     0.03     
    User calls captured     1713     9.09
    User calls captured with Errors+_     5     
    Session logins     23     32.39
    Transactions     33     3.74
    h4. Q7: During the capture we can execute an export AWR, but we also need to do an import AWR somewhere, and this is not documented on how this is done in the RAT User Guide.
    Can you comment on how this process is working in order to do some proper reporting.

    Q1
    I have not had a space issue in the RAT capture files that caused a database issue when space ran out.
    Q2
    You will miss anything you filtered the capture on, anything that errored during the capture
    Capture will also not get and to be aware of
    Direct Path Load (SQL Loader)
    Shared server (Oracle MTS)
    Oracle Streams & Advanced Replication Streams
    Non-PL/SQL based Advanced Queuing (AQ)
    Flashback queries
    OCI-based Object Navigation
    Non SQL-Based Object Access
    Distributed transactions, remote describe/commit operations (will be replayed as local transactions)
    Q3
    I typically use DB Replay for an overall work load perspective, SPA for SQL Level.
    For example I will to a DB replay find from my reports SQL that needs a further look see and use SPA from there.
    or potentially use SPA to focus on the SQL itself and not concern myself the the whole workload until I am ready.
    Q4
    Set the SCN for when capture is started, have the replay database be recovered to that SCN prior to any replay operation. No real need to shutdown, done this many times with success.
    Q5
    Typically I will filer any grid control agent or other agent software activities from the capture for sure.
    Q6
    Your Capture Report does not show anything?
    Q7
    You can extract and load AWR with the following packed procedures
    sys.dbms_swrf_internal.awr_extract
    sys.dbms_swrf_internal.awr_load

  • Receiving fax trought spa 3102 asterisk 1.4 and spa2102

    I have some problem receiving fax from a pstn line trought spa3102 - asterisk and spa 2102. I have updated the firmware of the latest version for spa3102 and 2102 and I have setting the port of spa 2102 were is attached the fax machine as described in the CISCO Small Business Administration guide (page nr. 55 - using a fax machine) but i cannot receive fax at speed upper to 2400 b.
    My setup is:
    pstn line -> spa3102 - asterisk 1.4.29 -> spa2102.
    The spa3102 is configured to pass all control to asterisk. When a call is answered and it is a fax, this call is transferd by operator to the internall extension of spa2102 where is attached the fax machine.
    I don't know as configure the pstn port of spa3102 for fax receiving.
    Can you help me ?
    thank in adavnce.
    e.

    Thank you for your reply.
    Ok, I report my solution because I think that can be userfull for other users.
    I have resolved the problem in this manner:
    1) on the SPA 3102 I have set the PSTN Line, audio section:
    a) preferred codec G711u;
    b) use pref. codec: YES;
    c) silence supp. enable: NO;
    d) echo canc enable: YES;
    e) echo canc. adapt enable: YES;
    f) echo sup enable: NO;
    g) FAX CED Detect Enable: YES;
    h) FAX CNG Detect Enable: YES;
    i) FAX Passthru Codec: G711u;
    j) FAX Codec Symmetric: YES;
    k) FAX Passthru Method: reinvite;
    l) FAX Process NSE: YES;
    m) FAX Disable ECAN: no
    2) on the SPA 2102 on the line were is  attached the fax machine, audio section:
    I have followed the setup as described in the document that I have mentioned in my first message that is:
    a) Preferred Codec: G711u;
    b) Use Pref Codec Only: YES 
    c) Silence Supp Enable: NO
    d) Echo Canc Enable: NO
    e) Echo Canc Adapt Enable: NO
    f) Echo Supp Enable: NO
    g) FAX CED Detect Enable:YES
    h) FAX CNG Detect Enable: YES
    i) FAX Passthru Codec: G711u
    j) FAX Codec Symmetric: YES
    k) FAX Passthru Method: reinvite
    l) FAX Process NSE: YES
    m) FAX Disable ECAN: NO
    n) FAX Enable T38: NO
    o) FAX Tone Detect Mode: caller or callee
    With this configuration I can receive and send fax to 14.400 on PSTN line acros the asterisk and the SPA 3102 / 2102 device.
    The phone attached on the line 1 port of the spa 3102 have not echo when answer or call on the PSTN line as the other phone that have access to PSTN Line.
    The phone of the fax macchine have echo, but usualy is not used as phone.
    E.

  • VPLS support for SIP-600 and 10GE-SPA

    Hello all,
    is SIP-600 (7600-SIP-600) with Cisco 1-port 10GE SPA V2 (SPA-1X10GE-L-V2) support VPLS ?
    i see in datasheet SIP-600 support for VPLS but in 10GESPA datasheet there is no VPLS features support
    Thanks
    Regards,

    Hello,
    Yes, it should.
    You could check Table 4-9 VPLS Feature Compatibility by SIP and SPA Combination:
    http://www.cisco.com/en/US/docs/interfaces_modules/shared_port_adapters/configuration/7600series/76cfgsip.html#wp1270728
    There are some restricition about H-VPLS on c7600/SIP, like it could be seen at the "VPLS Configuration Guidelines"
    section of above link. But they are generic for SIP-600 itself:
    – H-VPLS with Q-in-Q edge—Requires a Cisco 7600 SIP-600 in the uplink, and any LAN port or Cisco 7600 SIP-600 on the downlink.
    - H-VPLS with MPLS edge requires either an OSM module, Cisco 7600 SIP-600, or Cisco 7600 SIP-400 in both the downlink (facing UPE) and uplink (MPLS core).
    As for SPAs - restriction is about H-VPLS and FastEthernet one:
    "Note: H-VPLS is not available on Fast Ethernet SPAs"
    http://www.cisco.com/en/US/docs/interfaces_modules/shared_port_adapters/configuration/7600series/76cfgeth.html#wp1196808
    Thanks,
    Sergey

  • A video has popped up on my start page and I can't turn it off or stop it from replaying.

    My start page is the basic firefox page. Just today (11/18/14), a video popped up about the internet. I watched it, but it keeps replaying and I can't find a way to turn it off. FYI, I don't tweet or use facebook, so if I'm supposed to vote or go there, I can't.

    The easiest way to get around that is to just set your own homepage.
    See - [[How to set the home page]]
    Many of us have disabled the changes to the top part ''[brandLogo portion]'' of the Firefox Start Page, so that we don't see that "stuff".
    If you feel venturesome, here's how to "fix it".
    Type '''about:config''' in the Location Bar and hit Enter. Accept the "dragons" message to see the advanced prefs screen. ''Use the Search field at the top to enter the pref mentioned below.''
    You can set the <b>browser.aboutHomeSnippets.updateUrl</b> pref to an empty string to stop your Firefox from retrieving "snippets" and brandLogo changes. Right-click that pref and select '''''Modify''''' then clear the Value for that pref in the box that appears, then click OK. ''That will also disable the "snippets" that appear below the Search container on the default homepage.''
    Then you need to open your Profile folder, via Help > Troubeshooting Information > Profile folder >> Show Folder ''button''. Then close Firefox.
    With your Profile folder open and Firefox closed ("3-bar" Firefox menu button > Exit/Quit), wait minute or so, then delete the <b>storage\moz-safe-about+home</b> folder in the Firefox profile folder to remove the brandLogo and snippets stored in IndexedDB to make Firefox use the default brandLogo and a default snippet set.
    If you should later changes your mind about those modifications, you can reset the browser.aboutHomeSnippets.updateUrl pref via the right-click context menu and use Reset to get the default value back and start using the '''''storage\moz-safe-about+home''' folder again.

  • Two separate videos in the same frame, and large format video.

    Hello. 
    I'm very new to this program.
    I've only done basic editing, such as this video where I took scenes from 3 different computer game replays and spliced them together.
    I own an eyefinity system (triple monitor) and record replays from games.
    The replays are half-size, but still 3008x600 pixels. Here's a sample of one reduced to fit in a 1920 pixel width.
    I want to get two of these in to one 16:10 or 16:9 frame.
    So two questions:
    1. Each time I try importing these avi's in to my Premier Project, they get cropped. The largest i've been able to make the sequence is 1280x1080. (sequence preset "DVCPROHD")
    I assume i'm missing something obvious...or there's a limitation of how many pixels wide Premier can deal with. If it's a width issue...I can resize the avi's first. Although I haven't seen a way to resize in Media Encoder without the upper and lower black bars...which I believe will create a problem. (see "Here's a sample" video above)
    2. I want to put two of these long rectangular replays in the same frame. Not overlapping, but one at the top of the frame...and the other at the bottom. Is this possible?
    The only thing I could find that came close was "multi-camera monitor". I was unable to figure that out. Is that what I have to learn about...in order to do this?
    Thanks very much.

    How do I choose the right sequence settings?
    Picture-in-picture (PIP) and split screen
    Multi-camera sequences are for real time switching between different sources.
    Multi‑camera sequences

  • IMovie 10.0.2 - Instant Replay & Zoom at the same time??

    This is for iMovie 10.0.2
    I have a video clip in which I added the Instant Replay effect without any issues. Now, I'm looking to add a Crop or a Ken Burns effect on the Instant Replay section only, this in order to focus the instant replay on the action that I want to replay, and chop the rest off.
    Any suggestions?

    Place the playhead at the start of the replay portion of the  clip and select split clip from modify menu. Then select the replay clip and apply ken burns from crop button in tthe sdjust menu.

Maybe you are looking for

  • Context objects

    Hi. I'm trying to use context object in order to decide what BPM should be used in a receiver determination. As sender, i have an R3 with an ZBAPI_CONFIRMATION. As receiver, 4 BPM. Each BPM is different and depending of a value of ZBAPI_CONFIRMATION,

  • Update table TTDTG

    Good afternoon, I wonder if you can help me? I want to change a description of an object in report S_ALR_87012287. In order to do that, I have replaced "Partita IVA" by "IC/PIVA" in table TTDTG. When I run the report afterwards, no changes have been

  • What are Device PIN and Device IMEI please?

    Dear World... I live in Germany and O2 is my network. I've set up my email and bbmessanger accounts and everything worked great until a few days ago. An icon 'email setup' has appeared again but my email works fine. I can't get online now though it i

  • How to use tomahawk panelTab's  visibleOnUserRole attribute.

    Can u explain me with an simple example to use tomahawk panelTab's visibleOnUserRole attribute. also explain where this attribute will use. any real time example...... where i can get Tomahawk tutorials with examples and explanations for each tag....

  • Inserting the Brio Query Data into EIS OLAP Model  tables directly

    Dear Experts, Can someone please suggest how we can export data (result set records) from bqy files' queries into an EIS server's OLAP Model's tables? Right now I have a cube on Essbase server getting the data from excel sheets which store the data f