Virtual Memory Error when accessing store

I buy a lot from the store and I am unable to download or purchase since upgrading because of a constant virtual memory error popping up. This only occurs when I access the store. I have read trouble shooting procedures recommended by others on here but all have failed so far. I do know that it's not my system. I definitely hope this issue is remedied with an updated version soon.

I take it there is no current solution for this issue? Any assistance would be greatly appreciated.
Thank you in advance, John

Similar Messages

  • Getting virtual memory error when fetching records from database

    HI,
    I am using Oracle as Database and the Oracle JDBC driver. I have simple code which is a select statement but the problem is the resultset dies while fetching the data i.e. 5,50,000. And it gives me the memory error as its storing all in the memory. One of the way which i have serched in the old threads is using the batch method fetching rows at a time but can you tell me how to implement in my code. I am pasting my code.
    The overall functionality of my code is that it's reterving data from database and generating an XML file that would be validated with a DTD.
    //My Code
    public class Invoicef3 implements ExtractF3 {
         final String queryString = "select * from hsbc_f3_statement
    order by bill_no, duplicate,
    invoice_address1,
    invoice_address2,
    invoice_address3,
    invoice_address4,
    invoice_address5,
    invoice_address6,
    main_section, order_1, page,
    section, product_category,
    sub_sect_1, order_2,
    sub_sect_2, child_product,
    sub_sect_3, account,
    line,entry_date, currency, tier";
         public ArrayList process() {
              Connection con = null;
              Statement stmt = null;
              ResultSet rset = null;
              ArrayList arr1 = null;
              try {
                   con =
    ConnectionManager.getConnection();
                   stmt = con.createStatement();
              rset = stmt.executeQuery(queryString);
                   arr1 = new ArrayList();
                   while (rset.next()) {
                        arr1.add(
                             new F3StatementExtract(
                                  rset.getString(1),
                                  rset.getInt(2),
                                  rset.getString(3),
                                  rset.getInt(4),
                                  rset.getInt(5),
                                  rset.getString(6),
                                  rset.getInt(7),
                                  rset.getString(8),
                                  rset.getInt(9),
                                  rset.getString(10),
                                  rset.getInt(11)));
                   rset.close();
                   stmt.close();
              } catch (SQLException e) {
                   e.printStackTrace();
              } finally {
                   ConnectionManager.close(rset);
                   ConnectionManager.close(stmt);
                   ConnectionManager.close(con);
              return arr1;
    }

    The problem is that you are fetching and processing all the rows for the query, which the VM cannot handle given the heap space available. The points you could think over are:
    * Allocate more heap memory (this would help only to a limited extent)
    * Try to process only a few records at a time instead of all of them (there is actually no need to process all the records at a time. Try processing records in lots of say 1000)
    * Avoid selecting all the columns [SELECT *] from the table, if all of them are not going to be used.
    There is a slight change i have done in the code is that i am using two quereies now one is fetching all the Bills and the secondquery is fetching all the data for the relevant BILL.
    //My Code
    public class Invoicef3 implements ExtractF3 {
         /*Query to get distinct bill numbers*/
         final String queryString1 =
              "select distinct(bill_no) from hsbc_print_bills";
         /*Query to get distinct bill numbers statement details*/
         final String queryString =
              "select * from hsbc_f3_statement where bill_no='";
         public ArrayList process() {
              Connection con = null;
              Statement stmt = null;
              ResultSet rset = null;
              ArrayList arr1 = null;
              ArrayList arr2 = null;
              try {
                   con = ConnectionManager.getConnection();
                   stmt = con.createStatement();
                   rset = stmt.executeQuery(queryString1);
                   arr1 = new ArrayList();
                   while (rset.next()) {
                        arr1.add(new F3BillExtract(rset.getString(1))); //generating the Bill_No's
                   System.out.print(arr1.size());
                   rset.close();
                   stmt.close();
                   for (int i = 0; i < arr1.size(); i++) {
                        stmt = con.createStatement();
                        rset =
                             stmt.executeQuery(
                                  queryString
                                       + (((F3BillExtract) arr1.get(i)).getBill_No())
                                       + "'");
                        arr2 = new ArrayList();
                        /*Fetching the statement Details of the particular Bill_No*/
                        while (rset.next()) {
                             arr2.add(
                                  new F3StatementExtract(
                                       rset.getString(1),
                                       rset.getInt(2),
                                       rset.getString(3),
                                       rset.getInt(4),
                                       rset.getInt(5),
                                       rset.getString(6),
                                       rset.getInt(7),
                                       rset.getString(8),
                                       rset.getInt(9),
                                       rset.getString(10),
                                       rset.getInt(11),
                                       rset.getString(12),
                                       rset.getFloat(13),
                                       rset.getDate(14),
                                       rset.getString(15),
                                       rset.getInt(16),
                                       rset.getString(17),
                                       rset.getString(18),
                                       rset.getString(19),
                                       rset.getString(20),
                                       rset.getString(21),
                                       rset.getString(22),
                                       rset.getString(23),
                                       rset.getString(24),
                                       rset.getString(25),
                                       rset.getString(26),
                                       rset.getString(27),
                                       rset.getString(28),
                                       rset.getString(29),
                                       rset.getString(30),
                                       rset.getDate(31),
                                       rset.getDate(32),
                                       rset.getDate(33),
                                       rset.getDate(34),
                                       rset.getString(35),
                                       rset.getString(36),
                                       rset.getString(37),
                                       rset.getString(38),
                                       rset.getString(39),
                                       rset.getString(40),
                                       rset.getFloat(41),
                                       rset.getFloat(42),
                                       rset.getFloat(43),
                                       rset.getInt(44),
                                       rset.getFloat(45),
                                       rset.getString(46),
                                       rset.getString(47)));
                        rset.close();
                        stmt.close();
                        ((F3BillExtract) arr1.get(i)).setArr(arr2);
              } catch (SQLException e) {
                   e.printStackTrace();
              } finally {
                   ConnectionManager.close(rset);
                   ConnectionManager.close(stmt);
                   ConnectionManager.close(con);
              return arr1;
    }

  • Java Out of memory error when accessing MySQL

    Hi all
    I've got a weird problem, I programed some code to mirror data between two databases and I was testing it with two different computers each one running MySQL. The first database has 33,000 rows across 40 columns and the second one 380,000 rows across 40 columns. When trying to transfer the data from the small database to the large one everything works fine, after a couple of minutes all 33,000 rows are successfully transfered to the large one.
    But then I tried it the other way around, transfer 380,000 rows to the small. This does not run at all it just gives me an error of Out Of Memory and stops. I tried on win2k, winxp and redhat 7.3 same error. Does anyone has any idea why this is happening? All three machines have 512MB RAM.
    Is there a limit on the size that a result set can have? I really need to know since this database is gonna grow by aprox. 136,000 rows per hour or 3,264,000 rows per data. That's about 3 GB of data per day which needs to be mirrored across the databases.
    Any suggestions would really be apreciated

    Thanks for the response guys,
    The purpose of this program is to mirror the data between two databases. The first one sits on a machine that is monitoring a system through sensors connected via a DSP card. Now the processing of the gathered data is done on the second machine. This mirroring needs to happen every day and as I said on my previous post the amount of data is aprox. 3GB per day or about 1.2m rows per day. I know this is a huge amount of data.
    In the program I've written what I do is:
    get a connection to both databases on both servers then I create a prepared statement to do the INSERT. Then I get a result set from the first database and in the while loop I update the data to the second one. So only one result set is used. Now I shouild let you know that there's never gonna be any updating of the data only new ones get added.
    I am assuming by the error I get that when I get my result set it tries to load it all in memory which I do not want to do for the obvious reasons.
    I am including my code
    import java.sql.*;
    import java.util.*;
    class Mirror {
        Connection con;
        Statement dispStmt;
        Connection con2;
        PreparedStatement updStmt2;
        public static void main( String args[] ) {
            Mirror mr = new Mirror();
            mr.process();
        public void process() {
            try {
                Class.forName( "org.gjt.mm.mysql.Driver" ).newInstance();
                con2 = DriverManager.getConnection( "jdbc:mysql://ipaddress/database2", "username", "password" );
                updStmt2 = con2.prepareStatement( "insert into Gratings (SensorSetID, Grating_1, Grating_2, Grating_3, Grating_4, Grating_5, Grating_6, Grating_7, Grating_8, Grating_9, Grating_10, Grating_11, Grating_12, Grating_13, Grating_14, Grating_15, Grating_16, Grating_17, Grating_18, Grating_19, Grating_20, Grating_21, Grating_22, Grating_23, Grating_24, Grating_25, Grating_26, Grating_27, Grating_28, Grating_29, Grating_30, Grating_31, Grating_32, Grating_33, Grating_34, Grating_35, Grating_36, Grating_37, Grating_38, Grating_39, Grating_40) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" );
                con = DriverManager.getConnection( "jdbc:mysql://ipaddress/database1", "usernames", "password" );
                dispStmt = con.createStatement();
            catch( Exception e ) /* (ClassNotFoundException and SQLException)*/ {
                e.printStackTrace();
            try {
                synchronized( this ) {
                    ResultSet rs = dispStmt.executeQuery( "select * from Gratings" );
                    while( rs.next() ) {
                        updStmt2.setString( 1, rs.getString( "SensorSetID" ) );
                        updStmt2.setString( 2, rs.getString( "Grating_1" ) );
                        updStmt2.setString( 3, rs.getString( "Grating_2" ) );
                        updStmt2.setString( 4, rs.getString( "Grating_3" ) );
                        updStmt2.setString( 5, rs.getString( "Grating_4" ) );
                        updStmt2.setString( 6, rs.getString( "Grating_5" ) );
                        updStmt2.setString( 7, rs.getString( "Grating_6" ) );
                        updStmt2.setString( 8, rs.getString( "Grating_7" ) );
                        updStmt2.setString( 9, rs.getString( "Grating_8" ) );
                        updStmt2.setString( 10, rs.getString( "Grating_9" ) );
                        updStmt2.setString( 11, rs.getString( "Grating_10" ) );
                        updStmt2.setString( 12, rs.getString( "Grating_11" ) );
                        updStmt2.setString( 13, rs.getString( "Grating_12" ) );
                        updStmt2.setString( 14, rs.getString( "Grating_13" ) );
                        updStmt2.setString( 15, rs.getString( "Grating_14" ) );
                        updStmt2.setString( 16, rs.getString( "Grating_15" ) );
                        updStmt2.setString( 17, rs.getString( "Grating_16" ) );
                        updStmt2.setString( 18, rs.getString( "Grating_17" ) );
                        updStmt2.setString( 19, rs.getString( "Grating_18" ) );
                        updStmt2.setString( 20, rs.getString( "Grating_19" ) );
                        updStmt2.setString( 21, rs.getString( "Grating_20" ) );
                        updStmt2.setString( 22, rs.getString( "Grating_21" ) );
                        updStmt2.setString( 23, rs.getString( "Grating_22" ) );
                        updStmt2.setString( 24, rs.getString( "Grating_23" ) );
                        updStmt2.setString( 25, rs.getString( "Grating_24" ) );
                        updStmt2.setString( 26, rs.getString( "Grating_25" ) );
                        updStmt2.setString( 27, rs.getString( "Grating_26" ) );
                        updStmt2.setString( 28, rs.getString( "Grating_27" ) );
                        updStmt2.setString( 29, rs.getString( "Grating_28" ) );
                        updStmt2.setString( 30, rs.getString( "Grating_29" ) );
                        updStmt2.setString( 31, rs.getString( "Grating_30" ) );
                        updStmt2.setString( 32, rs.getString( "Grating_31" ) );
                        updStmt2.setString( 33, rs.getString( "Grating_32" ) );
                        updStmt2.setString( 34, rs.getString( "Grating_33" ) );
                        updStmt2.setString( 35, rs.getString( "Grating_34" ) );
                        updStmt2.setString( 36, rs.getString( "Grating_35" ) );
                        updStmt2.setString( 37, rs.getString( "Grating_36" ) );
                        updStmt2.setString( 38, rs.getString( "Grating_37" ) );
                        updStmt2.setString( 39, rs.getString( "Grating_38" ) );
                        updStmt2.setString( 40, rs.getString( "Grating_39" ) );
                        updStmt2.setString( 41, rs.getString( "Grating_40" ) );
                        updStmt2.executeUpdate();
                    rs.close();
                con.close();
                con2.close();
            catch( Exception ex ) {
                System.out.println( ex );
                ex.printStackTrace();
    }Does anyone have any suggestions?
    What can I do in order to prevent the whole database being loaded in memory?
    Additionally I noticed that the above operation stops when memory usage reaches 71.5 MB for the JVM

  • Virtual memory exhaustion when idle

    Everytime I leave my laptop for a long period of time (couple of hours) and then come back I get the popup that windows ran out of memory. 
    So I tried to look into event viewer and here is what I see ( http://goo.gl/TLpkV6 ) //Sorry I'm not allowed to post pictures for whatever reason
    The event details display those values:
    SystemCommitLimit 34 235 564 032
    SystemCommitCharge 34 088 890 368
    ProcessCommitCharge 4 058 849 280
    PagedPoolUsage 438 538 240
    PhysicalMemorySize 8 465 760 256
    PhysicalMemoryUsage 4 248 018 944
    NonPagedPoolUsage 183 934 976
    Processes 129
    I have the default Pagefile size (maintained by system) and it looks like something is using it all even though the physical memory has still about 50% free space
    So I tried to attach a task to this event and I used PsList to dump all the processes when this event occurs. However I didn't find anything abnormal in the log.
    Here it is:
    Process memory detail for MARTIN:
    Name Pid VM WS Priv Priv Pk Faults NonP Page
    Idle 0 64 24 0 0 1 0 0
    System 4 44948 2380 21108 228560 8444074 0 0
    smss 344 4288 376 284 352 1272 2 12
    csrss 488 53624 2636 2588 2824 54974 15 161
    wininit 552 41132 908 1184 1488 8246 7 96
    services 608 27584 5424 4356 4992 366546 9 118
    lsass 616 59556 13156 10120 10364 357942 22 150
    svchost 696 88640 14252 11896 32748 466830 23 716
    svchost 740 55916 9788 9416 9708 1381645 20 134
    DpHostW 908 613672 20828 44632 48784 362592 58 334
    svchost 944 234420 45628 118704 127504 1211691 34 240
    svchost 976 4194303 133876 138580 650168 26413408 51 288
    svchost 508 539936 323232 321124 401704 14494875 68 763
    svchost 764 119072 17068 16124 17808 245309 42 225
    stacsv64 1100 73788 4904 6732 6820 80241 13 139
    L4301_Solar 1228 53316 1608 1604 1736 5520 7 103
    vcsFPService 1244 119864 1304 1852 1976 5405 9 123
    svchost 1308 1279312 23372 22836 71916 643069 51 243
    wlanext 1468 96560 5028 5408 5596 62101 19 193
    conhost 1484 27444 344 556 672 1006 4 57
    spoolsv 1572 100792 7212 8392 10204 104349 28 197
    svchost 1640 184960 33980 34616 152996 6586884 38 180
    armsvc 1904 45088 680 1020 1204 2935 7 87
    EvtEng 1964 98744 4888 5048 5404 89611 18 175
    RegSrvc 872 69036 1428 1872 1968 7757 9 134
    svchost 1728 69600 5356 2912 4428 33407 11 132
    TeamViewer_Service 1940 94344 2476 4544 4848 13215 26 189
    vmnat 2060 47524 1348 1736 1988 24619 10 86
    MsMpEng 2080 315092 91516 107944 467692 107216375 42 353
    ZeroConfigService 2132 123908 7808 8060 10168 449651 23 233
    vmware-authd 2200 89456 3196 4648 5156 1113449 16 167
    dasHost 2272 72276 2616 3840 4392 8943 12 149
    vmnetdhcp 2340 30012 7152 7276 7428 6320 6 43
    unsecapp 2352 29152 1776 1444 1564 37631 6 55
    WmiPrvSE 2380 112300 12716 12716 25488 2320161 17 153
    WmiPrvSE 2400 56676 9260 7112 10024 183028 11 91
    vmware-usbarbitrator64 2556 66780 2284 2284 2372 6278 11 130
    vmware-hostd 2728 176176 18572 31296 31736 855061 37 276
    svchost 2880 97028 10448 8704 10112 90687 33 184
    svchost 1944 24112 2388 2012 3176 84187 8 43
    NisSrv 3324 52048 1068 7476 10260 733397 13 91
    SearchIndexer 4916 759956 143660 160300 332296 9081293 81 443
    hpqWmiEx 5288 60704 1920 1644 1840 93044 10 121
    ICCProxy 5824 36876 956 1292 1528 5712 8 71
    BTHSAmpPalService 8896 32404 696 1008 1100 2369 9 53
    BTHSSecurityMgr 8980 46472 1264 2316 2448 4122 21 91
    OSPPSVC 13052 45928 2752 2424 3080 12738 7 88
    GoogleCrashHandler 100572 49036 380 1488 2236 167778 8 104
    GoogleCrashHandler64 100484 51000 372 1300 1424 6990 7 97
    csrss 11176 422268 57940 3760 32944 1391841 66 937
    winlogon 78752 54140 1848 1356 1708 15016 8 116
    dwm 91476 302424 30572 25404 53948 130614867 34 1722
    taskhostex 63852 299524 8256 5116 18880 133406 24 194
    SynTPEnh 63772 106584 900 5424 5520 174946 17 253
    taskhost 17264 186240 11576 8772 11504 23811 18 343
    SynTPHelper 27516 43820 380 688 712 15527 5 86
    DPAgent 55256 114168 6920 6432 6732 6873 27 210
    explorer 49704 735052 160792 129124 161524 3884908 141 1450
    livecomm 53652 933972 30468 28752 30772 474614 40 415
    SkyDrive 48624 184764 4340 15328 31776 273178 29 280
    RuntimeBroker 18164 178608 18956 11160 18028 233418 22 332
    DpAgent 75992 43424 684 784 784 946 5 85
    igfxsrvc 131912 72348 4476 2820 2908 4329 10 130
    hkcmd 53396 79700 2004 1636 1936 2063 10 153
    igfxpers 2892 90844 4016 2064 2204 3311 12 170
    SetPoint 9680 190380 19776 17160 17460 3482400 31 302
    KHALMNPR 49724 117620 5620 3856 4300 4245 23 190
    GoogleUpdate 59208 87456 508 2124 2284 31183 14 165
    SettingSyncHost 39820 170220 3272 10492 87284 795172 26 316
    chrome 32212 151068 10916 8016 8580 18894 23 275
    chrome 57844 625224 316396 243820 281988 16606915 184 713
    chrome 792 711600 239160 241528 424620 48754082 46 607
    chrome 57636 228016 70036 70196 113280 239994 32 246
    chrome 64324 199036 35636 35796 46792 25561 28 246
    chrome 101752 181488 18540 22908 27984 41914 25 250
    chrome 5260 389224 206556 198692 305988 2114575 87 262
    chrome 88672 228632 56516 56968 73048 166525 38 259
    chrome 55272 187292 16628 22920 28016 12477 25 253
    chrome 56228 183512 16572 24960 25184 9840 25 253
    chrome 52452 286576 101576 100304 117124 371134 52 263
    chrome 23584 193628 16380 23172 27108 13208 26 253
    chrome 55360 210408 46884 52016 62664 128337 35 259
    chrome 50344 182360 11080 21420 22992 7483 25 253
    chrome 54624 199704 23472 30180 36216 67469 28 253
    chrome 23668 185828 12440 22960 24180 8424 25 253
    chrome 22488 191268 18576 24228 27204 16644 26 253
    chrome 35332 263972 77000 85008 162044 837404 33 253
    chrome 14744 204912 40872 40124 51996 165195 32 253
    chrome 19152 191140 16184 24512 27596 15582 25 253
    chrome 60048 186788 11468 21816 23364 7680 25 253
    chrome 90376 184932 16672 23836 27316 14870 25 253
    chrome 57780 189156 11752 21836 24424 7886 25 253
    chrome 70696 189156 21800 27152 31228 30965 26 253
    chrome 34788 185688 18016 24640 24664 11659 25 253
    chrome 101608 184600 18472 25408 28348 12283 25 253
    chrome 129208 159432 8084 10000 10000 5155 18 275
    nacl64 35080 73064 1204 1520 1552 1370 8 148
    nacl64 51044 4194303 3908 25772 264924 4608 8203 611
    Skype 49672 389896 115448 103248 111760 54060700 103 561
    chrome 10376 149068 5600 4536 4536 3774 21 270
    flux 54068 141824 9156 10876 11304 7486 18 242
    Dropbox 42008 307004 84720 82012 96064 205381 52 359
    googletalkplugin 31032 116036 11368 10704 10992 64808 23 203
    ONENOTEM 62328 74860 1560 1432 1504 3772 10 143
    chrome 7356 224828 25884 34544 44348 185826 33 304
    CSISYN~1 130496 283012 9632 8324 8408 10926 22 400
    ielowutil 6072 56400 380 1220 1436 10104 9 110
    chrome 11112 216252 32368 39096 59100 85374 33 256
    chrome 51680 225488 56272 38272 55140 2913643 33 304
    chrome 127188 231316 29080 36380 49956 2040427 33 304
    chrome 86452 227412 31384 38664 48576 2291522 33 304
    chrome 22668 230776 35792 43212 53256 3765469 33 304
    chrome 43700 337968 22184 21140 203600 1259954 37 270
    chrome 44120 203040 28756 38612 42168 321797 28 202
    chrome 136084 260288 94204 91316 115484 959115 44 264
    chrome 91392 146412 4104 4116 4116 3241 16 266
    Taskmgr 6588 159648 29828 21432 26412 109347485 26 370
    chrome 45096 181232 27744 23260 27376 10676 25 250
    chrome 49304 205380 52352 43268 59156 73829 35 256
    chrome 27828 222748 49120 41348 67412 56080 34 256
    chrome 94756 203760 52196 38084 69612 54674 30 260
    chrome 81884 203100 44132 34600 52912 32984 31 256
    chrome 132092 228924 70200 38252 48608 955996 33 302
    chrome 142004 216936 59136 36936 45512 671152 33 284
    chrome 105208 232456 67812 57488 91232 85132 38 254
    mmc 110996 796588 32032 52276 67112 314694 51 744
    WmiPrvSE 131672 29476 5992 2332 2768 1873 8 55
    svchost 120260 31156 4712 1196 1352 1262 7 62
    audiodg 33452 72356 13272 9308 9316 3679 17 161
    WWAHost 97396 654624 38364 26476 29484 11234 41 463
    WWAHost 99776 175564 25788 9672 13272 8122 27 313
    taskhost 116388 98356 11344 3116 3116 2964 15 188
    cmd 108636 14524 2432 1568 1568 605 3 28
    conhost 125200 59244 5844 1224 1224 1516 8 116
    pslist 111172 73476 5908 2248 2248 4230 8 139
    When I did the SUM, I got these results:
    VM: 33,601,910
    WS: 4,038,504
    Priv: 4,041,576
    Priv Pk: 7,109,352
    So it looks like VM is really 33GB. So I tried to run the same dump again manually when I was using the computer, because I never get out of memory dialog when I actually use my laptop and I got total size of used VM of 39,035,346 KB
    However the task manager says only 7.6 GB of virtual memory is used and like I said I never get out of memory error when I actually use the laptop.
    Task manager screenshot here: http://goo.gl/20lyjA
    I've never had this problem until I upgraded my laptop to Windows 8.1 through Windows Store. Now I see the out of memory error every morning when I come back to my laptop.
    Any ideas how to solve those memory issues when my laptop is idle?
    UPDATE:
    I just found out that it only happens when I have a monitor plugged into the DisplayPort (even though the monitor is turned off). My laptop has Core i5 3210M with the latest graphics drivers installed (10.18.10.3496)

    Today I killed Chrome for the night but the result is the same
    Also Windows Defender didn't find anything.
    SystemCommitLimit 34,235,564,032
    SystemCommitCharge 34,092,351,488
    ProcessCommitCharge 10,08,476,160
    PagedPoolUsage 447,950,848
    PhysicalMemorySize 8,465,760,256
    PhysicalMemoryUsage 1,730,576,384
    NonPagedPoolUsage 154,148,864
    Processes 79
    http://goo.gl/uwPJN1
    And the process dump (sorted by VM desc)
    Name Pid VM WS Priv PrivPk Faults NonP Page
    svchost 988 4,194,303 103,444 107,520 632,152 1,040,920 48 231
    svchost 1,312 1,188,268 8,632 8,256 10,024 8,024 36 129
    livecomm 4,836 927,052 28,356 24,380 25,108 84,802 43 391
    WWAHost 3,388 655,556 38,528 26,476 29,624 11,318 42 463
    explorer 3,840 650,372 76,368 90,880 129,928 548,431 179 1,382
    DpHostW 892 587,908 19,316 36,372 38,836 21,219 56 326
    SearchIndexer 4,572 568,896 53,580 62,328 98,488 354,458 73 528
    svchost 436 441,112 25,880 25,632 360,828 300,035 55 375
    explorer 6,360 359,384 28,236 36,104 39,280 35,612 71 624
    Skype 7,724 338,140 86,724 90,528 95,108 28,164,574 69 533
    csrss 552 314,260 13,108 2,884 31,632 216,171 41 674
    taskhostex 3,332 306,036 13,056 11,220 11,352 31,744 51 210
    MsMpEng 2,112 305,492 48,216 76,448 183,144 3,187,826 42 319
    Dropbox 6,184 296,472 66,392 76,524 83,444 133,920 50 346
    CSISYN~1 5,212 280,972 6,516 7,460 7,840 6,159 23 400
    dwm 884 274,864 16,256 16,696 45,532 7,151,518 23 1,783
    SetPoint 5,596 184,192 16,624 17,592 17,956 260,341 30 289
    SkyDrive 3,924 181,984 4,192 13,880 30,544 115,647 29 274
    WWAHost 9,124 177,500 25,568 9,744 13,480 8,066 27 315
    taskhost 1,720 175,724 10,076 7,324 7,340 6,689 19 345
    vmware-hostd 2,696 165,648 25,436 27,856 28,156 82,271 33 253
    Taskmgr 5,448 160,580 20,160 21,156 28,524 27,600,455 28 364
    SettingSyncHost 4,036 147,452 2,416 7,656 11,752 38,943 25 288
    chrome 6,028 143,320 6,416 7,300 8,972 6,793 22 266
    flux 7,720 137,636 6,696 10,864 11,304 5,423 18 234
    svchost 948 134,080 18,484 23,020 25,756 25,985 34 196
    WSHost 1,772 130,696 6,604 6,864 8,700 8,366 21 255
    RuntimeBroker 3,580 125,732 13,464 6,320 7,036 42,007 18 247
    svchost 1,552 119,240 20,320 21,460 141,868 156,549 37 128
    vcsFPService 1,248 115,824 1,308 1,748 1,884 1,556 9 115
    KHALMNPR 5,620 112,556 4,128 3,824 3,916 3,366 24 178
    DPAgent 4,056 107,152 5,384 5,696 6,044 4,669 24 188
    ZeroConfigService 2,144 103,648 5,992 5,128 5,316 21,611 19 193
    svchost 736 99,752 9,884 9,576 9,836 7,358 41 212
    SynTPEnh 3,340 97,304 1,048 3,660 3,804 11,269 15 242
    spoolsv 1,512 93,648 6,668 6,916 9,004 9,866 28 191
    EvtEng 2,044 93,364 4,240 3,872 3,956 3,793 17 167
    wlanext 1,832 90,316 4,452 4,056 4,396 6,735 19 184
    GoogleUpdate 5,972 87,440 448 2,088 2,356 7,617 13 165
    igfxpers 5,912 85,784 1,728 1,960 2,112 2,313 11 162
    vmware-authd 2,224 85,024 3,192 3,996 4,260 39,321 15 150
    svchost 680 80,904 9,296 6,984 20,752 13,699 22 230
    hkcmd 5,884 79,684 1,412 1,608 1,920 1,892 9 153
    svchost 3,016 75,528 5,024 4,264 5,256 5,146 30 155
    ONENOTEM 7,896 74,848 924 1,460 1,660 2,407 10 143
    pslist 4,328 74,408 5,740 2,184 2,184 4,187 8 141
    audiodg 4,556 73,288 13,256 9,292 9,300 3,671 17 131
    WmiPrvSE 2,324 69,348 4,728 2,948 3,640 5,745 14 129
    stacsv64 1,108 68,724 3,464 5,008 5,416 4,675 13 131
    igfxsrvc 5,860 68,308 1,696 2,320 2,456 2,469 10 122
    SearchProtocolHost 1,844 67,896 7,184 1,796 1,848 1,952 11 141
    RegSrvc 1,544 64,904 1,372 1,560 1,708 1,814 8 126
    vmware-usbarbitrator64 2,536 63,640 1,696 1,972 2,076 2,569 11 124
    conhost 5,968 61,448 5,720 1,240 1,240 1,487 8 121
    svchost 1,200 60,780 1,824 2,112 3,444 2,892 11 119
    hpqWmiEx 4,356 56,608 1,876 1,536 1,820 3,092 10 105
    lsass 604 54,704 7,776 6,680 6,696 8,785 25 131
    winlogon 796 54,372 1,096 1,312 2,884 7,921 8 117
    GoogleCrashHandler64 4,024 51,000 356 1,232 1,352 1,604 7 97
    csrss 492 48,656 2,144 2,084 2,252 3,583 14 151
    GoogleCrashHandler 4,016 48,420 1,068 1,320 1,580 4,005 8 99
    L4301_Solar 1,224 48,252 1,256 1,200 1,408 1,390 7 95
    vmnat 2,068 45,372 1,120 1,260 1,512 1,611 9 85
    NisSrv 3,548 44,732 748 4,664 7,696 13,624 179 85
    svchost 724 44,612 6,552 5,920 6,084 32,460 19 103
    SynTPHelper 4,088 43,820 324 684 756 1,226 5 86
    DpAgent 4,316 43,408 696 800 864 914 5 85
    BTHSSecurityMgr 7,344 41,936 2,076 2,208 2,340 2,161 22 82
    WmiPrvSE 2,332 41,576 4,164 4,476 6,288 14,053 11 80
    wininit 536 40,700 656 732 956 1,282 7 94
    IntelCpHeciSvc 1,920 36,908 1,052 1,328 1,616 1,430 9 67
    ICCProxy 5,932 32,744 1,008 1,160 1,352 1,446 8 63
    SearchFilterHost 4,452 32,292 4,204 1,016 1,120 1,077 6 80
    unsecapp 2,304 30,184 1,784 1,316 1,316 1,825 6 57
    vmnetdhcp 2,504 29,548 7,212 7,256 7,388 4,223 6 43
    taskeng 8,012 28,520 4,528 1,096 1,280 1,214 7 54
    BTHSAmpPalService 7,280 28,364 932 988 1,084 1,060 10 45
    conhost 1,848 23,360 528 548 620 702 4 49
    services 596 22,724 4,216 3,552 4,024 7,784 9 106
    svchost 2,960 22,064 1,208 1,340 2,652 2,526 8 43
    dasHost 1,220 19,732 1,120 1,124 1,760 1,196 5 42
    System 4 19,604 1,656 9,496 20,760 80,340 - -
    cmd 7,320 14,524 2,440 1,572 1,572 607 3 28
    smss 356 4,288 300 276 340 555 2 12
    Idle - 64 24 - - 1 - -
    SUM 279,328 16,881,479 984,992 1,046,188 2,374,864 70,032,042 2,079 18,465

  • Windows 8.1 RDP Virtual Memory Error

    I just upgraded to Windows 8.1 and am encountering the same problem as mentioned here:
    http://social.technet.microsoft.com/Forums/lync/en-US/068228a3-78da-4bcf-acb5-3cf5c63dee48/windows-81-preview-remote-desktop-failing-with-low-virtual-memory-error?forum=w81previtpro
    I am trying to use RDP desktop version to connect to a site (which uses RD Gateway). It says "Initiating Connection" and then fails with no error or any notification (there is nothing in the event viewer)
    If I try changing settings (removing sound from RDP, reducing resolution) I eventually get this message:
    [Window Title]
    Remote Desktop Connection
    [Content]
    This computer can't connect to the remote computer.
    The problem might be due to low virtual memory on your computer. Close your other programs, then try connecting again. If the problem continues, contact your network administrator or technical support.
    Connection worked fine on Windows 8 - is this a known 8.1 bug? It is pretty critical for me!
    Thanks

    Hi,
    Since I cannot repro this issue, I considered that following factors may cause this issue:
    Paging file value setting is too low.
    RAM issue
    First, I suggest we try following steps to check the issue:
    Step 1: Increase page file size:
    How to Change The Size of Virtual Memory (pagefile.sys) on Windows 8 or Windows Server 2012
    http://blogs.technet.com/b/danstolts/archive/2013/01/07/how_2d00_to_2d00_change_2d00_the_2d00_size_2d00_of_2d00_virtual_2d00_memory_2d00_pagefile_2d00_sys_2d00_on_2d00_windows_2d00_8_2d00_or_2d00_windows_2d00_server_2d00_2012.aspx
    Step 2: Run Memory diagnostic tool:
    From Start, type mdsched.exe, and then press Enter. Normally, text that you type on Start is entered into the Apps Search box by default.
    Choose whether to restart the computer and run the tool immediately or schedule the tool to run at the next restart.
    Windows Memory Diagnostic runs automatically after the computer restarts and performs a standard memory test. If you want to perform fewer or more tests, press F1, use the up and down arrow keys to set the Test Mix as Basic, Standard, or Extended, and
    then press F10 to apply the desired settings and resume testing.
    When testing is complete, the computer restarts. You’ll see the test results when you log on.
    If this issue still persists after above steps, I recommend you helping to do following test and let me know the results:
    Start Windows in Clean boot mode, and open Remote desktop and see what’s going on:
    How to perform a clean boot to troubleshoot a problem in Windows 8, Windows 7, or Windows Vista
    http://support.microsoft.com/kb/929135  
    Keep post.
    Regards,
    Kate Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Memory Error when trying to paste art into PS CS4 vanishing point grid

    I get a memory error when trying to paste art into PS CS4 vanishing point grid.
    "Photoshop.exe application Error The instruction at 0x7755886b referenced memory at 0xffffffff. The memory could not be read. Click on OK to terminate the program"
    I have plenty RAM, HD space, and virtual RAM/Cache in PS prefs.
    Any suggestions?

    Try disabling the Aeros theme by selecting one of the Windows Classis Themes under desktop customization.  This seemed to fix the problem for me.

  • Getting HTTP 403/500 errors when accessing SharePoint 2010 pages

    Hi,
    I'm getting intermittent HTTP 403/500 errors when accessing SharePoint Foundation 2010 pages.
    When it happens, any SharePoint pages I access I get a HTTP 403 error (example: /sites/test/default.aspx) . If I don't specify a page, I get a HTTP 500 error (example: /sites/test/). What's odd is that I have non-SharePoint .NET applications running on the
    same server under the "_layouts" directory and those still work just fine.
    After recycling the IIS application pool, it starts to work again, but sometime won't stay up very long.
    Does anyone encounter this problem before?
    TIA
    Also, I'm hoping to understand what the "Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo" method does to help me track down this issue. If you have any info on what the above method is doing, I really appreciated.
    EVENT LOG
    Nothing
    ULS LOG
    System.Runtime.InteropServices.COMException: Cannot complete this action.  Please try again.   
     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts,
    Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent,
    Byte& pVerGhostedSetupPath, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags,
    Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder)  
     at Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts,
    Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent,
    Byte& pVerGhostedSetupPath, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags,
    Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder)

    These are the associated lines in the ULS.
    01/07/2014 02:59:24.33    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    Logging Correlation Data    xmnv    Medium    Name=Request (GET:https://XXXXXXXXXXXXXXXXXXXXX)  
     e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.48    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.48    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    Monitoring    b4ly    High    Leaving Monitored Scope (PostResolveRequestCacheHandler).
    Execution Time=6.79828022835305    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.48    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    Runtime    tkau    Unexpected    System.Runtime.InteropServices.COMException:
    Cannot complete this action.  Please try again.    at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32
    iRequestVersion, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid&
    pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, Byte& pVerGhostedSetupPath, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl,
    Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies,
    Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder)     at Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet,
    String bstrCurrentFolderUrl, Int32 iRequestVersion, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage,
    String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, Byte& pVerGhostedSetupPath, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders,
    String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32&
    pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder)    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.48    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.48    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.50    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.50    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.50    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.50    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.50    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.50    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.51    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.51    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    General    8kh7    High    Cannot complete this action.  Please try
    again.    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    01/07/2014 02:59:24.51    w3wp.exe (0x1988)    0x10A4    SharePoint Foundation    Monitoring    b4ly    Medium    Leaving Monitored Scope (Request (GET:https://XXXXXXXXXXXXXXXXXXXXX)).
    Execution Time=187.132582493026    e8e08e76-1b88-4913-bce6-b9300e7b63f6
    Thanks,

  • Error ODS activation - sql error when accessing a table.

    Hi,
    sometimes occurs an error by activation ODS. I have proces chain and when is loaded second packet an error occurs. In monitor>>
    -RSMPC 128, datapacket 3 is wrong, with status number 9
    -RSMPC 131
    -RSDRO 108 - communcation error (sql error when accessing a table)
    In sm21>
    -sql error when accessing a table
    -The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was  
    either                                                      caught nor passed along using a RAISING clause, in the procedure <b>"UPDATE_ATAB"</b>   "(FORM)"                                                                    
    Since the caller of the procedure could not have expected this exception     
       to occur, the running program was terminated.                               
      The reason for the exception is:                                             
      The database system recognized that your last operation on the database      
      would have led to a deadlock.                                                
      Therefore, your transaction was rolled back                                  
      to avoid this.                                                                       
      ORACLE always terminates any transaction that would result in deadlock.      
      The other transactions involved in this potential deadlock                   
      are not affected by the termination.
    I have BW 3.5.
    Thank You very much.

    There are a few different scenarios that I can think of where this might come up that all involve what might resulting in parallel (concurrent)processes:
    Loading packets in parallel - that is there are X number of processes loading packets concurrently. This could be set in your IMG settings system wide or in the InfoPackage for just this datasource.   You seem to indicate that you don't have this.
    Database parallel processing - RSAMDIN - ORA_PARALLEL_DEGREE ( there was a different RSADMIN parm for older versions - forget what SP the change came with).
    You have multiple InfoPackages for the datasource, each loading what should be a different range of data, and they run atthe same time.
    You could be loading from two different datasources to the ODS at the same time.
    If any of these are true, I would look at bumping the INITRANS setting up.  Your DBA will probably need to do this for table and its indices.  There is a Note - 831234 that allows you to create a parameter in RSADMIN that will specify a INITRANS value (e.g. 20) rather than using the default. The ODS would need to be activated to pick this new setting up for the table to be altered. 
    You could also look at the Processing settings for the InfoPackage and change to PSA first, then target to see if that helps. 
    Or if you are loading from two different datasources at the same time, you might adjust your schedule so that doesn't happen.
    Pizzaman

  • Internal error when accessing a table  -

    Hi,
    The program which is running as background was running for last 1 year, last two days the RFC call in the program is dumping.
    In DUMP its showing Internal error when accessing a table
    Error : DBIF_RSQL_SQL_ERROR
    I checed the size of the table its quite huge for the application.
    So there is no issue with table.
    Please advise what causes these sort of error.
    System is ECC 6.0
    With SQL server 8.0
    Regards,
    Thomas

    These are the system log i got it from SM21. For this error logs are as below
    Very High Priority error
    Details Page 2 Line 9 System Log: Local Analysis of onsaprp1                  1
    Time
    Type
    Nr
    Clt
    TCode
    Grp
    N
    Text
    15:43:09
    DIA
    009
    300
    AB
    0
    Run-time error "DBIF_RSQL_INTERNAL_ERROR" occurred
    Run-time error "DBIF_RSQL_INTERNAL_ERROR" occurred
    Details
    Recording at local and central time........................ 11.02.2011 15:43:09
    Task......
    Process
    User......
    Terminal
    Session
    TCode
    Program
    Cl
    Problem cl
    Package
    03084
    Dialog work process No. 009
    TOM
    1
    SAPMSSY1
    T
    Transaction Problem
    SABP
    Further details for this message type
    Module nam
    Line
    Error text
    absapsql
    0786
    HandleRsqlErrors
    Documentation for system log message AB 0 :
    The specified runtime error has occurred in the system.
    Parameter
    abcdefghijklmnopqrstuvwxyz .. DBIF_RSQL_INTERNAL_ERROR
    Technical details
    File
    Offset
    RecFm
    System log type
    Grp
    N
    variable message data
    119
    618840
    l
    Error (Module, Row)
    AB
    0
    HandleRsqlErrors                                    absapsql0786
    High Priority error
    Details Page 2 Line 18 System Log: Local Analysis of onsaprp1                 1
    Time
    Type
    Nr
    Clt
    TCode
    Grp
    N
    Text
    15:44:07
    DIA
    009
    300
    SMEN
    BZ
    Y
    Unexpected return value 8 when calling up
    Unexpected return value 8 when calling up
    Details
    Recording at local and central time........................ 11.02.2011 15:44:07
    Task......
    Process
    User......
    Terminal
    Session
    TCode
    Program
    Cl
    Problem cl
    Package
    03084
    Dialog work process No. 009
    TOM
    om-blr-l
    1
    SMEN
    SAPLSMTR_NAVIGATION
    K
    SAP Web AS Problem
    SBAC
    Further details for this message type
    Module nam
    Line
    Table Name
    Field Name
    dbrepolo
    172
    8
    Documentation for system log message BZ Y :
    When calling a function within the database interface, a return
    value which cannot be processed by the calling function was
    provided.
    Technical details
    File
    Offset
    RecFm
    System log type
    Grp
    N
    variable message data
    120
    11160
    h
    Database Error (Non-SQL)
    BZ
    Y
    8                                                   dbrepolo172
    Edited by: Thomas Paul jr on Feb 14, 2011 6:36 AM
    Edited by: Thomas Paul jr on Feb 14, 2011 6:38 AM

  • SM58 : Internal error when accessing a table

    Hi there,
    We have just upgraded from R/3 4.7 to ECC 6.0. After the upgarde we face many "Internal error when accessing a table" in sm58. Is there any table mapping mismatched happened during unicode conversions? How to check the details? Most of the errors are SWW_WI_EXECUTE_INTERNAL_RFC, SWW_WI_CREATE_VIA_EVENT_IBF and etc which are workflow modules.
    can you help?
    Thanks.
    Regards,
    Thava

    Hi
    Have u checked this thread?
    problem in TRFC
    Error while executing Workflow: User is locked.
    /message/5804053#5804053 [original link is broken]
    Regards
    Sridhar Goli

  • Memory error when trying to fetch events by data range

    I keep getting the following memory error when trying to fetch events from my calendar server: CAPI_STAT_SERVICE_MEM_ALLOC
    I have checked the forum and found only one entry that talks about adjusting the -mx -oss settings for my JVM. However it is unclear if this change needs to be done to the server or the client where I am running the JVM. I have made these adjustments in my JDeveloper project and I still recive the error. I have checked the eng.log, cws.log and snc.log. The only entries found are:
    DATE = Thu Jun 2 16:53:24 2005
    PID = 12647; TID = 3076395840
    Trying to connect: Host = houoas2.us.oracle.com (127.0.0.1)
    Service = unidas
    DATE = Thu Jun 2 16:53:29 2005
    PID = 12647; TID = 3076395840
    Connection established: Host = houoas2.us.oracle.com (127.0.0.1)
    Service = unidas
    This is being done on a 10g calendar server. Any help would be appricated.

    Now that 10g and its associated CSDK are out and the 9.0.4.x CSDK is presumably frozen, would it be possible to make the 9.0.4.10 CSDKs - for each platform - available for downloading, unbundled from the massive server suite?

  • Runtime Error when accessing KM Content

    Hi Everyone,
    I am getting Runtime Error when accessing KM Content through Content Administration/KM Content.
    See the below error information.
    Runtime Error
    An exception occured while processing the request.
    Additional information: String index out of range: -28
    Exception ID = 00a67a58-06f5-2b10-b997-9edccc061ca6
    What could be the problem.
    Any help will be appreciated.
    thank you
    regards
    sunil

    hi Romano
    Here is the log trace file text.
    #1.5#001321C84B3300A304DC7AFD00001D50000465605028DB15#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces a problem time in sequence#2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#11651182th#
    #1.5#001321C84B3300A304DC7AFF00001D50000465605028DBEB#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces the following problem: #2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#java.lang.IllegalStateException: CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33 did not confirm instance activity for more than 180 sec.#
    #1.5#001321C84B3300A304DC7B0100001D50000465605028DCB3#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java###CBS Instance pulse thread will try to recover#1#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#
    #1.5#001321C84B3300A304DC7B0200001D50000465605028DE21#1237364243036#com.sap.tc.cbs.server.rt.impl.CourteousTimer##com.sap.tc.cbs.server.rt.impl.CourteousTimer######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error##Java###A problem during RUN
    [EXCEPTION]
    #1#java.lang.IllegalStateException: CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33 did not confirm instance activity for more than 180 sec.
         at com.sap.tc.cbs.server.rt.impl.Pulsar.beforeExecution(Pulsar.java:86)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:116)
         at java.lang.Thread.run(Thread.java:534)
    #1.5#001321C84B3300A304DC7B0400001D50000465605028DF04#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces a problem time in sequence#2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#11651183th#
    #1.5#001321C84B3300A304DC7B0600001D50000465605028DFDA#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces the following problem: #2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#java.lang.IllegalStateException: CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33 did not confirm instance activity for more than 180 sec.#
    #1.5#001321C84B3300A304DC7B0800001D50000465605028E0A1#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java###CBS Instance pulse thread will try to recover#1#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#
    #1.5#001321C84B3300A304DC7B0900001D50000465605028E1FE#1237364243036#com.sap.tc.cbs.server.rt.impl.CourteousTimer##com.sap.tc.cbs.server.rt.impl.CourteousTimer######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error##Java###A problem during RUN
    [EXCEPTION]
    #1#java.lang.IllegalStateException: CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33 did not confirm instance activity for more than 180 sec.
         at com.sap.tc.cbs.server.rt.impl.Pulsar.beforeExecution(Pulsar.java:86)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:116)
         at java.lang.Thread.run(Thread.java:534)
    #1.5#001321C84B3300A304DC7B0B00001D50000465605028E2DF#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces a problem time in sequence#2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#11651184th#
    #1.5#001321C84B3300A304DC7B0D00001D50000465605028E3B5#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces the following problem: #2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#java.lang.IllegalStateException: CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33 did not confirm instance activity for more than 180 sec.#
    #1.5#001321C84B3300A304DC7B0F00001D50000465605028E473#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java###CBS Instance pulse thread will try to recover#1#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#
    #1.5#001321C84B3300A304DC7B1000001D50000465605028E5D8#1237364243036#com.sap.tc.cbs.server.rt.impl.CourteousTimer##com.sap.tc.cbs.server.rt.impl.CourteousTimer######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error##Java###A problem during RUN
    [EXCEPTION]
    #1#java.lang.IllegalStateException: CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33 did not confirm instance activity for more than 180 sec.
         at com.sap.tc.cbs.server.rt.impl.Pulsar.beforeExecution(Pulsar.java:86)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:116)
         at java.lang.Thread.run(Thread.java:534)
    #1.5#001321C84B3300A304DC7B1200001D50000465605028E6B9#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces a problem time in sequence#2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#11651185th#
    #1.5#001321C84B3300A304DC7B1400001D50000465605028E798#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces the following problem: #2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#java.lang.IllegalStateException: CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33 did not confirm instance activity for more than 180 sec.#
    #1.5#001321C84B3300A304DC7B1600001D50000465605028E856#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java###CBS Instance pulse thread will try to recover#1#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#
    #1.5#001321C84B3300A304DC7B1700001D50000465605028E9AD#1237364243036#com.sap.tc.cbs.server.rt.impl.CourteousTimer##com.sap.tc.cbs.server.rt.impl.CourteousTimer######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error##Java###A problem during RUN
    [EXCEPTION]
    #1#java.lang.IllegalStateException: CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33 did not confirm instance activity for more than 180 sec.
         at com.sap.tc.cbs.server.rt.impl.Pulsar.beforeExecution(Pulsar.java:86)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:116)
         at java.lang.Thread.run(Thread.java:534)
    #1.5#001321C84B3300A304DC7B1900001D50000465605028EAA5#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces a problem time in sequence#2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#11651186th#
    #1.5#001321C84B3300A304DC7B1B00001D50000465605028EB87#1237364243036#com.sap.tc.cbs.server.rt.impl.Pulsar##com.sap.tc.cbs.server.rt.impl.Pulsar######6575e170137111de9951001321c84b33#Thread[CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33,10,SAPEngine_System_Thread[impl:5]_Group]##0#0#Error#1#/Applications/CBS/Administration#Java### faces the following problem: #2#CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33#java.lang.IllegalStateException: CBS-Pulsar 12432550/ad9cf170-12e8-11de-99b2-001321c84b33 did not confirm instance activity for more than 180 sec.#
    regards
    sunil

  • Error when accessing UM Configuration...

    As far as I can tell, we just started getting this error after we installed Patch 5. Maybe we did something wrong/out-of-order or <i>didn't</i> do. I say this b/c I do not get the error when accessing UM Config in one environment where the patch is installed, but do in another.
    When I try to access the UM Config I get this error (taken from the portal logger):
    Exception ID:11:30_05/11/04_0028
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Resource
    Component : pcd:portal_content/administrator/super_admin/super_admin_role/com.sap.portal.system_administration/com.sap.portal.system_configuration/com.sap.portal.uMPropertyEditor
    Component class : com.sapportals.portal.prt.component.usermanagement.admin.UMPropertyEditorComponent
         at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:853)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:390)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:463)
         at com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:88)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:234)
         at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: Unable to Find Method : key
         at com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:101)
         at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:338)
         at com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:817)
    Ideas anyone?

    Hi Andre,
    please compare code too large for try statement
    Please open an OSS message.
    Hope it helps
    Detlev

  • [N95 8GB]Out of Memory error when opening 15MB pdf...

    What is the file size limit when opening a pdf file? I have a 15MB pdf file that cause 'Out of memory' error when I opened it with the PDF Reader that comes with the phone.
    Thanks.

    Hi,
    It seems that problem is file specific, so could you please share a file with me. I sending you a private message.
    Regards,
    Anoop

  • Indesign cs5 'out of memory' error when using preflight

    I have been regulary getting an 'out of memory' error when i choose to use my bespoke preflight profile.
    I have 4gig of ram and run Indesign CS5 on OS 10.6.8.
    Does anyone know a work around?
    As soon as I select from the basic default profile, i get the beach ball from hell for 10mins, then it kindly lets me know that I am out of memory, sends a crash report to Adobe and then asks if I want to relauch. I'm stuck in a vicious circle. I must of sent my 4th crash report now and no feedback from anyone at Adobe.

    I have replaced my preferences, but still the problem persists. I have tried switching my view from typical display to fast display before i selected a profile. I thought this may give me the extra memory I needed to avoid the enevitable crash. I learnt that 2 files were indeed rgb instead of cmyk before it crashed again. So I switched them to cmyk and tried again, selected my bespoke profile, but yet again it crashed. I think the problem lies with the file, not Indesign, as i have tried the same profile on a different file and the program doesn't crash and runs as it should. So if in future I need to use said crashing file again, firstly i will need to try Peter's isolate fix method. Otherwise i'll never be able to progress to successful a pdf.

Maybe you are looking for

  • Can you actually search...

    ...dates/events in icloud calendar? I can't seem to find a search facility.

  • Cancel and keep workitem in ready state in user decision step

    Hi, In a user decision step,there is a default option 'Cancel and keep the work item'. Now clicking on this option, the workitem goes into "Inprogress state" whereas i want to keep the workitem in "ready state"  after i click on the option 'Cancel an

  • Authorization Issue in SM50

    Hi All, One of our user is facing authorization issue in SM50. He goes to SM50 and tries to open a work process. This is where he gets message "You are not authorized to use function Work Process List". When I check the trace, I see only missing acce

  • Report Painter Report has the wrong Profit Center

    Hi Gurus, I changed the profit center in a cost center using KS02. When I execute a report group for report painter using GR55, I still see costs showing up under the old profit center. What do I need to do the fix the problem. Is it coming from the

  • TimeTaken To resolve the incident between different groups

    Hi all, I need to find the time interval between two different groups on of incident in sql query May i know what are the feilds i need to refer to get the time interval Help me on this pl. Thanks . Regards, Subathra