Insert query is very slow on prod but is very fast on the local

Hi,
An insert statement ( bulk insert..) takes around 45 minutes to insert 25,000 records in prod but the same in our local env( local env is a copy of production) takes 3 minutes for inserting 1,50,000 records . This is a very huge difference. The explain plan of queries on both the env is same. The query is a simple join between a GTT ( 25,000) and a normal table ( with 10 records).
I still dont have the trace for the query from prod . The database version on prod is 11.1.7 and the version on local is 11.1.6
In the mean time while I wait for the trace it would be really helpfu If any of you can let me know the parameters /next steps that should be followed. I have compared the session level parameters on both the env and its the same.
Thanks in advance
Kevin

Look for cost, bytes, and rows. These numbers can be off-base since they're estimates, but I'm wondering if the values are the same on both systems. Different values could mean the CBO is interpreting the data as having different characteristics. "almost the same" could suggest the CBO is making different decisions - not all operations are listed in execution plans. For instance, I've seen sort operations taking place from V$SESSION_LONGOPS when no sort was directly listed in an execution plan.
I was hoping you could get wait information from the 10046 trace :(

Similar Messages

  • My airplay mirroring won't work with my macbook air, eventhoug my internet connection is very fast. The image will appear after 5 seconds.

    My airplay mirroring won't work with my macbook air, eventhoug my internet connection is very fast. The image will appear after 5 seconds.

    Mirroring is done over the local network so internet speed isn't relevant.
    I would check istumbler.net to see if there is any interference

  • Battery dishcarge very fast - all the app. closed etc: 3G, Push Mail, Notification, Locator still the same problem.

    My Iphone 4 battery incation show 100% and all the application etc. 3G, Push Mail, Notifications, Location Services closed but the battery will discharge
    very fast. After 5 minutes battery indication will showed 98% without using anythings. Battery cycles already make 2 to 3 times still same.

    I had the same situation. I purchased a new phone from the local store earlier in November, but the production week indicated June. Battery was completely dead, and it took quite a while to activate.
    My battery usage life has barely been able to top 4 hours before shutoff.
    If you schedule an appointment, they will be able test your battery.
    One suggestin that might work. Reset and retore as a new phone instead of off your 3G backup. This works for some (but not for me).
    I will be checking back to get a new phone I think.

  • I recently performed a upgrade from 7.0.5 to 7.0.6 and I found that my phone battery drain up very fast and the battery unable charge to 100. Besides, the battery live is going down when I charging with  3G on.Any solution for my issue? Please help.

    Hi, I had my iPhone 4S and I'm recently upgraded it from 7.0.5 to 7.0.6 and I found the battery drain up very fast if compare to iOS 7.0.5. Besides, I also unable to fully charger my phone to 100% now - max is 85% with phone either in airplane mode or switch off totally
    May seek help from your advise on above case.
    Thank you
    Best regards,
    Adrian

    Try killing the battery (Let it drain---turning on all the settings, playing a video, and having the brightness up kills it faster), then let it fully charge from there. Let me know if that works.

  • Battery draining very fast after the new update 7.1 and major network issues

    after updating to ios 7.1
    battery is draining very fast 50% in just 1 hr... while doing sme basic work
    and when i turn on cellular data... network goes off zero and after 10 mins i get network coverage... !!

    Hi Tezp,
    If you are having issues with unusual data and battery consumption and would like to see the per-app cellular data on your iPhone, you may find the following article helpful:
    iPhone and iPad (Cellular Models): Understanding cellular data settings and usage
    http://support.apple.com/kb/ht4146
    Regards,
    - Brenden

  • SSRS report running very slow but query is very fast in SSMS

    I am running a very basic report. I am just retrieving some data from a table and I am using a parameter in the Where clause of the query. The query runs fast (in less than 5 secs) if I hardcode the parameter in the SSRS query but if it's left as a dynamically
    chosen parameter the query takes over 5 minutes to render. I have read a little about "Parameter Sniffing" but I am not sure if that applies to my case since I am only using a TSQL query and not a SP.
    Any feedback would be appreciated.
    PS: My query looks like below:
    Select Col1, Count(*)
    From Tbl1
    Where Col2 = @Para1
    Group By Col1
    KK

    Hi Kk,
    Is your data retrieval takes time or report rendering takes time? Run this query in your report server database to get the above two. Select * From Executionlog2
    Check the timings data retrieval time, processing time, and report rendering time.
    If data retrieval takes time,
    Give some default values to filters (parameters).
    If parameter rendering takes time
    Choose different options for parameter selection. Instead of multiselction of parameter, use like etc.
    Let me know which causing this problem after running the SQL profiler or executionlog query so that I can help you more. Or you can use SQL profiler to check what query takes more time.
    Hope this helps.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Select running slow in prod but work fine in T-1

    We have a query which run very slow on production database it is taking around 7 min to run.
    While it is working fine on T-1 database which gets refreshed every night, here it takes around 3 seconds.
    both the os version and database versions are same.
    Database is also refreshed and have same data and statistics.
    please update what could be the reason?
    SELECT c.txt_master_claim_no "Master Claim No",
    c.num_serial_no "Serial No",
    TO_CHAR(c.dat_loss_date, 'dd / mm / yyyy') "Loss Date",
    d.departmentname "Line of Business",
    m.productname "Product",
    tab.stat "Status"
    FROM (SELECT t.num_claim_no, 'REPUDIATION' stat, num_update_no
    FROM gc_clm_gen_info t, gc_clm_os a
    WHERE t.num_update_no =
    (SELECT MAX(p.num_update_no)
    FROM gc_clm_gen_info p
    WHERE p.num_claim_no = t.num_claim_no)
    AND t.txt_claim_status = 'X'
    AND a.cur_os_amount = 0
    AND a.num_ac_year * 100 + a.num_ac_month =
    (select max(s.num_ac_year * 100 + s.num_ac_month)
    from gc_clm_os s
    where s.num_claim_no = a.num_claim_no)
    AND t.num_claim_no = a.num_claim_no
    UNION
    SELECT a.num_claim_no, 'DISBURSE' stat, num_update_no
    FROM gc_clm_os a, gc_clm_gen_info b
    WHERE a.cur_os_amount = 0
    AND a.num_ac_year * 100 + a.num_ac_month =
    (select max(s.num_ac_year * 100 + s.num_ac_month)
    from gc_clm_os s
    where s.num_claim_no = a.num_claim_no)
    AND b.num_update_no >
    (SELECT MAX(x.num_update_no)
    FROM gc_clm_gen_info x
    WHERE x.num_claim_no = b.num_claim_no
    AND x.txt_claim_status in ('F', 'X'))
    AND a.num_claim_no = b.num_claim_no
    UNION
    SELECT a.num_claim_no, 'DISBURSE' stat, num_update_no
    FROM gc_clm_os a, gc_clm_gen_info b
    WHERE a.cur_os_amount = 0
    AND a.num_ac_year * 100 + a.num_ac_month =
    (select max(s.num_ac_year * 100 + s.num_ac_month)
    from gc_clm_os s
    where s.num_claim_no = a.num_claim_no)
    AND b.num_update_no =
    (SELECT MAX(x.num_update_no)
    FROM gc_clm_gen_info x
    WHERE x.num_claim_no = b.num_claim_no)
    AND a.num_claim_no = b.num_claim_no
    And b.txt_claim_status = 'F'
    and not exists
    (select 1
    from gc_clm_payment_details p
    where p.num_claim_no = a.num_claim_no
    and p.txt_status in ('APPROVAL DUE', 'APPROVED'))
    ) tab,
    gc_clm_gen_info c,
    uw_product_master m,
    uw_department_master d
    WHERE tab.num_claim_no = c.num_claim_no
    AND c.num_update_no =
    (SELECT MAX(d.num_update_no)
    FROM gc_clm_gen_info d
    WHERE d.num_claim_no = c.num_claim_no)
    AND c.num_department_code = d.departmentcode
    AND m.productcode = c.num_product_code
    AND M.DEPARTMENTCODE=D.DEPARTMENTCODE
    AND c.txt_claim_status NOT IN ('O', 'S')
    AND c.num_update_no = tab.num_update_no
    AND c.num_claim_no not in
    (select p.num_claim_no
    from gc_clm_payment_details p, gc_clmmst_resource_type r
    where p.num_type_of_party = r.num_resource_type_cd
    and r.txt_loss_exp = 'E'
    and p.txt_status = 'APPROVAL DUE') and Upper(C.txt_master_claim_no) like '%C231110020345%' order by c.NUM_CLAIM_NO Desc;
    Edited by: user12195658 on Mar 24, 2011 7:27 AM

    from T-1 explain plan output is:
    Explain complete.
    PLAN_TABLE_OUTPUT
    | Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)|
    | 0 | SELECT STATEMENT | | 1 | 132 | | 5862 (4)|
    | 1 | SORT ORDER BY | | 1 | 132 | | 5862 (4)|
    | 2 | NESTED LOOPS | | 1 | 132 | | 5853 (4)|
    | 3 | NESTED LOOPS | | 1 | 97 | | 5852 (4)|
    | 4 | NESTED LOOPS | | 1 | 83 | | 5851 (4)|
    | 5 | VIEW | | 78 | 2574 | | 5617 (4)|
    | 6 | SORT UNIQUE | | 78 | 6992 | | 5617 (78)|
    | 7 | UNION-ALL | | | | | |
    | 8 | FILTER | | | | | |
    | 9 | HASH JOIN | | 29 | 1943 | | 1266 (5)|
    | 10 | HASH JOIN | | 2895 | 115K| | 584 (5)|
    | 11 | INDEX FAST FULL SCAN | IND_GC_CLM_GEN_INFO | 2437 | 43866 | | 353 (5)|
    | 12 | TABLE ACCESS FULL | GC_CLM_OS | 36517 | 820K| | 229 (4)|
    | 13 | VIEW | VW_SQ_1 | 43391 | 1101K| | 680 (4)|
    | 14 | HASH GROUP BY | | 43391 | 1313K| 4712K| 680 (4)|
    | 15 | TABLE ACCESS FULL | GC_CLM_OS | 65293 | 1976K| | 228 (4)|
    | 16 | SORT AGGREGATE | | 1 | 15 | | |
    | 17 | INDEX RANGE SCAN | IND_GC_CLM_GEN_INFO | 6 | 90 | | 3 (0)|
    | 18 | HASH JOIN | | 76 | 6840 | | 2001 (5)|
    | 19 | HASH JOIN | | 2207 | 137K| | 1338 (5)|
    | 20 | HASH JOIN | | 365 | 17885 | 1256K| 1054 (4)|
    | 21 | TABLE ACCESS FULL | GC_CLM_OS | 36517 | 820K| | 229 (4)|
    | 22 | VIEW | VW_SQ_2 | 43391 | 1101K| | 680 (4)|
    | 23 | HASH GROUP BY | | 43391 | 1313K| 4712K| 680 (4)|
    | 24 | TABLE ACCESS FULL | GC_CLM_OS | 65293 | 1976K| | 228 (4)|
    | 25 | INDEX FAST FULL SCAN | PK_GC_CLM_GEN_INFO | 262K| 3849K| | 276 (5)|
    | 26 | VIEW | VW_SQ_3 | 30152 | 765K| | 661 (5)|
    | 27 | HASH GROUP BY | | 30152 | 883K| 3336K| 661 (5)|
    | 28 | INDEX FAST FULL SCAN | IND_GC_CLM_GEN_INFO | 46690 | 1367K| | 356 (6)|
    | 29 | FILTER | | | | | |
    | 30 | HASH JOIN | | 511 | 43435 | | 1535 (5)|
    | 31 | HASH JOIN ANTI | | 337 | 22579 | | 1180 (4)|
    | 32 | HASH JOIN | | 365 | 17885 | 1256K| 1054 (4)|
    | 33 | TABLE ACCESS FULL | GC_CLM_OS | 36517 | 820K| | 229 (4)|
    | 34 | VIEW | VW_SQ_4 | 43391 | 1101K| | 680 (4)|
    | 35 | HASH GROUP BY | | 43391 | 1313K| 4712K| 680 (4)|
    | 36 | TABLE ACCESS FULL | GC_CLM_OS | 65293 | 1976K| | 228 (4)|
    | 37 | INDEX FAST FULL SCAN | IND_GC_CLM_PAYMENT_DETAILS | 2396 | 43128 | | 125 (6)|
    | 38 | INDEX FAST FULL SCAN | IND_GC_CLM_GEN_INFO | 44253 | 777K| | 354 (5)|
    | 39 | SORT AGGREGATE | | 1 | 15 | | |
    | 40 | INDEX RANGE SCAN | IND_GC_CLM_GEN_INFO | 6 | 90 | | 3 (0)|
    | 41 | TABLE ACCESS BY INDEX ROWID | GC_CLM_GEN_INFO | 1 | 50 | | 3 (0)|
    | 42 | INDEX RANGE SCAN | PK_GC_CLM_GEN_INFO | 1 | | | 2 (0)|
    | 43 | SORT AGGREGATE | | 1 | 15 | | |
    | 44 | INDEX RANGE SCAN | IND_GC_CLM_GEN_INFO | 6 | 90 | | 3 (0)|
    | 45 | NESTED LOOPS | | 1 | 26 | | 5 (0)|
    | 46 | TABLE ACCESS BY INDEX ROWID| GC_CLM_PAYMENT_DETAILS | 1 | 21 | | 4 (0)|
    | 47 | INDEX RANGE SCAN | IND_GC_CLM_PAYMENT_DETAILS | 1 | | | 3 (0)|
    | 48 | TABLE ACCESS BY INDEX ROWID| GC_CLMMST_RESOURCE_TYPE | 1 | 5 | | 1 (0)|
    | 49 | INDEX UNIQUE SCAN | PK_GC_CLMMST_RESOURCE_TYPE | 1 | | | 0 (0)|
    | 50 | INDEX RANGE SCAN | UW_DEPARTMENT_MASTER_INDX | 1 | 14 | | 1 (0)|
    | 51 | INDEX RANGE SCAN | IND_UW_PRODUCT_MASTER | 1 | 35 | | 1 (0)|
    Note
    - 'PLAN_TABLE' is old version
    61 rows selected.

  • Slow mobile internet (but it's faster on PC using hotspot) :/ ?

    I guess I'm one of the lucky users because tethering is working on my Xray. I always use hotspot as I find it faster than tethering. And (I don't know if it's just me but) I think the connection is faster when using hotspot than tethering. And also I can't use any internet app on my phone except Opera. The Youtube, stock browser, FB, Gplay app is not loading (mobile data). But on my PC everything works fine, (connected to hotspot [mobile data]) I can watch videos on Youtube and download on internet. What could be the problem?

    have you repaired your phone with either SUS or PCC?
    Update Service (SUS)
    http://www.sonymobile.com/gb/tools/update-service/
    http://www-support-downloads.sonymobile.com/Software%20Downloads/Update_Service_Setup-2.11.12.5.exe
    Alternatives on How to backup Xperias
    http://talk.sonymobile.com/thread/36355
    Don't forget to mark the Correct Answers & Helpful Answers
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Performance issue with insert query !

    Hi ,
    I am using dbxml-2.4.16, my node-storage container is loaded with a large document ( 54MB xml ).
    My document basically contains around 65k records in the same table ( 65k child nodes for one parent node ). I need to insert more records in to my DB, my insert XQuery is consuming a lot of time ( ~23 sec ) to insert one entry through command-line and around 50sec through code.
    My container is indexed with "node-attribute-equality-string". The insert query I used:
    insert nodes <NS:sampleEntry mySSIAddress='70011' modifier = 'create'><NS:sampleIPZone1Address>AABBCCDD</NS:sampleIPZone1Address><NS:myICMPFlag>1</NS:myICMPFlag><NS:myIngressFilter>1</NS:myIngressFilter><NS:myReadyTimer>4</NS:myReadyTimer><NS:myAPNNetworkID>ggsntest</NS:myAPNNetworkID><NS:myVPLMNFlag>2</NS:myVPLMNFlag><NS:myDAC>100</NS:myDAC><NS:myBcastLLIFlag>2</NS:myBcastLLIFlag><NS:sampleIPZone2Address>00000000</NS:sampleIPZone2Address><NS:sampleIPZone3Address>00000000</NS:sampleIPZone3Address><NS:sampleIPZone4Address>00000000</NS:sampleIPZone4Address><NS:sampleIPZone5Address>00000000</NS:sampleIPZone5Address><NS:sampleIPZone6Address>00000000</NS:sampleIPZone6Address><NS:sampleIPZone7Address>00000000</NS:sampleIPZone7Address></NS:sampleEntry> into doc('dbxml:/n_b_i_f_c_a_z.dbxml/doc_Running-SAMPLE')//NS:NS//NS:sampleTable)
    If I modify my query with
    into doc('dbxml:/n_b_i_f_c_a_z.dbxml/doc_Running-SAMPLE')//NS:sampleTable/NS:sampleEntry[@mySSIAddress='1']
    insted of
    into doc('dbxml:/n_b_i_f_c_a_z.dbxml/doc_Running-SAMPLE')//NS:NS//NS:sampleTable)
    Time taken reduces only by 8 secs.
    I have also tried to use insert "after", "before", "as first", "as last" , but there is no difference in performance.
    Is anything wrong with my query, what should be the expected time to insert one record in a DB of 65k records.
    Has anybody got any idea regarding this performance issue.
    Kindly help me out.
    Thanks,
    Kapil.

    Hi George,
    Thanks for your reply.
    Here is the info you requested,
    dbxml> listIndexes
    Index: unique-node-metadata-equality-string for node {http://www.sleepycat.com/2002/dbxml}:name
    Index: node-attribute-equality-string for node {}:mySSIAddress
    2 indexes found.
    dbxml> info
    Version: Oracle: Berkeley DB XML 2.4.16: (October 21, 2008)
    Berkeley DB 4.6.21: (September 27, 2007)
    Default container name: n_b_i_f_c_a_z.dbxml
    Type of default container: NodeContainer
    Index Nodes: on
    Shell and XmlManager state:
    Not transactional
    Verbose: on
    Query context state: LiveValues,Eager
    The insery query with update takes ~32 sec ( shown below )
    time query "declare namespace foo='MY-SAMPLE';declare namespace NS='NS';insert nodes <NS:sampleEntry mySSIAddress='70000' modifier = 'create' ><NS:sampleIPZone1Address>AABBCCDD</NS:sampleIPZone1Address><NS:myICMPFlag>1</NS:myICMPFlag><NS:myIngressFilter>1</NS:myIngressFilter><NS:myReadyTimer>4</NS:myReadyTimer><NS:myAPNNetworkID>ggsntest</NS:myAPNNetworkID><NS:myVPLMNFlag>2</NS:myVPLMNFlag><NS:myDAC>100</NS:myDAC><NS:myBcastLLIFlag>2</NS:myBcastLLIFlag><NS:sampleIPZone2Address>00000000</NS:sampleIPZone2Address><NS:sampleIPZone3Address>00000000</NS:sampleIPZone3Address><NS:sampleIPZone4Address>00000000</NS:sampleIPZone4Address><NS:sampleIPZone5Address>00000000</NS:sampleIPZone5Address><NS:sampleIPZone6Address>00000000</NS:sampleIPZone6Address><NS:sampleIPZone7Address>00000000</NS:sampleIPZone7Address></NS:sampleEntry> into doc('dbxml:/n_b_i_f_c_a_z.dbxml/doc_Running-SAMPLE')//NS:NS//NS:sampleTable"
    Time in seconds for command 'query': 32.5002
    and the query without the updation part takes ~14 sec ( shown below )
    time query "declare namespace foo='MY-SAMPLE';declare namespace NS='NS'; doc('dbxml:/n_b_i_f_c_a_z.dbxml/doc_Running-SAMPLE')//NS:NS//NS:sampleTable"
    Time in seconds for command 'query': 13.7289
    The query :
    time query "declare namespace foo='MY-SAMPLE';declare namespace NS='NS'; doc('dbxml:/n_b_i_f_c_a_z.dbxml/doc_Running-SAMPLE')//PMB:sampleTable/PMB:sampleEntry[@mySSIAddress='1000']"
    Time in seconds for command 'query': 0.005375
    is very fast.
    The Updation of the document seems to consume much of the time.
    Regards,
    Kapil.

  • Insert query problem

    I have a insert query that I have not changed, but for some reason it will not insert anything into the database.
    The data gets inserted by a Ajax submit form and goes to insert.php
    if(isset($_POST['message_wall'])){
        /* Connection to Database */
        include('config.php');
        /* Remove HTML tag to prevent query injection */
        $message = mysql_real_escape_string($_POST['message_wall']);
        $to = mysql_real_escape_string($_POST['profile_to']);
        $sql    =    'INSERT INTO wall (message) VALUES(
                    "'.$message.'")';
                     mysql_query($sql);
    I want to be able to add a user_id into the database too
    The ajax code:
    $(document).ready(function(){
        $("form#submit_wall").submit(function() {
        var message_wall = $('#message_wall').attr('value');
            $.ajax({
                type: "POST",
                url: "insert.php",
                data: "message_wall="+ message_wall,
                success: function(){
                    $("ul#wall").prepend("<li style='display:none'>"+message_wall+"</li><br><hr>");
                    $("ul#wall li:first").fadeIn();
        return false;

    hi,
    while I was waiting for your message I went back to the raw code.
    I changed my code and now it works but it falls again once I add the other info in hidden fields
            $.ajax({
                type: "POST",
                url: "insert.php",
                data: "message_wall="+ message_wall,
                date: "msg_date="+ msg_date,
                success: function(){
                    $("ul#wall").prepend("<li style='display:none'>"+message_wall+"</li><br />"+msg_date+"<hr />");
                    $("ul#wall li:first").fadeIn();
    <form action="" id="submit_wall" name="submit_wall">
    <textarea name="name" id="message_wall" cols="70" rows="2" onclick="make_blank();"></textarea>
    <div align="left"><button type="submit">Post to wall</button></div>
    <input name="profile_to" type="hidden" value="<?php echo $row_user_profile['user_id']; ?>" />
    <input name="msg_date" type="hidden" value="<?php echo date("d/m/y");?>" />
    </form>
    how do I add more than one post option?
    Is this right:
                data: "message_wall="+ message_wall,
                 date: "msg_date="+ msg_date,
    I tried
                data: "message_wall="+ message_wall, "msg_date="+ msg_date,
    But nothing. I take it this is where the fields are sent

  • After upgrade to 11.2.0.2 , SQL2008 Insert data to Oracle slow using OLEDB

    Hi All,
    If any body hit the same issue as the following case ?
    We have a job in SQL2008 Insert data to Oracle 11g using OLEDB Linked Server.
    Previously in 9.2.0.8 & 11.2.0.1 version , the insert speed is very fast .
    But after we upgrade oracle to 11.2.0.2 , the insert speed drop down a lot , maybe 1min to 10min .....
    Could any body give any idea ?
    Best Regards
    ChiaChan

    From 10046 trace file , we found the time spent on PARSE !
    Could anyone hit the same issue at 11.2.0.2 version ?
    Please HELP ! HELP !

  • Site-to-Site up but no ping for the local networks from both sides

    I have set the tunnel up between ASA 5505 and ASA 5510, but I can't ping the local networks of both ASAs.
    ASA 5505
    ASA Version 8.2(5)
    hostname ciscoasa
    enable password 8Ry2YjIyt7RRXU24 encrypted
    passwd 2KFQnbNIdI.2KYOU encrypted
    names
    name 10.2.3.0 baghdad
    name 195.112.215.16 CyberiaNetwork
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    switchport access vlan 3
    interface Ethernet0/3
    switchport access vlan 3
    interface Ethernet0/4
    switchport access vlan 3
    interface Ethernet0/5
    switchport access vlan 3
    interface Ethernet0/6
    switchport access vlan 3
    interface Ethernet0/7
    switchport access vlan 3
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.3.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address 81.90.22.188 255.255.255.248
    interface Vlan3
    no forward interface Vlan1
    nameif voice
    security-level 100
    ip address 192.168.1.1 255.255.255.0
    ftp mode passive
    dns domain-lookup inside
    dns domain-lookup outside
    dns server-group DefaultDNS
    name-server 83.138.175.26
    name-server 50.56.16.2
    same-security-traffic permit inter-interface
    same-security-traffic permit intra-interface
    object-group service DM_INLINE_SERVICE_1
    service-object ip
    service-object tcp
    service-object icmp echo-reply
    service-object tcp eq h323
    access-list outside_1_cryptomap extended permit ip 192.168.1.0 255.255.255.0 10.1.3.0 255.255.255.0
    access-list outside_access_in extended permit object-group DM_INLINE_SERVICE_1 10.1.3.0 255.255.255.0 192.168.1.0 255.255.255.0
    access-list outside_access_in extended permit icmp any any echo-reply
    access-list voice_access_in extended permit ip any any
    access-list voice_access_in extended permit ip 10.1.3.0 255.255.255.0 192.168.1.0 255.255.255.0
    access-list voice_nat0_outbound extended permit ip any any
    access-list voice_access_in_1 extended permit ip 10.1.3.0 255.255.255.0 any
    pager lines 24
    logging enable
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    mtu voice 1500
    icmp unreachable rate-limit 1 burst-size 1
    icmp permit any outside
    icmp permit any voice
    no asdm history enable
    arp timeout 14400
    global (outside) 1 interface
    nat (inside) 1 0.0.0.0 0.0.0.0 dns
    nat (voice) 0 access-list voice_nat0_outbound
    access-group outside_access_in in interface outside
    access-group voice_access_in_1 in interface voice control-plane
    access-group voice_access_in in interface voice
    route outside 0.0.0.0 0.0.0.0 81.90.22.185 1
    route outside 10.1.3.0 255.255.255.0 81.90.22.185 1
    route outside CyberiaNetwork 255.255.255.240 81.90.22.185 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    http server enable
    http 192.168.1.0 255.255.255.0 inside
    http 192.168.3.0 255.255.255.0 inside
    http CyberiaNetwork 255.255.255.240 outside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec security-association lifetime seconds 3600
    crypto ipsec security-association lifetime kilobytes 4608000
    crypto map outside_map 20 match address outside_1_cryptomap
    crypto map outside_map 20 set pfs
    crypto map outside_map 20 set peer 195.112.215.19
    crypto map outside_map 20 set transform-set ESP-DES-SHA
    crypto map outside_map interface outside
    crypto ca trustpoint _SmartCallHome_ServerCA
    crl configure
    crypto ca certificate chain _SmartCallHome_ServerCA
    certificate ca 6ecc7aa5a7032009b8cebcf4e952d491
        308205ec 308204d4 a0030201 0202106e cc7aa5a7 032009b8 cebcf4e9 52d49130
        0d06092a 864886f7 0d010105 05003081 ca310b30 09060355 04061302 55533117
        30150603 55040a13 0e566572 69536967 6e2c2049 6e632e31 1f301d06 0355040b
        13165665 72695369 676e2054 72757374 204e6574 776f726b 313a3038 06035504
        0b133128 63292032 30303620 56657269 5369676e 2c20496e 632e202d 20466f72
        20617574 686f7269 7a656420 75736520 6f6e6c79 31453043 06035504 03133c56
        65726953 69676e20 436c6173 73203320 5075626c 69632050 72696d61 72792043
        65727469 66696361 74696f6e 20417574 686f7269 7479202d 20473530 1e170d31
        30303230 38303030 3030305a 170d3230 30323037 32333539 35395a30 81b5310b
        30090603 55040613 02555331 17301506 0355040a 130e5665 72695369 676e2c20
        496e632e 311f301d 06035504 0b131656 65726953 69676e20 54727573 74204e65
        74776f72 6b313b30 39060355 040b1332 5465726d 73206f66 20757365 20617420
        68747470 733a2f2f 7777772e 76657269 7369676e 2e636f6d 2f727061 20286329
        3130312f 302d0603 55040313 26566572 69536967 6e20436c 61737320 33205365
        63757265 20536572 76657220 4341202d 20473330 82012230 0d06092a 864886f7
        0d010101 05000382 010f0030 82010a02 82010100 b187841f c20c45f5 bcab2597
        a7ada23e 9cbaf6c1 39b88bca c2ac56c6 e5bb658e 444f4dce 6fed094a d4af4e10
        9c688b2e 957b899b 13cae234 34c1f35b f3497b62 83488174 d188786c 0253f9bc
        7f432657 5833833b 330a17b0 d04e9124 ad867d64 12dc744a 34a11d0a ea961d0b
        15fca34b 3bce6388 d0f82d0c 948610ca b69a3dca eb379c00 48358629 5078e845
        63cd1941 4ff595ec 7b98d4c4 71b350be 28b38fa0 b9539cf5 ca2c23a9 fd1406e8
        18b49ae8 3c6e81fd e4cd3536 b351d369 ec12ba56 6e6f9b57 c58b14e7 0ec79ced
        4a546ac9 4dc5bf11 b1ae1c67 81cb4455 33997f24 9b3f5345 7f861af3 3cfa6d7f
        81f5b84a d3f58537 1cb5a6d0 09e4187b 384efa0f 02030100 01a38201 df308201
        db303406 082b0601 05050701 01042830 26302406 082b0601 05050730 01861868
        7474703a 2f2f6f63 73702e76 65726973 69676e2e 636f6d30 12060355 1d130101
        ff040830 060101ff 02010030 70060355 1d200469 30673065 060b6086 480186f8
        45010717 03305630 2806082b 06010505 07020116 1c687474 70733a2f 2f777777
        2e766572 69736967 6e2e636f 6d2f6370 73302a06 082b0601 05050702 02301e1a
        1c687474 70733a2f 2f777777 2e766572 69736967 6e2e636f 6d2f7270 61303406
        03551d1f 042d302b 3029a027 a0258623 68747470 3a2f2f63 726c2e76 65726973
        69676e2e 636f6d2f 70636133 2d67352e 63726c30 0e060355 1d0f0101 ff040403
        02010630 6d06082b 06010505 07010c04 61305fa1 5da05b30 59305730 55160969
        6d616765 2f676966 3021301f 30070605 2b0e0302 1a04148f e5d31a86 ac8d8e6b
        c3cf806a d448182c 7b192e30 25162368 7474703a 2f2f6c6f 676f2e76 65726973
        69676e2e 636f6d2f 76736c6f 676f2e67 69663028 0603551d 11042130 1fa41d30
        1b311930 17060355 04031310 56657269 5369676e 4d504b49 2d322d36 301d0603
        551d0e04 1604140d 445c1653 44c1827e 1d20ab25 f40163d8 be79a530 1f060355
        1d230418 30168014 7fd365a7 c2ddecbb f03009f3 4339fa02 af333133 300d0609
        2a864886 f70d0101 05050003 82010100 0c8324ef ddc30cd9 589cfe36 b6eb8a80
        4bd1a3f7 9df3cc53 ef829ea3 a1e697c1 589d756c e01d1b4c fad1c12d 05c0ea6e
        b2227055 d9203340 3307c265 83fa8f43 379bea0e 9a6c70ee f69c803b d937f47a
        6decd018 7d494aca 99c71928 a2bed877 24f78526 866d8705 404167d1 273aeddc
        481d22cd 0b0b8bbc f4b17bfd b499a8e9 762ae11a 2d876e74 d388dd1e 22c6df16
        b62b8214 0a945cf2 50ecafce ff62370d ad65d306 4153ed02 14c8b558 28a1ace0
        5becb37f 954afb03 c8ad26db e6667812 4ad99f42 fbe198e6 42839b8f 8f6724e8
        6119b5dd cdb50b26 058ec36e c4c875b8 46cfe218 065ea9ae a8819a47 16de0c28
        6c2527b9 deb78458 c61f381e a4c4cb66
      quit
    crypto isakmp identity address
    crypto isakmp enable outside
    crypto isakmp policy 5
    authentication pre-share
    encryption des
    hash sha
    group 2
    lifetime 86400
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    management-access voice
    dhcpd auto_config outside
    dhcpd address 192.168.3.5-192.168.3.36 inside
    dhcpd auto_config outside vpnclient-wins-override interface inside
    dhcpd enable inside
    dhcprelay timeout 60
    vpnclient server 109.224.18.242
    vpnclient mode network-extension-mode
    vpnclient nem-st-autoconnect
    vpnclient vpngroup MGvilla password *****
    vpnclient username rami password *****
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    webvpn
    group-policy GroupPolicy2 internal
    group-policy GroupPolicy2 attributes
    vpn-tunnel-protocol IPSec
    tunnel-group 195.112.215.19 type ipsec-l2l
    tunnel-group 195.112.215.19 ipsec-attributes
    pre-shared-key *****
    isakmp keepalive disable
    prompt hostname context
    call-home reporting anonymous
    Cryptochecksum:fde05056fe6d738c0b99552721973ac6
    : end
    ASA 5510
    Result of the command: "sh run"
    : Saved
    ASA Version 8.2(1)
    hostname ciscoasa
    domain-name Luna
    enable password 8Ry2YjIyt7RRXU24 encrypted
    passwd 2KFQnbNIdI.2KYOU encrypted
    names
    name 195.112.215.17 Cyberiaip
    name 82.146.160.65 RouterCyberia
    name 10.1.15.6 test
    name 10.1.5.20 server
    name 10.2.3.0 VILLA
    dns-guard
    interface Ethernet0/0
    nameif Cyberia
    security-level 0
    ip address 195.112.215.19 255.255.255.240
    interface Ethernet0/1
    nameif ServerVpn
    security-level 100
    ip address 10.1.5.234 255.255.255.0
    interface Ethernet0/2
    nameif VPN
    security-level 100
    ip address 10.1.3.198 255.255.255.0
    interface Ethernet0/3
    nameif Inside2
    security-level 100
    ip address 192.168.0.1 255.255.255.0
    interface Management0/0
    nameif management
    security-level 100
    ip address 192.168.2.1 255.255.255.0
    management-only
    ftp mode passive
    clock timezone EEST 2
    clock summer-time EEDT recurring last Sun Mar 0:00 last Sun Oct 0:00
    dns domain-lookup Cyberia
    dns domain-lookup ServerVpn
    dns domain-lookup Inside2
    dns server-group Backup
    name-server 8.8.8.8
    dns server-group DefaultDNS
    name-server 4.2.2.2
    domain-name Luna
    same-security-traffic permit inter-interface
    same-security-traffic permit intra-interface
    object-group service DM_INLINE_SERVICE_1
    service-object ip
    service-object icmp echo-reply
    object-group service DM_INLINE_SERVICE_2
    service-object tcp
    service-object icmp
    service-object tcp eq h323
    service-object ip
    service-object icmp echo-reply
    object-group service DM_INLINE_SERVICE_3
    service-object ip
    service-object tcp
    service-object icmp echo-reply
    service-object tcp eq h323
    object-group service DM_INLINE_SERVICE_4
    service-object ip
    service-object tcp
    service-object icmp echo-reply
    service-object tcp eq h323
    object-group service DM_INLINE_SERVICE_5
    service-object ip
    service-object icmp
    service-object tcp
    service-object icmp echo-reply
    service-object tcp eq h323
    access-list MGVoice_splitTunnelAcl standard permit 10.1.3.0 255.255.255.0
    access-list Cyberia_access_in extended permit object-group DM_INLINE_SERVICE_3 VILLA 255.255.255.0 10.1.3.0 255.255.255.0
    access-list Cyberia_access_in extended permit object-group DM_INLINE_SERVICE_4 192.168.1.0 255.255.255.0 10.1.3.0 255.255.255.0
    access-list server_splitTunnelAcl standard permit 10.1.5.0 255.255.255.0
    access-list Guardia_access_in extended permit object-group DM_INLINE_SERVICE_1 any any
    access-list Accounting_access_in extended permit icmp any any echo-reply
    access-list Voice_nat0_outbound extended permit ip 10.1.3.0 255.255.255.0 10.1.3.192 255.255.255.192
    access-list Voice_nat0_outbound extended permit ip 10.1.3.0 255.255.255.0 any
    access-list Cyberia_1_cryptomap extended permit ip 10.1.3.0 255.255.255.0 VILLA 255.255.255.0
    access-list VPN_nat0_outbound extended permit object-group DM_INLINE_SERVICE_5 any any
    access-list VPN_nat0_outbound extended permit ip 10.1.3.0 255.255.255.0 192.168.1.0 255.255.255.0
    access-list VPN_nat0_outbound extended permit ip 10.1.3.0 255.255.255.0 VILLA 255.255.255.0
    access-list VPN_nat0_outbound extended permit ip 10.1.3.0 255.255.255.0 10.1.3.192 255.255.255.192
    access-list VPN_nat0_outbound extended permit ip 10.1.3.0 255.255.255.0 10.1.3.224 255.255.255.224
    access-list Voice_splitTunnelAcl_5 standard permit 10.1.3.0 255.255.255.0
    access-list MGserver_splitTunnelAcl standard permit 10.1.5.0 255.255.255.0
    access-list ServerVpn_nat0_outbound extended permit ip 10.1.5.0 255.255.255.0 10.1.5.192 255.255.255.192
    access-list ServerVpn_nat0_outbound extended permit ip any any
    access-list ServerVpn_nat0_outbound extended permit ip 10.1.5.0 255.255.255.0 10.1.5.240 255.255.255.240
    access-list test_splitTunnelAcl standard permit 10.1.5.0 255.255.255.0
    access-list mgvoice_splitTunnelAcl standard permit 10.1.3.0 255.255.255.0
    access-list VPN_access_in extended permit object-group DM_INLINE_SERVICE_2 any any
    access-list VPN_nat0_outbound_1 extended permit ip 10.1.3.0 255.255.255.0 192.168.1.0 255.255.255.0
    access-list VPN_nat0_outbound_1 extended permit ip 10.1.3.0 255.255.255.0 VILLA 255.255.255.0
    access-list Cyberia_cryptomap_20 extended permit ip 10.1.3.0 255.255.255.0 192.168.1.0 255.255.255.0
    access-list Cyberia_access_in_1 extended permit ip 192.168.1.0 255.255.255.0 any
    access-list Cyberia_access_in_1 extended permit ip VILLA 255.255.255.0 any
    pager lines 24
    logging enable
    logging asdm informational
    logging from-address [email protected]
    logging rate-limit 50 15 level 4
    mtu Cyberia 1500
    mtu ServerVpn 1500
    mtu VPN 1500
    mtu Inside2 1500
    mtu management 1500
    ip local pool Vocie 10.1.3.235-10.1.3.245 mask 255.255.255.0
    ip local pool test 10.1.5.241-10.1.5.254 mask 255.255.255.0
    no failover
    icmp unreachable rate-limit 1 burst-size 1
    icmp permit any Cyberia
    icmp permit any VPN
    asdm history enable
    arp timeout 14400
    global (Cyberia) 1 interface
    nat (VPN) 0 access-list VPN_nat0_outbound_1
    access-group Cyberia_access_in_1 in interface Cyberia control-plane
    access-group Cyberia_access_in in interface Cyberia
    access-group VPN_access_in in interface VPN
    router rip
    route Cyberia 0.0.0.0 0.0.0.0 Cyberiaip 1
    route VPN 0.0.0.0 0.0.0.0 10.1.3.2 2
    route Cyberia 81.90.22.184 255.255.255.248 Cyberiaip 1
    route Cyberia 192.168.1.0 255.255.255.0 Cyberiaip 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    dynamic-access-policy-record DfltAccessPolicy
    http server enable
    http 192.168.2.0 255.255.255.0 management
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto ipsec transform-set ESP-AES128-SHA esp-aes esp-sha-hmac
    crypto ipsec transform-set ASA-IPSEC esp-des esp-sha-hmac
    crypto ipsec transform-set VILLA esp-des esp-sha-hmac
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec transform-set OFFICE esp-aes esp-sha-hmac
    crypto ipsec security-association lifetime seconds 28800
    crypto ipsec security-association lifetime kilobytes 4608000
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set pfs group1
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto map Cyberia_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map Cyberia_map1 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map Lunasat_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map MAP-OUTSIDE 1 match address Cyberia_1_cryptomap
    crypto map MAP-OUTSIDE 1 set pfs
    crypto map MAP-OUTSIDE 1 set peer 109.224.18.242
    crypto map MAP-OUTSIDE 1 set transform-set VILLA
    crypto map MAP-OUTSIDE 1 set security-association lifetime seconds 3600
    crypto map MAP-OUTSIDE 20 match address Cyberia_cryptomap_20
    crypto map MAP-OUTSIDE 20 set pfs
    crypto map MAP-OUTSIDE 20 set peer 81.90.22.188
    crypto map MAP-OUTSIDE 20 set transform-set VILLA
    crypto map MAP-OUTSIDE 20 set security-association lifetime seconds 3600
    crypto map MAP-OUTSIDE 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map MAP-OUTSIDE interface Cyberia
    crypto ca server
    shutdown
    smtp from-address [email protected]
    crypto isakmp identity address
    crypto isakmp enable Cyberia
    crypto isakmp policy 5
    authentication pre-share
    encryption des
    hash sha
    group 2
    lifetime 86400
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 28800
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    management-access VPN
    vpn load-balancing
    interface lbpublic Cyberia
    interface lbprivate ServerVpn
    threat-detection basic-threat
    threat-detection statistics port
    threat-detection statistics protocol
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    webvpn
    enable Cyberia
    enable VPN
    enable Inside2
    group-policy DfltGrpPolicy attributes
    vpn-tunnel-protocol IPSec l2tp-ipsec svc webvpn
    group-policy server internal
    group-policy server attributes
    dns-server value 4.2.2.2 8.8.8.8
    vpn-tunnel-protocol IPSec
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value server_splitTunnelAcl
    group-policy Voice internal
    group-policy Voice attributes
    dns-server value 4.2.2.2 8.8.8.8
    vpn-tunnel-protocol IPSec
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value Voice_splitTunnelAcl_5
    nem enable
    client-firewall none
    group-policy MGserver internal
    group-policy MGserver attributes
    dns-server value 4.2.2.2 8.2.2.2
    vpn-tunnel-protocol IPSec l2tp-ipsec
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value MGserver_splitTunnelAcl
    group-policy MGVoice internal
    group-policy MGVoice attributes
    dns-server value 4.2.2.2 8.8.8.8
    vpn-tunnel-protocol IPSec l2tp-ipsec svc
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value MGVoice_splitTunnelAcl
    group-policy mgvoice internal
    group-policy mgvoice attributes
    dns-server value 4.2.2.2 8.8.8.8
    vpn-tunnel-protocol IPSec
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value mgvoice_splitTunnelAcl
    username test password k83iXWPan0Gg1s04 encrypted privilege 0
    username test attributes
    vpn-group-policy Voice
    username guardiairaq password espwxXvOvtn.9lWp encrypted privilege 0
    username guardiairaq attributes
    vpn-group-policy server
    username George password Z/rrvuow9WD495rt encrypted privilege 0
    username George attributes
    vpn-group-policy Voice
    username Mohammad password WeG4Vh8yUivCpxGJ encrypted privilege 0
    username Mohammad attributes
    vpn-group-policy Voice
    username MohammadD password WeG4Vh8yUivCpxGJ encrypted privilege 0
    username MohammadD attributes
    vpn-group-policy server
    username Rami password Ap6uwufXoaDJPqK5 encrypted privilege 0
    username Rami attributes
    vpn-group-policy Voice
    username Ziad password JhgChsUSmHfac4nL encrypted privilege 0
    username Ziad attributes
    vpn-group-policy Voice
    username Rabih password spWUrnXW1ECf5.vf encrypted privilege 0
    username Rabih attributes
    vpn-group-policy Voice
    username Bassam password Us/9IhMANcKhz/ab encrypted privilege 0
    username Bassam attributes
    vpn-group-policy Voice
    username Peter password DqbletTihLO7nNEm encrypted privilege 0
    username Peter attributes
    vpn-group-policy Voice
    username server password vfxKzw279fclgSJI encrypted privilege 0
    username server attributes
    vpn-group-policy server
    username Walid password APoN6.aEe2870Ndh encrypted privilege 0
    username Walid attributes
    vpn-group-policy Voice
    username Walidserver password APoN6.aEe2870Ndh encrypted privilege 0
    username Walidserver attributes
    vpn-group-policy server
    username bernard password V/Fqxj2ERUtY84vU encrypted privilege 0
    username bernard attributes
    vpn-group-policy Voice
    username Vanity password 8v6Sr1IM6EXcsg20 encrypted privilege 0
    username Vanity attributes
    vpn-group-policy server
    username Hani password 0FhVusN7CyzoUnZ9 encrypted privilege 0
    username Hani attributes
    vpn-group-policy Voice
    username Ahmad password 1Vqu92EEjwYw4N.6 encrypted privilege 0
    username Ahmad attributes
    vpn-group-policy Voice
    username Elias password FEvweu59nheZBOqM encrypted privilege 0
    username Elias attributes
    vpn-group-policy Voice
    username Elie password Dm9wg5M.rlquePYM encrypted privilege 0
    username Elie attributes
    vpn-group-policy Voice
    username Charles password 0mvBLjD9oOlpXvWM encrypted privilege 0
    username Charles attributes
    vpn-group-policy Voice
    username Tony password k1lDmGM/jEHSwgiu encrypted privilege 0
    username Tony attributes
    vpn-group-policy Voice
    username Chadi password x4YJISOa3GY9pG0r encrypted privilege 0
    username Chadi attributes
    vpn-group-policy Voice
    username tonyb password sUb7eW6f55MDItCG encrypted privilege 0
    username tonyb attributes
    vpn-group-policy Voice
    username Tino password onkxSs5qbJYmlepW encrypted privilege 0
    username Tino attributes
    vpn-group-policy server
    username Rony password 37Hk2MJVRsiTwC11 encrypted privilege 0
    username Rony attributes
    vpn-group-policy Voice
    username AliA password 4T3JfuTi1E0msmx4 encrypted privilege 0
    username AliA attributes
    vpn-group-policy Voice
    username RonyG password 37Hk2MJVRsiTwC11 encrypted privilege 0
    username RonyG attributes
    vpn-group-policy server
    username Aldo password Cq/XUHIHnvc9Ke1x encrypted privilege 0
    username Aldo attributes
    vpn-group-policy Voice
    username Antoine password rJ4Y1txcY1fuURtk encrypted privilege 0
    username Antoine attributes
    vpn-group-policy Voice
    tunnel-group DefaultL2LGroup ipsec-attributes
    isakmp keepalive disable
    tunnel-group MGVoice type remote-access
    tunnel-group MGVoice general-attributes
    address-pool Vocie
    default-group-policy MGVoice
    tunnel-group MGVoice ipsec-attributes
    pre-shared-key *
    tunnel-group server type remote-access
    tunnel-group server general-attributes
    address-pool test
    default-group-policy server
    tunnel-group server ipsec-attributes
    pre-shared-key *
    tunnel-group mgvoice type remote-access
    tunnel-group mgvoice general-attributes
    address-pool Vocie
    default-group-policy mgvoice
    tunnel-group mgvoice ipsec-attributes
    pre-shared-key *
    tunnel-group 109.224.18.242 type ipsec-l2l
    tunnel-group 109.224.18.242 ipsec-attributes
    pre-shared-key *
    isakmp keepalive disable
    tunnel-group 81.90.22.188 type ipsec-l2l
    tunnel-group 81.90.22.188 ipsec-attributes
    pre-shared-key *
    isakmp keepalive disable
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum 512
    policy-map type inspect im MSNBlock
    parameters
    match service chat conference file-transfer games voice-chat webcam
      drop-connection log
    prompt hostname context
    Cryptochecksum:772d567a5ee1458daec08caad6009da9
    : end

    I have added the permit any any on the outside and vpn interfaces of both ASAs. I also change the source and destination of the nat exempt rule to any any.

  • Nokia 6300 Battery Discharges too early very fast

    I have bought a Nokia 6300 from Karachi Pakistan. The battery discharges very faster than the normal battery discharge time under normal temperature n conditions.
    Need solutions as soon as possbile.
    EDIT: removed personal informationMessage Edited by mohjo on 20-Apr-2007 08:10 PM

    Yeah nj7_ i'm craving for that setting.Unfortunately,brightness adjustment isn't present on Series 40 V3 phones We're still waiting an answer from Nokia.AFAIK,previous series 40 v2 phones had this setting..eg N5140 and N5140i.
    Factors that can drain the battery fast on N6300
    -16Million colour display
    -It uses a BL-4C 820mah(Which is kinda insufficient)
    -The screen is very bright
    YipEE

  • Database data file growing very fast

    Hi
    I have a database that runs on SQL server 2000.
    A few months back, the database was shifted to new server because the old server was crash.
    There was no issue in old server which was used more than 10 years.
    I noticed that the data file was growing very fast since the database was shifted to new server.
    When I run "sp_spaceused", a lot of space are unused. Below is the result:
    database size = 50950.81 MB
    unallocated space = 14.44 MB
    reserved = 52048960 KB
    data = 9502168 KB
    index size = 85408 KB
    unused = 42461384 KB
    When I run "sp_spacedused" only for one big table, the result is:
    reserved = 19115904 KB
    data = 4241992 KB
    index size = 104 KB
    unused = 14873808 KB
    I had shrink the database and the size didn't reduce.
    May I know how to reduce the size? Thanks.

    Hallo Thu,
    can you check whether you have active Jobs in Microsoft SQL Server Agent which may...
    rebuild Indexes?
    run maintenance Jobs of your application?
    I'm quite confident that index maintenance will cause the "growth".
    Shrinking the database is...
    useless and
    nonsence
    if you have index maintenance Tasks. Shrinking the database means the move of data pages from the very end of the database to the first free part in the database file(s). This will cause index fragmentation.
    If the nightly index maintenance Job will rebuild the Indexes it uses NEW space in the database for the allocation of space for the data pages!
    Read the blog post from Paul Randal about it here:
    http://www.sqlskills.com/blogs/paul/why-you-should-not-shrink-your-data-files/
    MCM - SQL Server 2008
    MCSE - SQL Server 2012
    db Berater GmbH
    SQL Server Blog (german only)

  • Query can run in Oracle 10g but very slow in 11g

    Hi,
    We've just migrated to Oracle 11g and we noticed that some of our view are very slow (it takes seconds in 10g and takes 30 minutes in 11g), and the tables are using the local table.
    Do any of you face the same issue?
    This is our query:
    SELECT
    A.wellbore
    ,a.depth center
    ,d.MD maxbc
    ,d.XDELT xbc
    ,d.YDELT ybc
    ,e.MD minac
    ,e.XDELT xac
    ,e.YDELT yac
    from
    table_A d,table_A e, table_B a
    where a.wellbore = d.WELLBORE (+)
    and a.wellbore = e.WELLBORE(+)
    and d.MD = (select max(MD) from table_A b where b.MD < a.depth and
    d.wellBORE = b.wellBORE)
    and e.md = (select min(md) from table_A c where c.MD > a.depth and
    e.wellBORE = c.wellBORE);

    Thanks I will move to the correct one..
    Rafi,
    Build the Indexes and it is still slow. I am querying from a view from another database, which is in 10g instances.
    Moved: Query can run in Oracle 10g but very slow in 11g
    Edited by: 924400 on Apr 1, 2012 6:03 PM
    Edited by: 924400 on Apr 1, 2012 6:26 PM

Maybe you are looking for

  • Currency translation in EC-CS for investments and equity items with 3 & 4

    Hi all can any one please help on investments and equity items currency translation in EC-CS module. i ve defined investments and equity in CT method in ECCS      Investments     100000 - 100100                                   Equity     160000 - 1

  • Glitch Energy for pci-mio-16xe-10

    The E-Series user manual does not provide the "glitch energy" for the pci-mio-16xe-10 board's analog output. It DOES give the glitch energy for the other boards (pci-mio-16E-1, pci-mio-16xe-50, etc.). Why the ommision for my board? I know that my boa

  • SQL*LOADER Question.  Please help.

    Hi List, Below are my control and data files:(both files are stored on /Disk05) terminal.ctl file: LOAD DATA INFILE = Disk05 erminal.dat INTO TABLE TERMINAL_POSITION FIELDS TERMINATED BY , ENCLOSED BY TERMINAL_POSITION_ID VARCHAR2 TERMINATED BY , ENC

  • Nano cannot be synced. An unknown error occurred (13019)

    Touch and nano cannot be synced. An unknown error occurred (13019).

  • FRM-40733 PL/SQL built-in SET_GROUP_CHAR_CELL failed

    hi all, I am trying to create a record group during run time using CREATE_GROUP. Then I added 2 columns to the record group. After that I added a row. But when I try to assign values to the row I am getting this error "FRM-40733 PL/SQL built-in SET_G