Strange behavior of oracle database

I have a instance in a db server and i access the databse from sqlplus through my client.today morning when I wanted to restart the database while opening the database it gave the following error.
SQL> startup
ORACLE instance started.
Total System Global Area 272629760 bytes
Fixed Size 1248504 bytes
Variable Size 125829896 bytes
Database Buffers 142606336 bytes
Redo Buffers 2945024 bytes
Database mounted.
ORA-01172: recovery of thread 1 stuck at block 137 of file 2
ORA-01151: use media recovery to recover block, restore backup if needed
but when restarted it sitting on the server itself it got started up without complaining.
What could be the culprit for this strange behavior of the database??

Hi,
This problem normally occures when block corruption happens.
DIAGNOSTIC ANALYSIS: ORA-1172 is said to happen when we failed to change on a block during instance recovery. This happens when a block is broken and fixed during its recovery. We have collected two dump files of the redo logs to investigate this symptom further. We would like to know what the reason to cause this symptom was and how to avoid / cope with this.
*Cause: Crash recovery or instance recovery could not apply a change to a block because it was not the next change. This can happen if the block was corrupted and then repaired during recovery.
*Action: Do a RECOVER DATAFILE for the file containing the block. If this does not resolve the problem then restore the file from a backup and recover it.

Similar Messages

  • Strange Behavior connecting to Oracle

    Hi to All,
    On Server Windows 2003 I have installed Oracle 10g R2. On this Server run Toad for Oracle.
    If I run Oracle console, all work fine; running Toad the ORA-12154 error is displayed.
    I have tried to connect to DB with Toad from a client and all works.
    Have someone an idea on this strange behavior ?
    Thank You and Best Regards
    Gaetano

    This may be a problem?NO!
    12154, 00000, "TNS:could not resolve the connect identifier specified"
    // *Cause:  A connection to a database or other service was requested using
    // a connect identifier, and the connect identifier specified could not
    // be resolved into a connect descriptor using one of the naming methods
    // configured. For example, if the type of connect identifier used was a
    // net service name then the net service name could not be found in a
    // naming method repository, or the repository could not be
    // located or reached.
    // *Action:
    //   - If you are using local naming (TNSNAMES.ORA file):
    //      - Make sure that "TNSNAMES" is listed as one of the values of the
    //        NAMES.DIRECTORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA)
    //      - Verify that a TNSNAMES.ORA file exists and is in the proper
    //        directory and is accessible.
    //      - Check that the net service name used as the connect identifier
    //        exists in the TNSNAMES.ORA file.
    //      - Make sure there are no syntax errors anywhere in the TNSNAMES.ORA
    //        file.  Look for unmatched parentheses or stray characters. Errors
    //        in a TNSNAMES.ORA file may make it unusable.
    //   - If you are using directory naming:
    //      - Verify that "LDAP" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Verify that the LDAP directory server is up and that it is
    //        accessible.
    //      - Verify that the net service name or database name used as the
    //        connect identifier is configured in the directory.
    //      - Verify that the default context being used is correct by
    //        specifying a fully qualified net service name or a full LDAP DN
    //        as the connect identifier
    //   - If you are using easy connect naming:
    //      - Verify that "EZCONNECT" is listed as one of the values of the
    //        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
    //        (SQLNET.ORA).
    //      - Make sure the host, port and service name specified
    //        are correct.
    //      - Try enclosing the connect identifier in quote marks.
    //   See the Oracle Net Services Administrators Guide or the Oracle
    //   operating system specific guide for more information on naming.This error is clear.
    SQL*Net is being asked to resolved TNS_ALIAS & it reports that it can not find the requested name.
    EITHER
    1) the requested name is not correct
    or
    2) SQL*Net is looking in the wrong tnsnames.ora file & still not finding the requested name.
    Good Luck solving your mystery

  • Oracle Installer strange behavior!

    After installing the latest version of oracle database lite, I deinstalled it.
    Now when I try to install something, the Oracle Installer just closes without installing and without any message of error. I'm using the Oracle Installer 10.1.0.3.0! This happens after I choose what to install.
    Did this happen to anyone?!

    Hi,
    This problem normally occures when block corruption happens.
    DIAGNOSTIC ANALYSIS: ORA-1172 is said to happen when we failed to change on a block during instance recovery. This happens when a block is broken and fixed during its recovery. We have collected two dump files of the redo logs to investigate this symptom further. We would like to know what the reason to cause this symptom was and how to avoid / cope with this.
    *Cause: Crash recovery or instance recovery could not apply a change to a block because it was not the next change. This can happen if the block was corrupted and then repaired during recovery.
    *Action: Do a RECOVER DATAFILE for the file containing the block. If this does not resolve the problem then restore the file from a backup and recover it.

  • Bizzare behavior with oracle 10g driver

    Hello - we are seeing some very strange behavior using the oracle 10g driver (version 10.2.0.1.0). I'll briefly describe the problem and then show a code example of our test. We are sending in a prepared statement against the primary key of a table with an in clause of 300 string values. When we iterate over the result set we consistantly only get 256 rows returned. But when we send in a prepared statement with only one bind variable (but do this 300 seperate times) the result set is complete. If we use the oracle 9i driver, all 300 are returned as expected. The database is 10g. Here is what our test looks like:
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.DriverManager;
    import java.io.InputStream;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.FileInputStream;
    * Thomson West
    * User: Tom Killeen
    * Date: Feb 28, 2006
    public class OracleTest
    public static void main(String[] args) throws Exception
    String driver = "oracle.jdbc.driver.OracleDriver";
    String prodUrl = "jdbc:oracle:thin:@myDatabase";
    Class.forName(driver);
    String singleSql = "select * from case where case_uuid = ?";
    Connection con = DriverManager.getConnection(prodUrl, "scott", "tiger");
    PreparedStatement ps = con.prepareStatement(singleSql);
    InputStream in = new FileInputStream("C:/Java/projects/MetadataService/mainline/test/query/xml/300ProdUuids.txt");
    BufferedReader br = new BufferedReader(new InputStreamReader(in));
    String uuid = null;
    int rsCount = 0;
    ResultSet rs = null;
    System.out.println("find individually");
    while ((uuid = br.readLine()) != null)
    ps.setString(1, uuid);
    rs = ps.executeQuery();
    while (rs.next())
    rsCount++;
    System.out.println("idv " + rsCount + ": " + rs.getString("case_uuid"));
    rs.close();
    ps.close();
    System.out.println();
    StringBuffer sql = new StringBuffer();
    sql.append("select * from case where case_uuid in (");
    for (int i = 0; i < 300; i++)
    sql.append("?");
    if (i < 299)
    sql.append(",");
    sql.append(")");
    System.out.println(sql);
    ps = con.prepareStatement(sql.toString());
    in = new FileInputStream("C:/Java/projects/MetadataService/mainline/test/query/xml/300ProdUuids.txt");
    br = new BufferedReader(new InputStreamReader(in));
    uuid = null;
    int bindCount = 1;
    System.out.println("binding variables");
    while ((uuid = br.readLine()) != null)
    System.out.println("bc " + bindCount + " : " + uuid);
    ps.setString(bindCount, uuid);
    bindCount++;
    rs = ps.executeQuery();
    int rsCounter = 0;
    System.out.println();
    System.out.println("iterating rs");
    while (rs.next())
    rsCounter++;
    System.out.println("rs " + rsCounter + ": " + rs.getString("case_uuid"));
    rs.close();
    ps.close();
    con.close();
    Here is the output from running our test. Notice that the last line has a count of 256 for the result set.
    Has anyone seen anything like this?
    thanks,
    Tom
    find individually
    idv 1: I00000670722f11d7bffff83f52289667
    idv 2: I000010a071e611d7ba84e3942a4b620d
    idv 3: I0000192072c111d7b100a463f186e11d
    idv 4: I00001b90723111d7ab54daa4035d65fa
    idv 5: I00002020727411d7a07084608af77b15
    idv 6: I000029b0728011d792e6e58f3e66f41c
    idv 7: I00002c80723a11d787c8f80b08d85a21
    idv 8: I00003f10745411d79b9bc4eeac1c0b2d
    idv 9: I000048d0721411d796fabc35f7796f7a
    idv 10: I000067e0726c11d7b100a463f186e11d
    idv 11: I0000796072e411d7b100a463f186e11d
    idv 12: I000079c005aa11d8a85fe39410e0ab6f
    idv 13: I000079e0741711d7aea3a34f2eb4052a
    idv 14: I000085e0a1f611d7af65eaafd5dac9b5
    idv 15: I000088c0728911d7a07084608af77b15
    idv 16: I00008b0071d411d7880af2b8a7a150bc
    idv 17: I00008f90721711d787c8f80b08d85a21
    idv 18: I00009950724811d78ef88cd3014a7f23
    idv 19: I00009a1072dc11d7ba84e3942a4b620d
    idv 20: I0000a7a072bc11d7bffff83f52289667
    idv 21: I0000ace071e611d78ef88cd3014a7f23
    idv 22: I0000c0a0741a11d7ab5cff2fe4340d11
    idv 23: I0000c40071d211d796fabc35f7796f7a
    idv 24: I0000cc50728811d796fabc35f7796f7a
    idv 25: I0000d250724611d7b100a463f186e11d
    idv 26: I0000d94072bd11d78ef88cd3014a7f23
    idv 27: I0000e7b0741a11d7b44cec793782d444
    idv 28: I0000f1a071ff11d787c8f80b08d85a21
    idv 29: I0000f4a071de11d7a5a58ae19b0bc350
    idv 30: I0000fbc0727a11d78347daa8ede63acd
    idv 31: I0000fcf0729411d787c8f80b08d85a21
    idv 32: I0000ff5072c811d7a07084608af77b15
    idv 33: I00010090721e11d7bffff83f52289667
    idv 34: I00010390746e11d79ccbd455e2fa80ef
    idv 35: I000112b0724111d7bffff83f52289667
    idv 36: I00011940726e11d7b100a463f186e11d
    idv 37: I00011ca0729711d78ef88cd3014a7f23
    idv 38: I00012500728911d787c8f80b08d85a21
    idv 39: I00012770746a11d79c33f30f55d9158b
    idv 40: I0001297071e311d78347daa8ede63acd
    idv 41: I00012a4071b311d7880af2b8a7a150bc
    idv 42: I00012e7071ac11d7a5a58ae19b0bc350
    idv 43: I000131c0729911d7a07084608af77b15
    idv 44: I00013d90746111d7abd288e162f1ee6f
    idv 45: I000147f0743d11d79a8ab5f5a94ee96e
    idv 46: I00014850721611d7b100a463f186e11d
    idv 47: I000148b0726011d78bcee6281d031f02
    idv 48: I00014d2071ba11d7a5a58ae19b0bc350
    idv 49: I0001593072e311d7ab54daa4035d65fa
    idv 50: I00015d70721811d7880af2b8a7a150bc
    idv 51: I000162a0720611d792e6e58f3e66f41c
    idv 52: I00016340154411d894849fe41a758d3e
    idv 53: I00016a90727211d7b0409d11d16b6b13
    idv 54: I0001713071db11d796fabc35f7796f7a
    idv 55: I00017de072af11d787c8f80b08d85a21
    idv 56: I000183c0ff1e11d79d93859d09cad35e
    idv 57: I00018680720211d7a07084608af77b15
    idv 58: I00018fe071e911d7bffff83f52289667
    idv 59: I000190b0154c11d8a6f0ebf54ed20c72
    idv 60: I0001921071f811d792e6e58f3e66f41c
    idv 61: I0001943072cb11d796fabc35f7796f7a
    idv 62: I00019500729b11d796fabc35f7796f7a
    idv 63: I0001a1d0745811d79ccbd455e2fa80ef
    idv 64: I0001a3d071d111d7947cc0bc28d0837a
    idv 65: I0001a8e042cc11d8bfb1c5b53ee7b122
    idv 66: I0001aa0071b411d78bcee6281d031f02
    idv 67: I0001c940b1ab11d7ad3ab23fa36e24eb
    idv 68: I0001dc60724911d78ef88cd3014a7f23
    idv 69: I0001f050723111d792e6e58f3e66f41c
    idv 70: I0001f080725611d7ab54daa4035d65fa
    idv 71: I0001f980746411d7a94bace56a9eba1c
    idv 72: I0001fa10726211d78ef88cd3014a7f23
    idv 73: I0001fe70728011d78347daa8ede63acd
    idv 74: I0001ffe071fb11d7b0409d11d16b6b13
    idv 75: I0002010072d911d78bcee6281d031f02
    idv 76: I0002084071ed11d7a07084608af77b15
    idv 77: I000220f0723d11d7b100a463f186e11d
    idv 78: I00022c4072d211d7a5a58ae19b0bc350
    idv 79: I00022cf0154c11d89b2cb73750577cdc
    idv 80: I00022f4072b111d7b100a463f186e11d
    idv 81: I00023550a76111d79a3e000874f30b44
    idv 82: I00024ad0746811d79a8ab5f5a94ee96e
    idv 83: I00024b02a5ba11d8860ea464f39e833e
    idv 84: I00025ef0720411d7ba84e3942a4b620d
    idv 85: I00026d40727811d7ab54daa4035d65fa
    idv 86: I00026d80a2ad11d79bff000874f30b44
    idv 87: I00027080742911d79d2ef02eee90521e
    idv 88: I0002721aa5ba11d8860ea464f39e833e
    idv 89: I00027280741311d7b44cec793782d444
    idv 90: I00028050147611d895d6f30359ceb780
    idv 91: I000286c0729811d7947cc0bc28d0837a
    idv 92: I00028830721311d78347daa8ede63acd
    idv 93: I00029920a5ba11d8860ea464f39e833e
    idv 94: I0002a0b0723e11d7a5a58ae19b0bc350
    idv 95: I0002a3a072e111d7a07084608af77b15
    idv 96: I0002a48071ed11d787c8f80b08d85a21
    idv 97: I0002a940725511d78bcee6281d031f02
    idv 98: I0002b8c072e311d7a07084608af77b15
    idv 99: I0002ba00723911d7b100a463f186e11d
    idv 100: I0002c034a5ba11d8860ea464f39e833e
    idv 101: I0002c2f0729a11d792e6e58f3e66f41c
    idv 102: I0002c2f0729a11d7ab54daa4035d65fa
    idv 103: I0002c4f0728411d7a07084608af77b15
    idv 104: I0002cf9071c111d787c8f80b08d85a21
    idv 105: I0002dfe0721f11d7b0409d11d16b6b13
    idv 106: I0002e8a0725b11d7ba84e3942a4b620d
    idv 107: I0002f5a0743d11d797e5f7f2fcbea176
    idv 108: I0002fd2072b211d7ab54daa4035d65fa
    idv 109: I0003003071cd11d796fabc35f7796f7a
    idv 110: I00030a8074de11d79453d3af27410a27
    idv 111: I00030b1072dc11d78347daa8ede63acd
    idv 112: I000318e0721d11d7880af2b8a7a150bc
    idv 113: I00032630729c11d7b100a463f186e11d
    idv 114: I00032e60726911d7ba84e3942a4b620d
    idv 115: I00033230721811d796fabc35f7796f7a
    idv 116: I00033600743811d7a658bf569bf0de0b
    idv 117: I00033730745211d79d2ef02eee90521e
    idv 118: I000341f0f36c11d7993aa96b44857ca1
    idv 119: I00034270b79611d7817fb05730618d2c
    idv 120: I0003429071b211d7b0409d11d16b6b13
    idv 121: I00034e80746311d7afb9df8873fee31a
    idv 122: I0003507072a011d7ba84e3942a4b620d
    idv 123: I00035f40744711d79d2ef02eee90521e
    idv 124: I00037420727711d7b100a463f186e11d
    idv 125: I00037d20721411d7ba84e3942a4b620d
    idv 126: I00037dc0743011d79d2ef02eee90521e
    idv 127: I00038970729e11d7ba84e3942a4b620d
    idv 128: I00038ab071f411d7b100a463f186e11d
    idv 129: I0003921071f111d7a5a58ae19b0bc350
    idv 130: I0003a860720d11d78347daa8ede63acd
    idv 131: I0003aa5072bb11d7ab54daa4035d65fa
    idv 132: I0003aa99a5ba11d8860ea464f39e833e
    idv 133: I0003ac5072a511d7a5a58ae19b0bc350
    idv 134: I0003b720747811d79ccbd455e2fa80ef
    idv 135: I0003b7b0727611d787c8f80b08d85a21
    idv 136: I0003bb10729f11d78ef88cd3014a7f23
    idv 137: I0003c5d072c511d7a5a58ae19b0bc350
    idv 138: I0003d19072e011d78347daa8ede63acd
    idv 139: I0003d1a4a5ba11d8860ea464f39e833e
    idv 140: I0003d1a6a5ba11d8860ea464f39e833e
    idv 141: I0003d1a8a5ba11d8860ea464f39e833e
    idv 142: I0003d53074db11d7b5dbefdbeac7aa0d
    idv 143: I0003d560728f11d7a5a58ae19b0bc350
    idv 144: I0003d5c072d911d792e6e58f3e66f41c
    idv 145: I0003ec20723111d78347daa8ede63acd
    idv 146: I0003f2b0725e11d787c8f80b08d85a21
    idv 147: I0003f54072b711d792e6e58f3e66f41c
    idv 148: I0003f8b0a5ba11d8860ea464f39e833e
    idv 149: I0003fa50742d11d79b9bc4eeac1c0b2d
    idv 150: I0003feb071da11d7a07084608af77b15
    idv 151: I000405d0160911d88becacb69499ad1d
    idv 152: I00040950060411d88297fc19561b6a07
    idv 153: I00040ed0721311d7a5a58ae19b0bc350
    idv 154: I00041660723511d7a07084608af77b15
    idv 155: I00041830746b11d797e5f7f2fcbea176
    idv 156: I00041cc0723d11d7b0409d11d16b6b13
    idv 157: I000420f0723611d7b100a463f186e11d
    idv 158: I000426c071cf11d7880af2b8a7a150bc
    idv 159: I00043970726111d7ba84e3942a4b620d
    idv 160: I00043af0c41a11d7858789f8f41f469f
    idv 161: I0004401071ca11d7b100a463f186e11d
    idv 162: I000452c0725c11d7bffff83f52289667
    idv 163: I000462d08bc311d7bb8d85f0ac71b1f3
    idv 164: I00047040725011d7ab54daa4035d65fa
    idv 165: I000470a0729a11d7b100a463f186e11d
    idv 166: I0004773072c711d78ef88cd3014a7f23
    idv 167: I0004794071ed11d7ab54daa4035d65fa
    idv 168: I00048290729811d78347daa8ede63acd
    idv 169: I00049af071da11d7b100a463f186e11d
    idv 170: I0004b040720111d7880af2b8a7a150bc
    idv 171: I0004b4a0721f11d78ef88cd3014a7f23
    idv 172: I0004b9702b4f11d8a0409604c12e4f92
    idv 173: I0004bb7071ad11d7a5a58ae19b0bc350
    idv 174: I0004c3c0726311d78ef88cd3014a7f23
    idv 175: I0004cb90745711d7a658bf569bf0de0b
    idv 176: I0004d490067011d8b893f65b4e54826b
    idv 177: I0004d780749711d79ccbd455e2fa80ef
    idv 178: I0004dc10726911d78347daa8ede63acd
    idv 179: I0004de70729d11d7ba84e3942a4b620d
    idv 180: I0004e040726211d7b0409d11d16b6b13
    idv 181: I0004e71071f011d7b100a463f186e11d
    idv 182: I0004ed70746911d79a8ab5f5a94ee96e
    idv 183: I0004ef7071e211d78bcee6281d031f02
    idv 184: I0004f09072c011d792e6e58f3e66f41c
    idv 185: I0004f0a071fc11d792e6e58f3e66f41c
    idv 186: I0004f240879511d79cf082a8a526bdf9
    idv 187: I0004f3a0744c11d7b433bc7aed88dbc8
    idv 188: I0004f490729411d7bffff83f52289667
    idv 189: I0004fb90724711d7a07084608af77b15
    idv 190: I00050b20721111d7b0409d11d16b6b13
    idv 191: I00050e2071f011d78bcee6281d031f02
    idv 192: I00050e20746111d79b9bc4eeac1c0b2d
    idv 193: I00051380747411d7afb9df8873fee31a
    idv 194: I000518a072b511d78347daa8ede63acd
    idv 195: I000518e0721611d78ef88cd3014a7f23
    idv 196: I00052800725a11d7ba84e3942a4b620d
    idv 197: I00052f00720d11d7947cc0bc28d0837a
    idv 198: I00053200745d11d79a8ab5f5a94ee96e
    idv 199: I00053e90268111d886bdfb192a64ac56
    idv 200: I00054420859711d79001d96d270a074a
    idv 201: I000546f071c911d792e6e58f3e66f41c
    idv 202: I000562c072e111d7ab54daa4035d65fa
    idv 203: I00056d109f7311d7b07dff332e990446
    idv 204: I00056d30746a11d797e5f7f2fcbea176
    idv 205: I00056f30745411d79c33f30f55d9158b
    idv 206: I00057820724411d7b100a463f186e11d
    idv 207: I00057980728311d7a07084608af77b15
    idv 208: I000580e0728011d7ab54daa4035d65fa
    idv 209: I00058271efc011d897339e11b9afd716
    idv 210: I00058d7074dc11d7b371e3b03459763a
    idv 211: I0005944071f911d7947cc0bc28d0837a
    idv 212: I00059910879611d7b396e0d633b35241
    idv 213: I00059ca071eb11d7ab54daa4035d65fa
    idv 214: I00059fd0746011d7b433bc7aed88dbc8
    idv 215: I0005a981efc011d897339e11b9afd716
    idv 216: I0005aaa0eb6311d7b52ae3604baa5d0f
    idv 217: I0005ad60744011d7a94bace56a9eba1c
    idv 218: I0005ae20726311d792e6e58f3e66f41c
    idv 219: I0005b9f071ba11d7b100a463f186e11d
    idv 220: I0005bc001e3711d891fbd2c50ca57005
    idv 221: I0005c8b071b411d7a07084608af77b15
    idv 222: I0005dc2072da11d78bcee6281d031f02
    idv 223: I0005f7a4efc011d897339e11b9afd716
    idv 224: I0005f9e0722f11d796fabc35f7796f7a
    idv 225: I0006073072ae11d7a07084608af77b15
    idv 226: I00061530133611d8aac7dbcabbf65311
    idv 227: I000627f071e211d7a07084608af77b15
    idv 228: I00062d80721a11d7947cc0bc28d0837a
    idv 229: I000633a072c111d7a5a58ae19b0bc350
    idv 230: I000635b0745811d789fed0d41f30a68d
    idv 231: I00063b3072e311d78347daa8ede63acd
    idv 232: I00063bd0728e11d78bcee6281d031f02
    idv 233: I00063e4071fe11d78bcee6281d031f02
    idv 234: I000643d0723611d78ef88cd3014a7f23
    idv 235: I00064b5000b611d88508fb717bde6c05
    idv 236: I00065a80729c11d7a5a58ae19b0bc350
    idv 237: I00066a5071c711d7b0409d11d16b6b13
    idv 238: I00066d50741711d79b9bc4eeac1c0b2d
    idv 239: I000672e071de11d78bcee6281d031f02
    idv 240: I000676e071b211d7880af2b8a7a150bc
    idv 241: I00067a70747111d7a94bace56a9eba1c
    idv 242: I00068860722a11d7ab54daa4035d65fa
    idv 243: I0006a450742b11d7abd288e162f1ee6f
    idv 244: I0006ba7071b111d7bffff83f52289667
    idv 245: I0006c930a76111d78cb8000874f30b44
    idv 246: I0006da10923511d78b148831b06d9b3e
    idv 247: I0006dc10726211d7a5a58ae19b0bc350
    idv 248: I0006e6a0726311d7ab54daa4035d65fa
    idv 249: I0006ef70744c11d79d2ef02eee90521e
    idv 250: I0006f070744111d7abd288e162f1ee6f
    idv 251: I0006fa0071dc11d7b100a463f186e11d
    idv 252: I0006fc60859811d78984a55bb4517c0f
    idv 253: I000708d7044011da9439b076ef9ec4de
    idv 254: I00071b70726811d7a5a58ae19b0bc350
    idv 255: I00071f40748811d79ccbd455e2fa80ef
    idv 256: I00072210f0c511d78788db544ffe8b12
    idv 257: I00072600726911d7bffff83f52289667
    idv 258: I00073890748311d7afb9df8873fee31a
    idv 259: I000746a0d4cd11d79c5ab0511e0c5824
    idv 260: I00077420726911d7947cc0bc28d0837a
    idv 261: I000775b072cd11d787c8f80b08d85a21
    idv 262: I0007802071e511d78bcee6281d031f02
    idv 263: I0007974071d111d7a5a58ae19b0bc350
    idv 264: I0007a8c0724911d796fabc35f7796f7a
    idv 265: I0007aa30743511d7aea3a34f2eb4052a
    idv 266: I0007b280727a11d7b0409d11d16b6b13
    idv 267: I0007b3f0746611d79ccbd455e2fa80ef
    idv 268: I0007b520748011d7afb9df8873fee31a
    idv 269: I0007bf10726511d78ef88cd3014a7f23
    idv 270: I0007cd1071cb11d7b0409d11d16b6b13
    idv 271: I0007d000726e11d7b0409d11d16b6b13
    idv 272: I0007d29833ff11d986b0aa9c82c164c0
    idv 273: I0007d34071ae11d7947cc0bc28d0837a
    idv 274: I0007d730724611d78347daa8ede63acd
    idv 275: I0007de3071f911d7ba84e3942a4b620d
    idv 276: I0007e13071d811d796fabc35f7796f7a
    idv 277: I0007e850727411d78bcee6281d031f02
    idv 278: I0007f1f0742d11d79a8ab5f5a94ee96e
    idv 279: I0007f54072a911d78347daa8ede63acd
    idv 280: I0007f620154811d8b8fd999a64bcc6ae
    idv 281: I00080dd0721011d7bffff83f52289667
    idv 282: I000812a071b411d7a5a58ae19b0bc350
    idv 283: I00081af0726a11d7b100a463f186e11d
    idv 284: I00082b20745011d7a658bf569bf0de0b
    idv 285: I00084300725f11d7ba84e3942a4b620d
    idv 286: I0008449072c311d78ef88cd3014a7f23
    idv 287: I000861b0726d11d7a5a58ae19b0bc350
    idv 288: I0008644072c611d7b0409d11d16b6b13
    idv 289: I000864b0724c11d78347daa8ede63acd
    idv 290: I00087d7071d811d7b0409d11d16b6b13
    idv 291: I00087d70744911d7afb9df8873fee31a
    idv 292: I000886f072a811d787c8f80b08d85a21
    idv 293: I00088cf0726611d792e6e58f3e66f41c
    idv 294: I00088e90747711d7a94bace56a9eba1c
    idv 295: I000890b072d911d787c8f80b08d85a21
    idv 296: I000896f071f811d78347daa8ede63acd
    idv 297: I0008a3a072cc11d7a5a58ae19b0bc350
    idv 298: I0008ad1071ef11d7947cc0bc28d0837a
    idv 299: I0008b170747e11d79ccbd455e2fa80ef
    idv 300: I0008b26072c611d7ba84e3942a4b620d
    select * from case where case_uuid in (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
    binding variables
    bc 1 : I00000670722f11d7bffff83f52289667
    bc 2 : I000010a071e611d7ba84e3942a4b620d
    bc 3 : I0000192072c111d7b100a463f186e11d
    bc 4 : I00001b90723111d7ab54daa4035d65fa
    bc 5 : I00002020727411d7a07084608af77b15
    bc 6 : I000029b0728011d792e6e58f3e66f41c
    bc 7 : I00002c80723a11d787c8f80b08d85a21
    bc 8 : I00003f10745411d79b9bc4eeac1c0b2d
    bc 9 : I000048d0721411d796fabc35f7796f7a
    bc 10 : I000067e0726c11d7b100a463f186e11d
    bc 11 : I0000796072e411d7b100a463f186e11d
    bc 12 : I000079c005aa11d8a85fe39410e0ab6f
    bc 13 : I000079e0741711d7aea3a34f2eb4052a
    bc 14 : I000085e0a1f611d7af65eaafd5dac9b5
    bc 15 : I000088c0728911d7a07084608af77b15
    bc 16 : I00008b0071d411d7880af2b8a7a150bc
    bc 17 : I00008f90721711d787c8f80b08d85a21
    bc 18 : I00009950724811d78ef88cd3014a7f23
    bc 19 : I00009a1072dc11d7ba84e3942a4b620d
    bc 20 : I0000a7a072bc11d7bffff83f52289667
    bc 21 : I0000ace071e611d78ef88cd3014a7f23
    bc 22 : I0000c0a0741a11d7ab5cff2fe4340d11
    bc 23 : I0000c40071d211d796fabc35f7796f7a
    bc 24 : I0000cc50728811d796fabc35f7796f7a
    bc 25 : I0000d250724611d7b100a463f186e11d
    bc 26 : I0000d94072bd11d78ef88cd3014a7f23
    bc 27 : I0000e7b0741a11d7b44cec793782d444
    bc 28 : I0000f1a071ff11d787c8f80b08d85a21
    bc 29 : I0000f4a071de11d7a5a58ae19b0bc350
    bc 30 : I0000fbc0727a11d78347daa8ede63acd
    bc 31 : I0000fcf0729411d787c8f80b08d85a21
    bc 32 : I0000ff5072c811d7a07084608af77b15
    bc 33 : I00010090721e11d7bffff83f52289667
    bc 34 : I00010390746e11d79ccbd455e2fa80ef
    bc 35 : I000112b0724111d7bffff83f52289667
    bc 36 : I00011940726e11d7b100a463f186e11d
    bc 37 : I00011ca0729711d78ef88cd3014a7f23
    bc 38 : I00012500728911d787c8f80b08d85a21
    bc 39 : I00012770746a11d79c33f30f55d9158b
    bc 40 : I0001297071e311d78347daa8ede63acd
    bc 41 : I00012a4071b311d7880af2b8a7a150bc
    bc 42 : I00012e7071ac11d7a5a58ae19b0bc350
    bc 43 : I000131c0729911d7a07084608af77b15
    bc 44 : I00013d90746111d7abd288e162f1ee6f
    bc 45 : I000147f0743d11d79a8ab5f5a94ee96e
    bc 46 : I00014850721611d7b100a463f186e11d
    bc 47 : I000148b0726011d78bcee6281d031f02
    bc 48 : I00014d2071ba11d7a5a58ae19b0bc350
    bc 49 : I0001593072e311d7ab54daa4035d65fa
    bc 50 : I00015d70721811d7880af2b8a7a150bc
    bc 51 : I000162a0720611d792e6e58f3e66f41c
    bc 52 : I00016340154411d894849fe41a758d3e
    bc 53 : I00016a90727211d7b0409d11d16b6b13
    bc 54 : I0001713071db11d796fabc35f7796f7a
    bc 55 : I00017de072af11d787c8f80b08d85a21
    bc 56 : I000183c0ff1e11d79d93859d09cad35e
    bc 57 : I00018680720211d7a07084608af77b15
    bc 58 : I00018fe071e911d7bffff83f52289667
    bc 59 : I000190b0154c11d8a6f0ebf54ed20c72
    bc 60 : I0001921071f811d792e6e58f3e66f41c
    bc 61 : I0001943072cb11d796fabc35f7796f7a
    bc 62 : I00019500729b11d796fabc35f7796f7a
    bc 63 : I0001a1d0745811d79ccbd455e2fa80ef
    bc 64 : I0001a3d071d111d7947cc0bc28d0837a
    bc 65 : I0001a8e042cc11d8bfb1c5b53ee7b122
    bc 66 : I0001aa0071b411d78bcee6281d031f02
    bc 67 : I0001c940b1ab11d7ad3ab23fa36e24eb
    bc 68 : I0001dc60724911d78ef88cd3014a7f23
    bc 69 : I0001f050723111d792e6e58f3e66f41c
    bc 70 : I0001f080725611d7ab54daa4035d65fa
    bc 71 : I0001f980746411d7a94bace56a9eba1c
    bc 72 : I0001fa10726211d78ef88cd3014a7f23
    bc 73 : I0001fe70728011d78347daa8ede63acd
    bc 74 : I0001ffe071fb11d7b0409d11d16b6b13
    bc 75 : I0002010072d911d78bcee6281d031f02
    bc 76 : I0002084071ed11d7a07084608af77b15
    bc 77 : I000220f0723d11d7b100a463f186e11d
    bc 78 : I00022c4072d211d7a5a58ae19b0bc350
    bc 79 : I00022cf0154c11d89b2cb73750577cdc
    bc 80 : I00022f4072b111d7b100a463f186e11d
    bc 81 : I00023550a76111d79a3e000874f30b44
    bc 82 : I00024ad0746811d79a8ab5f5a94ee96e
    bc 83 : I00024b02a5ba11d8860ea464f39e833e
    bc 84 : I00025ef0720411d7ba84e3942a4b620d
    bc 85 : I00026d40727811d7ab54daa4035d65fa
    bc 86 : I00026d80a2ad11d79bff000874f30b44
    bc 87 : I00027080742911d79d2ef02eee90521e
    bc 88 : I0002721aa5ba11d8860ea464f39e833e
    bc 89 : I00027280741311d7b44cec793782d444
    bc 90 : I00028050147611d895d6f30359ceb780
    bc 91 : I000286c0729811d7947cc0bc28d0837a
    bc 92 : I00028830721311d78347daa8ede63acd
    bc 93 : I00029920a5ba11d8860ea464f39e833e
    bc 94 : I0002a0b0723e11d7a5a58ae19b0bc350
    bc 95 : I0002a3a072e111d7a07084608af77b15
    bc 96 : I0002a48071ed11d787c8f80b08d85a21
    bc 97 : I0002a940725511d78bcee6281d031f02
    bc 98 : I0002b8c072e311d7a07084608af77b15
    bc 99 : I0002ba00723911d7b100a463f186e11d
    bc 100 : I0002c034a5ba11d8860ea464f39e833e
    bc 101 : I0002c2f0729a11d792e6e58f3e66f41c
    bc 102 : I0002c2f0729a11d7ab54daa4035d65fa
    bc 103 : I0002c4f0728411d7a07084608af77b15
    bc 104 : I0002cf9071c111d787c8f80b08d85a21
    bc 105 : I0002dfe0721f11d7b0409d11d16b6b13
    bc 106 : I0002e8a0725b11d7ba84e3942a4b620d
    bc 107 : I0002f5a0743d11d797e5f7f2fcbea176
    bc 108 : I0002fd2072b211d7ab54daa4035d65fa
    bc 109 : I0003003071cd11d796fabc35f7796f7a
    bc 110 : I00030a8074de11d79453d3af27410a27
    bc 111 : I00030b1072dc11d78347daa8ede63acd
    bc 112 : I000318e0721d11d7880af2b8a7a150bc
    bc 113 : I00032630729c11d7b100a463f186e11d
    bc 114 : I00032e60726911d7ba84e3942a4b620d
    bc 115 : I00033230721811d796fabc35f7796f7a
    bc 116 : I00033600743811d7a658bf569bf0de0b
    bc 117 : I00033730745211d79d2ef02eee90521e
    bc 118 : I000341f0f36c11d7993aa96b44857ca1
    bc 119 : I00034270b79611d7817fb05730618d2c
    bc 120 : I0003429071b211d7b0409d11d16b6b13
    bc 121 : I00034e80746311d7afb9df8873fee31a
    bc 122 : I0003507072a011d7ba84e3942a4b620d
    bc 123 : I00035f40744711d79d2ef02eee90521e
    bc 124 : I00037420727711d7b100a463f186e11d
    bc 125 : I00037d20721411d7ba84e3942a4b620d
    bc 126 : I00037dc0743011d79d2ef02eee90521e
    bc 127 : I00038970729e11d7ba84e3942a4b620d
    bc 128 : I00038ab071f411d7b100a463f186e11d
    bc 129 : I0003921071f111d7a5a58ae19b0bc350
    bc 130 : I0003a860720d11d78347daa8ede63acd
    bc 131 : I0003aa5072bb11d7ab54daa4035d65fa
    bc 132 : I0003aa99a5ba11d8860ea464f39e833e
    bc 133 : I0003ac5072a511d7a5a58ae19b0bc350
    bc 134 : I0003b720747811d79ccbd455e2fa80ef
    bc 135 : I0003b7b0727611d787c8f80b08d85a21
    bc 136 : I0003bb10729f11d78ef88cd3014a7f23
    bc 137 : I0003c5d072c511d7a5a58ae19b0bc350
    bc 138 : I0003d19072e011d78347daa8ede63acd
    bc 139 : I0003d1a4a5ba11d8860ea464f39e833e
    bc 140 : I0003d1a6a5ba11d8860ea464f39e833e
    bc 141 : I0003d1a8a5ba11d8860ea464f39e833e
    bc 142 : I0003d53074db11d7b5dbefdbeac7aa0d
    bc 143 : I0003d560728f11d7a5a58ae19b0bc350
    bc 144 : I0003d5c072d911d792e6e58f3e66f41c
    bc 145 : I0003ec20723111d78347daa8ede63acd
    bc 146 : I0003f2b0725e11d787c8f80b08d85a21
    bc 147 : I0003f54072b711d792e6e58f3e66f41c
    bc 148 : I0003f8b0a5ba11d8860ea464f39e833e
    bc 149 : I0003fa50742d11d79b9bc4eeac1c0b2d
    bc 150 : I0003feb071da11d7a07084608af77b15
    bc 151 : I000405d0160911d88becacb69499ad1d
    bc 152 : I00040950060411d88297fc19561b6a07
    bc 153 : I00040ed0721311d7a5a58ae19b0bc350
    bc 154 : I00041660723511d7a07084608af77b15
    bc 155 : I00041830746b11d797e5f7f2fcbea176
    bc 156 : I00041cc0723d11d7b0409d11d16b6b13
    bc 157 : I000420f0723611d7b100a463f186e11d
    bc 158 : I000426c071cf11d7880af2b8a7a150bc
    bc 159 : I00043970726111d7ba84e3942a4b620d
    bc 160 : I00043af0c41a11d7858789f8f41f469f
    bc 161 : I0004401071ca11d7b100a463f186e11d
    bc 162 : I000452c0725c11d7bffff83f52289667
    bc 163 : I000462d08bc311d7bb8d85f0ac71b1f3
    bc 164 : I00047040725011d7ab54daa4035d65fa
    bc 165 : I000470a0729a11d7b100a463f186e11d
    bc 166 : I0004773072c711d78ef88cd3014a7f23
    bc 167 : I0004794071ed11d7ab54daa4035d65fa
    bc 168 : I00048290729811d78347daa8ede63acd
    bc 169 : I00049af071da11d7b100a463f186e11d
    bc 170 : I0004b040720111d7880af2b8a7a150bc
    bc 171 : I0004b4a0721f11d78ef88cd3014a7f23
    bc 172 : I0004b9702b4f11d8a0409604c12e4f92
    bc 173 : I0004bb7071ad11d7a5a58ae19b0bc350
    bc 174 : I0004c3c0726311d78ef88cd3014a7f23
    bc 175 : I0004cb90745711d7a658bf569bf0de0b
    bc 176 : I0004d490067011d8b893f65b4e54826b
    bc 177 : I0004d780749711d79ccbd455e2fa80ef
    bc 178 : I0004dc10726911d78347daa8ede63acd
    bc 179 : I0004de70729d11d7ba84e3942a4b620d
    bc 180 : I0004e040726211d7b0409d11d16b6b13
    bc 181 : I0004e71071f011d7b100a463f186e11d
    bc 182 : I0004ed70746911d79a8ab5f5a94ee96e
    bc 183 : I0004ef7071e211d78bcee6281d031f02
    bc 184 : I0004f09072c011d792e6e58f3e66f41c
    bc 185 : I0004f0a071fc11d792e6e58f3e66f41c
    bc 186 : I0004f240879511d79cf082a8a526bdf9
    bc 187 : I0004f3a0744c11d7b433bc7aed88dbc8
    bc 188 : I0004f490729411d7bffff83f52289667
    bc 189 : I0004fb90724711d7a07084608af77b15
    bc 190 : I00050b20721111d7b0409d11d16b6b13
    bc 191 : I00050e2071f011d78bcee6281d031f02
    bc 192 : I00050e20746111d79b9bc4eeac1c0b2d
    bc 193 : I00051380747411d7afb9df8873fee31a
    bc 194 : I000518a072b511d78347daa8ede63acd
    bc 195 : I000518e0721611d78ef88cd3014a7f23
    bc 196 : I00052800725a11d7ba84e3942a4b620d
    bc 197 : I00052f00720d11d7947cc0bc28d0837a
    bc 198 : I00053200745d11d79a8ab5f5a94ee96e
    bc 199 : I00053e90268111d886bdfb192a64ac56
    bc 200 : I00054420859711d79001d96d270a074a
    bc 201 : I000546f071c911d792e6e58f3e66f41c
    bc 202 : I000562c072e111d7ab54daa4035d65fa
    bc 203 : I00056d109f7311d7b07dff332e990446
    bc 204 : I00056d30746a11d797e5f7f2fcbea176
    bc 205 : I00056f30745411d79c33f30f55d9158b
    bc 206 : I00057820724411d7b100a463f186e11d
    bc 207 : I00057980728311d7a07084608af77b15
    bc 208 : I000580e0728011d7ab54daa4035d65fa
    bc 209 : I00058271efc011d897339e11b9afd716
    bc 210 : I00058d7074dc11d7b371e3b03459763a
    bc 211 : I0005944071f911d7947cc0bc28d0837a
    bc 212 : I00059910879611d7b396e0d633b35241
    bc 213 : I00059ca071eb11d7ab54daa4035d65fa
    bc 214 : I00059fd0746011d7b433bc7aed88dbc8
    bc 215 : I0005a981efc011d897339e11b9afd716
    bc 216 : I0005aaa0eb6311d7b52ae3604baa5d0f
    bc 217 : I0005ad60744011d7a94bace56a9eba1c
    bc 218 : I0005ae20726311d792e6e58f3e66f41c
    bc 219 : I0005b9f071ba11d7b100a463f186e11d
    bc 220 : I0005bc001e3711d891fbd2c50ca57005
    bc 221 : I0005c8b071b411d7a07084608af77b15
    bc 222 : I0005dc2072da11d78bcee6281d031f02
    bc 223 : I0005f7a4efc011d897339e11b9afd716
    bc 224 : I0005f9e0722f11d796fabc35f7796f7a
    bc 225 : I0006073072ae11d7a07084608af77b15
    bc 226 : I00061530133611d8aac7dbcabbf65311
    bc 227 : I000627f071e211d7a07084608af77b15
    bc 228 : I00062d80721a11d7947cc0bc28d0837a
    bc 229 : I000633a072c111d7a5a58ae19b0bc350
    bc 230 : I000635b0745811d789fed0d41f30a68d
    bc 231 : I00063b3072e311d78347daa8ede63acd
    bc 232 : I00063bd0728e11d78bcee6281d031f02
    bc 233 : I00063e4071fe11d78bcee6281d031f02
    bc 234 : I000643d0723611d78ef88cd3014a7f23
    bc 235 : I00064b5000b611d88508fb717bde6c05
    bc 236 : I00065a80729c11d7a5a58ae19b0bc350
    bc 237 : I00066a5071c711d7b0409d11d16b6b13
    bc 238 : I00066d50741711d79b9bc4eeac1c0b2d
    bc 239 : I000672e071de11d78bcee6281d031f02
    bc 240 : I000676e071b211d7880af2b8a7a150bc
    bc 241 : I00067a70747111d7a94bace56a9eba1c
    bc 242 : I00068860722a11d7ab54daa4035d65fa
    bc 243 : I0006a450742b11d7abd288e162f1ee6f
    bc 244 : I0006ba7071b111d7bffff83f52289667
    bc 245 : I0006c930a76111d78cb8000874f30b44
    bc 246 : I0006da10923511d78b148831b06d9b3e
    bc 247 : I0006dc10726211d7a5a58ae19b0bc350
    bc 248 : I0006e6a0726311d7ab54daa4035d65fa
    bc 249 : I0006ef70744c11d79d2ef02eee90521e
    bc 250 : I0006f070744111d7abd288e162f1ee6f
    bc 251 : I0006fa0071dc11d7b100a463f186e11d
    bc 252 : I0006fc60859811d78984a55bb4517c0f
    bc 253 : I000708d7044011da9439b076ef9ec4de
    bc 254 : I00071b70726811d7a5a58ae19b0bc350
    bc 255 : I00071f40748811d79ccbd455e2fa80ef
    bc 256 : I00072210f0c511d78788db544ffe8b12
    bc 257 : I00072600726911d7bffff83f52289667
    bc 258 : I00073890748311d7afb9df8873fee31a
    bc 259 : I000746a0d4cd11d79c5ab0511e0c5824
    bc 260 : I00077420726911d7947cc0bc28d0837a
    bc 261 : I000775b072cd11d787c8f80b08d85a21
    bc 262 : I0007802071e511d78bcee6281d031f02
    bc 263 : I0007974071d111d7a5a58ae19b0bc350
    bc 264 : I0007a8c0724911d796fabc35f7796f7a
    bc 265 : I0007aa30743511d7aea3a34f2eb4052a
    bc 266 : I0007b280727a11d7b0409d11d16b6b13
    bc 267 : I0007b3f0746611d79ccbd455e2fa80ef
    bc 268 : I0007b520748011d7afb9df8873fee31a
    bc 269 : I0007bf10726511d78ef88cd3014a7f23
    bc 270 : I0007cd1071cb11d7b0409d11d16b6b13
    bc 271 : I0007d000726e11d7b0409d11d16b6b13
    bc 272 : I0007d29833ff11d986b0aa9c82c164c0
    bc 273 : I0007d34071ae11d7947cc0bc28d0837a
    bc 274 : I0007d730724611d78347daa8ede63acd
    bc 275 : I0007de3071f911d7ba84e3942a4b620d
    bc 276 : I0007e13071d811d796fabc35f7796f7a
    bc 277 : I0007e850727411d78bcee6281d031f02
    bc 278 : I0007f1f0742d11d79a8ab5f5a94ee96e
    bc 279 : I0007f54072a911d78347daa8ede63acd
    bc 280 : I0007f620154811d8b8fd999a64bcc6ae
    bc 281 : I00080dd0721011d7bffff83f52289667
    bc 282 : I000812a071b411d7a5a58ae19b0bc350
    bc 283 : I00081af0726a11d7b100a463f186e11d
    bc 284 : I00082b20745011d7a658bf569bf0de0b
    bc 285 : I00084300725f11d7ba84e3942a4b620d
    bc 286 : I0008449072c311d78ef88cd3014a7f23
    bc 287 : I000861b0726d11d7a5a58ae19b0bc350
    bc 288 : I0008644072c611d7b0409d11d16b6b13
    bc 289 : I000864b0724c11d78347daa8ede63acd
    bc 290 : I00087d7071d811d7b0409d11d16b6b13
    bc 291 : I00087d70744911d7afb9df8873fee31a
    bc 292 : I000886f072a811d787c8f80b08d85a21
    bc 293 : I00088cf0726611d792e6e58f3e66f41c
    bc 294 : I00088e90747711d7a94bace56a9eba1c
    bc 295 : I000890b072d911d787c8f80b08d85a21
    bc 296 : I000896f071f811d78347daa8ede63acd
    bc 297 : I0008a3a072cc11d7a5a58ae19b0bc350
    bc 298 : I0008ad1071ef11d7947cc0bc28d0837a
    bc 299 : I0008b170747e11d79ccbd455e2fa80ef
    bc 300 : I0008b26072c611d7ba84e3942a4b620d
    iterating rs
    rs 1: I000147f0743d11d79a8ab5f5a94ee96e
    rs 2: I00014850721611d7b100a463f186e11d
    rs 3: I000148b0726011d78bcee6281d031f02
    rs 4: I00014d2071ba11d7a5a58ae19b0bc350
    rs 5: I0001593072e311d7ab54daa4035d65fa
    rs 6: I00015d70721811d7880af2b8a7a150bc
    rs 7: I000162a0720611d792e6e58f3e66f41c
    rs 8: I00016340154411d894849fe41a758d3e
    rs 9: I00016a90727211d7b0409d11d16b6b13
    rs 10: I0001713071db11d796fabc35f7796f7a
    rs 11: I00017de072af11d787c8f80b08d85a21
    rs 12: I000183c0ff1e11d79d93859d09cad35e
    rs 13: I00018680720211d7a07084608af77b15
    rs 14: I00018fe071e911d7bffff83f52289667
    rs 15: I000190b0154c11d8a6f0ebf54ed20c72
    rs 16: I0001921071f811d792e6e58f3e66f41c
    rs 17: I0001943072cb11d796fabc35f7796f7a
    rs 18: I00019500729b11d796fabc35f7796f7a
    rs 19: I0001a1d0745811d79ccbd455e2fa80ef
    rs 20: I0001a3d071d111d7947cc0bc28d0837a
    rs 21: I0001a8e042cc11d8bfb1c5b53ee7b122
    rs 22: I0001aa0071b411d78bcee6281d031f02
    rs 23: I0001c940b1ab11d7ad3ab23fa36e24eb
    rs 24: I0001dc60724911d78ef88cd3014a7f23
    rs 25: I0001f050723111d792e6e58f3e66f41c
    rs 26: I0001f080725611d7ab54daa4035d65fa
    rs 27: I0001f980746411d7a94bace56a9eba1c
    rs 28: I0001fa10726211d78ef88cd3014a7f23
    rs 29: I0001fe70728011d78347daa8ede63acd
    rs 30: I0001ffe071fb11d7b0409d11d16b6b13
    rs 31: I0002010072d911d78bcee6281d031f02
    rs 32: I0002084071ed11d7a07084608af77b15
    rs 33: I000220f0723d11d7b100a463f186e11d
    rs 34: I00022c4072d211d7a5a58ae19b0bc350
    rs 35: I00022cf0154c11d89b2cb73750577cdc
    rs 36: I00022f4072b111d7b100a463f186e11d
    rs 37: I00023550a76111d79a3e000874f30b44
    rs 38: I00024ad0746811d79a8ab5f5a94ee96e
    rs 39: I00024b02a5ba11d8860ea464f39e833e
    rs 40: I00025ef0720411d7ba84e3942a4b620d
    rs 41: I00026d40727811d7ab54daa4035d65fa
    rs 42: I00026d80a2ad11d79bff000874f30b44
    rs 43: I00027080742911d79d2ef02eee90521e
    rs 44: I0002721aa5ba11d8860ea464f39e833e
    rs 45: I00027280741311d7b44cec793782d444
    rs 46: I00028050147611d895d6f30359ceb780
    rs 47: I000286c0729811d7947cc0bc28d0837a
    rs 48: I00028830721311d78347daa8ede63acd
    rs 49: I00029920a5ba11d8860ea464f39e833e
    rs 50: I0002a0b0723e11d7a5a58ae19b0bc350
    rs 51: I0002a3a072e111d7a07084608af77b15
    rs 52: I0002a48071ed11d787c8f80b08d85a21
    rs 53: I0002a940725511d78bcee6281d031f02
    rs 54: I0002b8c072e311d7a07084608af77b15
    rs 55: I0002ba00723911d7b100a463f186e11d
    rs 56: I0002c034a5ba11d8860ea464f39e833e
    rs 57: I0002c2f0729a11d792e6e58f3e66f41c
    rs 58: I0002c2f0729a11d7ab54daa4035d65fa
    rs 59: I0002c4f0728411d7a07084608af77b15
    rs 60: I0002cf9071c111d787c8f80b08d85a21
    rs 61: I0002dfe0721f11d7b0409d11d16b6b13
    rs 62: I0002e8a0725b11d7ba84e3942a4b620d
    rs 63: I0002f5a0743d11d797e5f7f2fcbea176
    rs 64: I0002fd2072b211d7ab54daa4035d65fa
    rs 65: I0003003071cd11d796fabc35f7796f7a
    rs 66: I00030a8074de11d79453d3af27410a27
    rs 67: I00030b1072dc11d78347daa8ede63acd
    rs 68: I000318e0721d11d7880af2b8a7a150bc
    rs 69: I00032630729c11d7b100a463f186e11d
    rs 70: I00032e60726911d7ba84e3942a4b620d
    rs 71: I00033230721811d796fabc35f7796f7a
    rs 72: I00033600743811d7a658bf569bf0de0b
    rs 73: I00033730745211d79d2ef02eee90521e
    rs 74: I000341f0f36c11d7993aa96b44857ca1
    rs 75: I00034270b79611d7817fb05730618d2c
    rs 76: I0003429071b211d7b0409d11d16b6b13
    rs 77: I00034e80746311d7afb9df8873fee31a
    rs 78: I0003507072a011d7ba84e3942a4b620d
    rs 79: I00035f40744711d79d2ef02eee90521e
    rs 80: I00037420727711d7b100a463f186e11d
    rs 81: I00037d20721411d7ba84e3942a4b620d
    rs 82: I00037dc0743011d79d2ef02eee90521e
    rs 83: I00038970729e11d7ba84e3942a4b620d
    rs 84: I00038ab071f411d7b100a463f186e11d
    rs 85: I0003921071f111d7a5a58ae19b0bc350
    rs 86: I0003a860720d11d78347daa8ede63acd
    rs 87: I0003aa5072bb11d7ab54daa4035d65fa
    rs 88: I0003aa99a5ba11d8860ea464f39e833e
    rs 89: I0003ac5072a511d7a5a58ae19b0bc350
    rs 90: I0003b720747811d79ccbd455e2fa80ef
    rs 91: I0003b7b0727611d787c8f80b08d85a21
    rs 92: I0003bb10729f11d78ef88cd3014a7f23
    rs 93: I0003c5d072c511d7a5a58ae19b0bc350
    rs 94: I0003d19072e011d78347daa8ede63acd
    rs 95: I0003d1a4a5ba11d8860ea464f39e833e
    rs 96: I0003d1a6a5ba11d8860ea464f39e833e
    rs 97: I0003d1a8a5ba11d8860ea464f39e833e
    rs 98: I0003d53074db11d7b5dbefdbeac7aa0d
    rs 99: I0003d560728f11d7a5a58ae19b0bc350
    rs 100: I0003d5c072d911d792e6e58f3e66f41c
    rs 101: I0003ec20723111d78347daa8ede63acd
    rs 102: I0003f2b0725e11d787c8f80b08d85a21
    rs 103: I0003f54072b711d792e6e58f3e66f41c
    rs 104: I0003f8b0a5ba11d8860ea464f39e833e
    rs 105: I0003fa50742d11d79b9bc4eeac1c0b2d
    rs 106: I0003feb071da11d7a07084608af77b15
    rs 107: I000405d0160911d88becacb69499ad1d
    rs 108: I00040950060411d88297fc19561b6a07
    rs 109: I00040ed0721311d7a5a58ae19b0bc350
    rs 110: I00041660723511d7a07084608af77b15
    rs 111: I00041830746b11d797e5f7f2fcbea176
    rs 112: I00041cc0723d11d7b0409d11d16b6b13
    rs 113: I000420f0723611d7b100a463f186e11d
    rs 114: I000426c071cf11d7880af2b8a7a150bc
    rs 115: I00043970726111d7ba84e3942a4b620d
    rs 116: I00043af0c41a11d7858789f8f41f469f
    rs 117: I0004401071ca11d7b100a463f186e11d
    rs 118: I000452c0725c11d7bffff83f52289667
    rs 119: I000462d08bc311d7bb8d85f0ac71b1f3
    rs 120: I00047040725011d7ab54daa4035d65fa
    rs 121: I000470a0729a11d7b100a463f186e11d
    rs 122: I0004773072c711d78ef88cd3014a7f23
    rs 123: I0004794071ed11d7ab54daa4035d65fa
    rs 124: I00048290729811d78347daa8ede63acd
    rs 125: I00049af071da11d7b100a463f186e11d
    rs 126: I0004b040720111d7880af2b8a7a150bc
    rs 127: I0004b4a0721f11d78ef88cd3014a7f23
    rs 128: I0004b9702b4f11d8a0409604c12e4f92
    rs 129: I0004bb7071ad11d7a5a58ae19b0bc350
    rs 130: I0004c3c0726311d78ef88cd3014a7f23
    rs 131: I0004cb90745711d7a658bf569bf0de0b
    rs 132: I0004d490067011d8b893f65b4e54826b
    rs 133: I0004d780749711d79ccbd455e2fa80ef
    rs 134: I0004dc10726911d78347daa8ede63acd
    rs 135: I0004de70729d11d7ba84e3942a4b620d
    rs 136: I0004e040726211d7b0409d11d16b6b13
    rs 137: I0004e71071f011d7b100a463f186e11d
    rs 138: I0004ed70746911d79a8ab5f5a94ee96e
    rs 139: I0004ef7071e211d78bcee6281d031f02
    rs 140: I0004f09072c011d792e6e58f3e66f41c
    rs 141: I0004f0a071fc11d792e6e58f3e66f41c
    rs 142: I0004f240879511d79cf082a8a526bdf9
    rs 143: I0004f3a0744c11d7b433bc7aed88dbc8
    rs 144: I0004f490729411d7bffff83f52289667
    rs 145: I0004fb90724711d7a07084608af77b15
    rs 146: I00050b20721111d7b0409d11d16b6b13
    rs 147: I00050e2071f011d78bcee6281d031f02
    rs 148: I00050e20746111d79b9bc4eeac1c0b2d
    rs 149: I00051380747411d7afb9df8873fee31a
    rs 150: I000518a072b511d78347daa8ede63acd
    rs 151: I000518e0721611d78ef88cd3014a7f23
    rs 152: I00052800725a11d7ba84e3942a4b620d
    rs 153: I00052f00720d11d7947cc0bc28d0837a
    rs 154: I00053200745d11d79a8ab5f5a94ee96e
    rs 155: I00053e90268111d886bdfb192a64ac56
    rs 156: I00054420859711d79001d96d270a074a
    rs 157: I000546f071c911d792e6e58f3e66f41c
    rs 158: I000562c072e111d7ab54daa4035d65fa
    rs 159: I00056d109f7311d7b07dff332e990446
    rs 160: I00056d30746a11d797e5f7f2fcbea176
    rs 161: I00056f30745411d79c33f30f55d9158b
    rs 162: I00057820724411d7b100a463f186e11d
    rs 163: I00057980728311d7a07084608af77b15
    rs 164: I000580e0728011d7ab54daa4035d65fa
    rs 165: I00058271efc011d897339e11b9afd716
    rs 166: I00058d7074dc11d7b371e3b03459763a
    rs 167: I0005944071f911d7947cc0bc28d0837a
    rs 168: I00059910879611d7b396e0d633b35241
    rs 169: I00059ca071eb11d7ab54daa4035d65fa
    rs 170: I00059fd0746011d7b433bc7aed88dbc8
    rs 171: I0005a981efc011d897339e11b9afd716
    rs 172: I0005aaa0eb6311d7b52ae3604baa5d0f
    rs 173: I0005ad60744011d7a94bace56a9eba1c
    rs 174: I0005ae20726311d792e6e58f3e66f41c
    rs 175: I0005b9f071ba11d7b100a463f186e11d
    rs 176: I0005bc001e3711d891fbd2c50ca57005
    rs 177: I0005c8b071b411d7a07084608af77b15
    rs 178: I0005dc2072da11d78bcee6281d031f02
    rs 179: I0005f7a4efc011d897339e11b9afd716
    rs 180: I0005f9e0722f11d796fabc35f7796f7a
    rs 181: I0006073072ae11d7a07084608af77b15
    rs 182: I00061530133611d8aac7dbcabbf65311
    rs 183: I000627f071e211d7a07084608af77b15
    rs 184: I00062d80721a11d7947cc0bc28d0837a
    rs 185: I000633a072c111d7a5a58ae19b0bc350
    rs 186: I000635b0745811d789fed0d41f30a68d
    rs 187: I00063b3072e311d78347daa8ede63acd
    rs 188: I00063bd0728e11d78bcee6281d031f02
    rs 189: I00063e4071fe11d78bcee6281d031f02
    rs 190: I000643d0723611d78ef88cd3014a7f23
    rs 191: I00064b5000b611d88508fb717bde6c05
    rs 192: I00065a80729c11d7a5a58ae19b0bc350
    rs 193: I00066a5071c711d7b0409d11d16b6b13
    rs 194: I00066d50741711d79b9bc4eeac1c0b2d
    rs 195: I000672e071de11d78bcee6281d031f02
    rs 196: I000676e071b211d7880af2b8a7a150bc
    rs 197: I00067a70747111d7a94bace56a9eba1c
    rs 198: I00068860722a11d7ab54daa4035d65fa
    rs 199: I0006a450742b11d7abd288e162f1ee6f
    rs 200: I0006ba7071b111d7bffff83f52289667
    rs 201: I0006c930a76111d78cb8000874f30b44
    rs 202: I0006da10923511d78b148831b06d9b3e
    rs 203: I0006dc10726211d7a5a58ae19b0bc350
    rs 204: I0006e6a0726311d7ab54daa4035d65fa
    rs 205: I0006ef70744c11d79d2ef02eee90521e
    rs 206: I0006f070744111d7abd288e162f1ee6f
    rs 207: I0006fa0071dc11d7b100a463f186e11d
    rs 208: I0006fc60859811d78984a55bb4517c0f
    rs 209: I000708d7044011da9439b076ef9ec4de
    rs 210: I00071b70726811d7a5a58ae19b0bc350
    rs 211: I00071f40748811d79ccbd455e2fa80ef
    rs 212: I00072210f0c511d78788db544ffe8b12
    rs 213: I00072600726911d7bffff83f52289667
    rs 214: I00073890748311d7afb9df8873fee31a
    rs 215: I000746a0d4cd11d79c5ab0511e0c5824
    rs 216: I00077420726911d7947cc0bc28d0837a
    rs 217: I000775b072cd11d787c8f80b08d85a21
    rs 218: I0007802071e511d78bcee6281d031f02
    rs 219: I0007974071d111d7a5a58ae19b0bc350
    rs 220: I0007a8c0724911d796fabc35f7796f7a
    rs 221: I0007aa30743511d7aea3a34f2eb4052a
    rs 222: I0007b280727a11d7b0409d11d16b6b13
    rs 223: I0007b3f0746611d79ccbd455e2fa80ef
    rs 224: I0007b520748011d7afb9df8873fee31a
    rs 225: I0007bf10726511d78ef88cd3014a7f23
    rs 226: I0007cd1071cb11d7b0409d11d16b6b13
    rs 227: I0007d000726e11d7b0409d11d16b6b13
    rs 228: I0007d29833ff11d986b0aa9c82c164c0
    rs 229: I0007d34071ae11d7947cc0bc28d0837a
    rs 230: I0007d730724611d78347daa8ede63acd
    rs 231: I0007de3071f911d7ba84e3942a4b620d
    rs 232: I0007e13071d811d796fabc35f7796f7a
    rs 233: I0007e850727411d78bcee6281d031f02
    rs 234: I0007f1f0742d11d79a8ab5f5a94ee96e
    rs 235: I0007f54072a911d78347daa8ede63acd
    rs 236: I0007f620154811d8b8fd999a64bcc6ae
    rs 237: I00080dd0721011d7bffff83f52289667
    rs 238: I000812a071b411d7a5a58ae19b0bc350
    rs 239: I00081af0726a11d7b100a463f186e11d
    rs 240: I00082b20745011d7a658bf569bf0de0b
    rs 241: I00084300725f11d7ba84e3942a4b620d
    rs 242: I0008449072c311d78ef88cd3014a7f23
    rs 243: I000861b0726d11d7a5a58ae19b0bc350
    rs 244: I0008644072c611d7b0409d11d16b6b13
    rs 245: I000864b0724c11d78347daa8ede63acd
    rs 246: I00087d7071d811d7b0409d11d16b6b13
    rs 247: I00087d70744911d7afb9df8873fee31a
    rs 248: I000886f072a811d787c8f80b08d85a21
    rs 249: I00088cf0726611d792e6e58f3e66f41c
    rs 250: I00088e90747711d7a94bace56a9eba1c
    rs 251: I000890b072d911d787c8f80b08d85a21
    rs 252: I000896f071f811d78347daa8ede63acd
    rs 253: I0008a3a072cc11d7a5a58ae19b0bc350
    rs 254: I0008ad1071ef11d7947cc0bc28d0837a
    rs 255: I0008b170747e11d79ccbd455e2fa80ef
    rs 256: I0008b26072c611d7ba84e3942a4b620d

    Thanks again for the input. One of our DBA's was also able to recreate the problem using the below PL/SQL script. He is going to open a TAR with Oracle. I'll post a message when we get a resolution.
    Tom
    CREATE OR REPLACE PROCEDURE "SYSTEM"."TEST_BIND2" is
    type dynamic_tc is ref cursor;
    v_rc dynamic_tc;
    sql_stmt varchar(3000);
    bindvariable varchar2(33) := 'I00000670722f11d7bffff83f52289667';
    v_case_uuid varchar2(33);
    v_rows number :=0;
    begin
    sql_stmt := 'select case_uuid from machv.case
    where case_uuid in (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,
    :16,
    :17,
    :18,
    :19,
    :20,
    :21,
    :22,
    :23,
    :24,
    :25,
    :26,
    :27,
    :28,
    :29,
    :30,
    :31,
    :32,
    :33,
    :34,
    :35,
    :36,
    :37,
    :38,
    :39,
    :40,
    :41,
    :42,
    :43,
    :44,
    :45,
    :46,
    :47,
    :48,
    :49,
    :50,
    :51,
    :52,
    :53,
    :54,
    :55,
    :56,
    :57,
    :58,
    :59,
    :60,
    :61,
    :62,
    :63,
    :64,
    :65,
    :66,
    :67,
    :68,
    :69,
    :70,
    :71,
    :72,
    :73,
    :74,
    :75,
    :76,
    :77,
    :78,
    :79,
    :80,
    :81,
    :82,
    :83,
    :84,
    :85,
    :86,
    :87,
    :88,
    :89,
    :90,
    :91,
    :92,
    :93,
    :94,
    :95,
    :96,
    :97,
    :98,
    :99,
    :100,
    :101,
    :102,
    :103,
    :104,
    :105,
    :106,
    :107,
    :108,
    :109,
    :110,
    :111,
    :112,
    :113,
    :114,
    :115,
    :116,
    :117,
    :118,
    :119,
    :120,
    :121,
    :122,
    :123,
    :124,
    :125,
    :126,
    :127,
    :128,
    :129,
    :130,
    :131,
    :132,
    :133,
    :134,
    :135,
    :136,
    :137,
    :138,
    :139,
    :140,
    :141,
    :142,
    :143,
    :144,
    :145,
    :146,
    :147,
    :148,
    :149,
    :150,
    :151,
    :152,
    :153,
    :154,
    :155,
    :156,
    :157,
    :158,
    :159,
    :160,
    :161,
    :162,
    :163,
    :164,
    :165,
    :166,
    :167,
    :168,
    :169,
    :170,
    :171,
    :172,
    :173,
    :174,
    :175,
    :176,
    :177,
    :178,
    :179,
    :180,
    :181,
    :182,
    :183,
    :184,
    :185,
    :186,
    :187,
    :188,
    :189,
    :190,
    :191,
    :192,
    :193,
    :194,
    :195,
    :196,
    :197,
    :198,
    :199,
    :200,
    :201,
    :202,
    :203,
    :204,
    :205,
    :206,
    :207,
    :208,
    :209,
    :210,
    :211,
    :212,
    :213,
    :214,
    :215,
    :216,
    :217,
    :218,
    :219,
    :220,
    :221,
    :222,
    :223,
    :224,
    :225,
    :226,
    :227,
    :228,
    :229,
    :230,
    :231,
    :232,
    :233,
    :234,
    :235,
    :236,
    :237,
    :238,
    :239,
    :240,
    :241,
    :242,
    :243,
    :244,
    :245,
    :246,
    :247,
    :248,
    :249,
    :250,
    :251,
    :252,
    :253,
    :254,
    :255,
    :256,
    :257,
    :258,
    :259,
    :260,
    :261,
    :262,
    :263,
    :264,
    :265,
    :266,
    :267,
    :268,
    :269,
    :270,
    :271,
    :272,
    :273,
    :274,
    :275,
    :276,
    :277,
    :278,
    :279,
    :280,
    :281,
    :282,
    :283,
    :284,
    :285,
    :286,
    :287,
    :288,
    :289,
    :290,
    :291,
    :292,
    :293,
    :294,
    :295,
    :296,
    :297,
    :298,
    :299,
    :300,
    :301,
    :302,
    :303,
    :304,
    :305,
    :306,
    :307,
    :308,
    :309,
    :310,
    :311,
    :312,
    :313,
    :314,
    :315,
    :316,
    :317,
    :318,
    :319,
    :320,
    :321,
    :322,
    :323,
    :324,
    :325,
    :326,
    :327,
    :328,
    :329,
    :330,
    :331,
    :332,
    :333,
    :334,
    :335,
    :336,
    :337,
    :338,
    :339,
    :340,
    :341,
    :342,
    :343,
    :344,
    :345,
    :346,
    :347,
    :348,
    :349,
    :350,
    :351,
    :352,
    :353,
    :354,
    :355,
    :356,
    :357,
    :358,
    :359,
    :360,
    :361,
    :362,
    :363,
    :364,
    :365,
    :366,
    :367,
    :368,
    :369,
    :370,
    :371,
    :372,
    :373,
    :374,
    :375,
    :376,
    :377,
    :378,
    :379,
    :380,
    :381,
    :382,
    :383,
    :384,
    :385,
    :386,
    :387,
    :388,
    :389,
    :390,
    :391,
    :392,
    :393,
    :394,
    :395,
    :396,
    :397,
    :398,
    :399,
    :400,
    :401,
    :402,
    :403,
    :404,
    :405,
    :406,
    :407,
    :408,
    :409,
    :410,
    :411,
    :412,
    :413,
    :414,
    :415,
    :416,
    :417,
    :418,
    :419,
    :420,
    :421,
    :422,
    :423,
    :424,
    :425,
    :426,
    :427,
    :428,
    :429,
    :430,
    :431,
    :432,
    :433,
    :434,
    :435,
    :436,
    :437,
    :438,
    :439,
    :440,
    :441,
    :442,
    :443,
    :444,
    :445,
    :446,
    :447,
    :448,
    :449,
    :450,
    :451,
    :452,
    :453,
    :454,
    :455,
    :456,
    :457,
    :458,
    :459,
    :460,
    :461,
    :462,
    :463,
    :464,
    :465,
    :466,
    :467,
    :468,
    :469,
    :470,
    :471,
    :472,
    :473,
    :474,
    :475,
    :476,
    :477,
    :478,
    :479,
    :480,
    :481,
    :482,
    :483,
    :484,
    :485,
    :486,
    :487,
    :488,
    :489,
    :490,
    :491,
    :492,
    :493,
    :494,
    :495,
    :496,
    :497,
    :498,
    :499)';
    open v_rc for sql_stmt using 'I00000670722f11d7bffff83f52289667',
    'I000010a071e611d7ba84e3942a4b620d',
    'I0000192072c111d7b100a463f186e11d',
    'I00001b90723111d7ab54daa4035d65fa',
    'I00002020727411d7a07084608af77b15',
    'I000029b0728011d792e6e58f3e66f41c',
    'I00002c80723a11d787c8f80b08d85a21',
    'I00003f10745411d79b9bc4eeac1c0b2d',
    'I000048d0721411d796fabc35f7796f7a',
    'I000067e0726c11d7b100a463f186e11d',
    'I0000796072e411d7b100a463f186e11d',
    'I000079c005aa11d8a85fe39410e0ab6f',
    'I000079e0741711d7aea3a34f2eb4052a',
    'I000085e0a1f611d7af65eaafd5dac9b5',
    'I000088c0728911d7a07084608af77b15',
    'I00008b0071d411d7880af2b8a7a150bc',
    'I00008f90721711d787c8f80b08d85a21',
    'I00009950724811d78ef88cd3014a7f23',
    'I00009a1072dc11d7ba84e3942a4b620d',
    'I0000a7a072bc11d7bffff83f52289667',
    'I0000ace071e611d78ef88cd3014a7f23',
    'I0000c0a0741a11d7ab5cff2fe4340d11',
    'I0000c40071d211d796fabc35f7796f7a',
    'I0000cc50728811d796fabc35f7796f7a',
    'I0000d250724611d7b100a463f186e11d',
    'I0000d94072bd11d78ef88cd3014a7f23',
    'I0000e7b0741a11d7b44cec793782d444',
    'I0000f1a071ff11d787c8f80b08d85a21',
    'I0000f4a071de11d7a5a58ae19b0bc350',
    'I0000fbc0727a11d78347daa8ede63acd',
    'I0000fcf0729411d787c8f80b08d85a21',
    'I0000ff5072c811d7a07084608af77b15',
    'I00010090721e11d7bffff83f52289667',
    'I00010390746e11d79ccbd455e2fa80ef',
    'I000112b0724111d7bffff83f52289667',
    'I00011940726e11d7b100a463f186e11d',
    'I00011ca0729711d78ef88cd3014a7f23',
    'I00012500728911d787c8f80b08d85a21',
    'I00012770746a11d79c33f30f55d9158b',
    'I0001297071e311d78347daa8ede63acd',
    'I00012a4071b311d7880af2b8a7a150bc',
    'I00012e7071ac11d7a5a58ae19b0bc350',
    'I000131c0729911d7a07084608af77b15',
    'I00013d90746111d7abd288e162f1ee6f',
    'I000147f0743d11d79a8ab5f5a94ee96e',
    'I00014850721611d7b100a463f186e11d',
    'I000148b0726011d78bcee6281d031f02',
    'I00014d2071ba11d7a5a58ae19b0bc350',
    'I0001593072e311d7ab54daa4035d65fa',
    'I00015d70721811d7880af2b8a7a150bc',
    'I000162a0720611d792e6e58f3e66f41c',
    'I00016340154411d894849fe41a758d3e',
    'I00016a90727211d7b0409d11d16b6b13',
    'I0001713071db11d796fabc35f7796f7a',
    'I00017de072af11d787c8f80b08d85a21',
    'I000183c0ff1e11d79d93859d09cad35e',
    'I00018680720211d7a07084608af77b15',
    'I00018fe071e911d7bffff83f52289667',
    'I000190b0154c11d8a6f0ebf54ed20c72',
    'I0001921071f811d792e6e58f3e66f41c',
    'I0001943072cb11d796fabc35f7796f7a',
    'I00019500729b11d796fabc35f7796f7a',
    'I0001a1d0745811d79ccbd455e2fa80ef',
    'I0001a3d071d111d7947cc0bc28d0837a',
    'I0001a8e042cc11d8bfb1c5b53ee7b122',
    'I0001aa0071b411d78bcee6281d031f02',
    'I0001c940b1ab11d7ad3ab23fa36e24eb',
    'I0001dc60724911d78ef88cd3014a7f23',
    'I0001f050723111d792e6e58f3e66f41c',
    'I0001f080725611d7ab54daa4035d65fa',
    'I0001f980746411d7a94bace56a9eba1c',
    'I0001fa10726211d78ef88cd3014a7f23',
    'I0001fe70728011d78347daa8ede63acd',
    'I0001ffe071fb11d7b0409d11d16b6b13',
    'I0002010072d911d78bcee6281d031f02',
    'I0002084071ed11d7a07084608af77b15',
    'I000220f0723d11d7b100a463f186e11d',
    'I00022c4072d211d7a5a58ae19b0bc350',
    'I00022cf0154c11d89b2cb73750577cdc',
    'I00022f4072b111d7b100a463f186e11d',
    'I00023550a76111d79a3e000874f30b44',
    'I00024ad0746811d79a8ab5f5a94ee96e',
    'I00024b02a5ba11d8860ea464f39e833e',
    'I00025ef0720411d7ba84e3942a4b620d',
    'I00026d40727811d7ab54daa4035d65fa',
    'I00026d80a2ad11d79bff000874f30b44',
    'I00027080742911d79d2ef02eee90521e',
    'I0002721aa5ba11d8860ea464f39e833e',
    'I00027280741311d7b44cec793782d444',
    'I00028050147611d895d6f30359ceb780',
    'I000286c0729811d7947cc0bc28d0837a',
    'I00028830721311d78347daa8ede63acd',
    'I00029920a5ba11d8860ea464f39e833e',
    'I0002a0b0723e11d7a5a58ae19b0bc350',
    'I0002a3a072e111d7a07084608af77b15',
    'I0002a48071ed11d787c8f80b08d85a21',
    'I0002a940725511d78bcee6281d031f02',
    'I0002b8c072e311d7a07084608af77b15',
    'I0002ba00723911d7b100a463f186e11d',
    'I0002c034a5ba11d8860ea464f39e833e',
    'I0002c2f0729a11d792e6e58f3e66f41c',
    'I0002c2f0729a11d7ab54daa4035d65fa',
    'I0002c4f0728411d7a07084608af77b15',
    'I0002cf9071c111d787c8f80b08d85a21',
    'I0002dfe0721f11d7b0409d11d16b6b13',
    'I0002e8a0725b11d7ba84e3942a4b620d',
    'I0002f5a0743d11d797e5f7f2fcbea176',
    'I0002fd2072b211d7ab54daa4035d65fa',
    'I0003003071cd11d796fabc35f7796f7a',
    'I00030a8074de11d79453d3af27410a27',
    'I00030b1072dc11d78347daa8ede63acd',
    'I000318e0721d11d7880af2b8a7a150bc',
    'I00032630729c11d7b100a463f186e11d',
    'I00032e60726911d7ba84e3942a4b620d',
    'I00033230721811d796fabc35f7796f7a',
    'I00033600743811d7a658bf569bf0de0b',
    'I00033730745211d79d2ef02eee90521e',
    'I000341f0f36c11d7993aa96b44857ca1',
    'I00034270b79611d7817fb05730618d2c',
    'I0003429071b211d7b0409d11d16b6b13',
    'I00034e80746311d7afb9df8873fee31a',
    'I0003507072a011d7ba84e3942a4b620d',
    'I00035f40744711d79d2ef02eee90521e',
    'I00037420727711d7b100a463f186e11d',
    'I00037d20721411d7ba84e3942a4b620d',
    'I00037dc0743011d79d2ef02eee90521e',
    'I00038970729e11d7ba84e3942a4b620d',
    'I00038ab071f411d7b100a463f186e11d',
    'I0003921071f111d7a5a58ae19b0bc350',
    'I0003a860720d11d78347daa8ede63acd',
    'I0003aa5072bb11d7ab54daa4035d65fa',
    'I0003aa99a5ba11d8860ea464f39e833e',
    'I0003ac5072a511d7a5a58ae19b0bc350',
    'I0003b720747811d79ccbd455e2fa80ef',
    'I0003b7b0727611d787c8f80b08d85a21',
    'I0003bb10729f11d78ef88cd3014a7f23',
    'I0003c5d072c511d7a5a58ae19b0bc350',
    'I0003d19072e011d78347daa8ede63acd',
    'I0003d1a4a5ba11d8860ea464f39e833e',
    'I0003d1a6a5ba11d8860ea464f39e833e',
    'I0003d1a8a5ba11d8860ea464f39e833e',
    'I0003d53074db11d7b5dbefdbeac7aa0d',
    'I0003d560728f11d7a5a58ae19b0bc350',
    'I0003d5c072d911d792e6e58f3e66f41c',
    'I0003ec20723111d78347daa8ede63acd',
    'I0003f2b0725e11d787c8f80b08d85a21',
    'I0003f54072b711d792e6e58f3e66f41c',
    'I0003f8b0a5ba11d8860ea464f39e833e',
    'I0003fa50742d11d79b9bc4eeac1c0b2d',
    'I0003feb071da11d7a07084608af77b15',
    'I000405d0160911d88becacb69499ad1d',
    'I00040950060411d88297fc19561b6a07',
    'I00040ed0721311d7a5a58ae19b0bc350',
    'I00041660723511d7a07084608af77b15',
    'I00041830746b11d797e5f7f2fcbea176',
    'I00041cc0723d11d7b0409d11d16b6b13',
    'I000420f0723611d7b100a463f186e11d',
    'I000426c071cf11d7880af2b8a7a150bc',
    'I00043970726111d7ba84e3942a4b620d',
    'I00043af0c41a11d7858789f8f41f469f',
    'I0004401071ca11d7b100a463f186e11d',
    'I000452c0725c11d7bffff83f52289667',
    'I000462d08bc311d7bb8d85f0ac71b1f3',
    'I00047040725011d7ab54daa4035d65fa',
    'I000470a0729a11d7b100a463f186e11d',
    'I0004773072c711d78ef88cd3014a7f23',
    'I0004794071ed11d7ab54daa4035d65fa',
    'I00048290729811d78347daa8ede63acd',
    'I00049af071da11d7b100a463f186e11d',
    'I0004b040720111d7880af2b8a7a150bc',
    'I0004b4a0721f11d78ef88cd3014a7f23',
    'I0004b9702b4f11d8a0409604c12e4f92',
    'I0004bb7071ad11d7a5a58ae19b0bc350',
    'I0004c3c0726311d78ef88cd3014a7f23',
    'I0004cb90745711d7a658bf569bf0de0b',
    'I0004d490067011d8b893f65b4e54826b',
    'I0004d780749711d79ccbd455e2fa80ef',
    'I0004dc10726911d78347daa8ede63acd',
    'I0004de70729d11d7ba84e3942a4b620d',
    'I0004e040726211d7b0409d11d16b6b13',
    'I0004e71071f011d7b100a463f186e11d',
    'I0004ed70746911d79a8ab5f5a94ee96e',
    'I0004ef7071e211d78bcee6281d031f02',
    'I0004f09072c011d792e6e58f3e66f41c',
    'I0004f0a071fc11d792e6e58f3e66f41c',
    'I0004f240879511d79cf082a8a526bdf9',
    'I0004f3a0744c11d7b433bc7aed88dbc8',
    'I0004f490729411d7bffff83f52289667',
    'I0004fb90724711d7a07084608af77b15',
    'I00050b20721111d7b0409d11d16b6b13',
    'I00050e2071f011d78bcee6281d031f02',
    'I00050e20746111d79b9bc4eeac1c0b2d',
    'I00051380747411d7afb9df8873fee31a',
    'I000518a072b511d78347daa8ede63acd',
    'I000518e0721611d78ef88cd3014a7f23',
    'I00052800725a11d7ba84e3942a4b620d',
    'I00052f00720d11d7947cc0bc28d0837a',
    'I00053200745d11d79a8ab5f5a94ee96e',
    'I00053e90268111d886bdfb192a64ac56',
    'I00054420859711d79001d96d270a074a',
    'I000546f071c911d792e6e58f3e66f41c',
    'I000562c072e111d7ab54daa4035d65fa',
    'I00056d109f7311d7b07dff332e990446',
    'I00056d30746a11d797e5f7f2fcbea176',
    'I00056f30745411d79c33f30f55d9158b',
    'I00057820724411d7b100a463f186e11d',
    'I00057980728311d7a07084608af77b15',
    'I000580e0728011d7ab54daa4035d65fa',
    'I00058271efc011d897339e11b9afd716',
    'I00058d7074dc11d7b371e3b03459763a',
    'I0005944071f911d7947cc0bc28d0837a',
    'I00059910879611d7b396e0d633b35241',
    'I00059ca071eb11d7ab54daa4035d65fa',
    'I00059fd0746011d7b433bc7aed88dbc8',
    'I0005a981efc011d897339e11b9afd716',
    'I0005aaa0eb6311d7b52ae3604baa5d0f',
    'I0005ad60744011d7a94bace56a9eba1c',
    'I0005ae20726311d792e6e58f3e66f41c',
    'I0005b9f071ba11d7b100a463f186e11d',
    'I0005bc001e3711d891fbd2c50ca57005',
    'I0005c8b071b411d7a07084608af77b15',
    'I0005dc2072da11d78bcee6281d031f02',
    'I0005f7a4efc011d897339e11b9afd716',
    'I0005f9e0722f11d796fabc35f7796f7a',
    'I0006073072ae11d7a07084608af77b15',
    'I00061530133611d8aac7dbcabbf65311',
    'I000627f071e211d7a07084608af77b15',
    'I00062d80721a11d7947cc0bc28d0837a',
    'I000633a072c111d7a5a58ae19b0bc350',
    'I000635b0745811d789fed0d41f30a68d',
    'I00063b3072e311d78347daa8ede63acd',
    'I00063bd0728e11d78bcee6281d031f02',
    'I00063e4071fe11d78bcee6281d031f02',
    'I000643d0723611d78ef88cd3014a7f23',
    'I00064b5000b611d88508fb717bde6c05',
    'I00065a80729c11d7a5a58ae19b0bc350',
    'I00066a5071c711d7b0409d11d16b6b13',
    'I00066d50741711d79b9bc4eeac1c0b2d',
    'I000672e071de11d78bcee6281d031f02',
    'I000676e071b211d7880af2b8a7a150bc',
    'I00067a70747111d7a94bace56a9eba1c',
    'I00068860722a11d7ab54daa4035d65fa',
    'I0006a450742b11d7abd288e162f1ee6f',
    'I0006ba7071b111d7bffff83f52289667',
    'I0006c930a76111d78cb8000874f30b44',
    'I0006da10923511d78b148831b06d9b3e',
    'I0006dc10726211d7a5a58ae19b0bc350',
    'I0006e6a0726311d7ab54daa4035d65fa',
    'I0006ef70744c11d79d2ef02eee90521e',
    'I0006f070744111d7abd288e162f1ee6f',
    'I0006fa0071dc11d7b100a463f186e11d',
    'I0006fc60859811d78984a55bb4517c0f',
    'I000708d7044011da9439b076ef9ec4de',
    'I00071b70726811d7a5a58ae19b0bc350',
    'I00071f40748811d79ccbd455e2fa80ef',
    'I00072210f0c511d78788db544ffe8b12',
    'I00072600726911d7bffff83f52289667',
    'I00073890748311d7afb9df8873fee31a',
    'I000746a0d4cd11d79c5ab0511e0c5824',
    'I00077420726911d7947cc0bc28d0837a',
    'I000775b072cd11d787c8f80b08d85a21',
    'I0007802071e511d78bcee6281d031f02',
    'I0007974071d111d7a5a58ae19b0bc350',
    'I0007a8c0724911d796fabc35f7796f7a',
    'I0007aa30743511d7aea3a34f2eb4052a',
    'I0007b280727a11d7b0409d11d16b6b13',
    'I0007b3f0746611d79ccbd455e2fa80ef',
    'I0007b520748011d7afb9df8873fee31a',
    'I0007bf10726511d78ef88cd3014a7f23',
    'I0007cd1071cb11d7b0409d11d16b6b13',
    'I0007d000726e11d7b0409d11d16b6b13',
    'I0007d29833ff11d986b0aa9c82c164c0',
    'I0007d34071ae11d7947cc0bc28d0837a',
    'I0007d730724611d78347daa8ede63acd',
    'I0007de3071f911d7ba84e3942a4b620d',
    'I0007e13071d811d796fabc35f7796f7a',
    'I0007e850727411d78bcee6281d031f02',
    'I0007f1f0742d11d79a8ab5f5a94ee96e',
    'I0007f54072a911d78347daa8ede63acd',
    'I0007f620154811d8b8fd999a64bcc6ae',
    'I00080dd0721011d7bffff83f52289667',
    'I000812a071b411d7a5a58ae19b0bc350',
    'I00081af0726a11d7b100a463f186e11d',
    'I00082b20745011d7a658bf569bf0de0b',
    'I00084300725f11d7ba84e3942a4b620d',
    'I0008449072c311d78ef88cd3014a7f23',
    'I000861b0726d11d7a5a58ae19b0bc350',
    'I0008644072c611d7b0409d11d16b6b13',
    'I000864b0724c11d78347daa8ede63acd',
    'I00087d7071d811d7b0409d11d16b6b13',
    'I00087d70744911d7afb9df8873fee31a',
    'I000886f072a811d787c8f80b08d85a21',
    'I00088cf0726611d792e6e58f3e66f41c',
    'I00088e90747711d7a94bace56a9eba1c',
    'I000890b072d911d787c8f80b08d85a21',
    'I000896f071f811d78347daa8ede63acd',
    'I0008a3a072cc11d7a5a58ae19b0bc350',
    'I0008ad1071ef11d7947cc0bc28d0837a',
    'I0008b170747e11d79ccbd455e2fa80ef',
    'I0008b26072c611d7ba84e3942a4b620d',
    'I0008b540742d11d789fed0d41f30a68d',
    'I0008bf0071ed11d7b0409d11d16b6b13',
    'I0008c100744811d79b9bc4eeac1c0b2d',
    'I0008c96071c911d7a07084608af77b15',
    'I0008d3f071ca11d7a5a58ae19b0bc350',
    'I0008d5e0727811d7a07084608af77b15',
    'I0008e5e071c811d7880af2b8a7a150bc',
    'I0008ea3072aa11d7b100a463f186e11d',
    'I0008ea40dd5211d7b6ffcd773e7967a9',
    'I0008eda0748011d79a8ab5f5a94ee96e',
    'I0008ef70744511d7a94bace56a9eba1c',
    'I0008f6c0729511d7a07084608af77b15',
    'I0008fa80bc4611d7bf8df081d881356f',
    'I00090120727111d787c8f80b08d85a21',
    'I00090390745211d7b433bc7aed88dbc8',
    'I000904e072e411d7a07084608af77b15',
    'I00090520724511d7b100a463f186e11d',
    'I00090ea0adad11d79e6cbe65fd77490b',
    'I00091010729011d78ef88cd3014a7f23',
    'I00092740742911d79a8ab5f5a94ee96e',
    'I000928a0746811d79a8ab5f5a94ee96e',
    'I00092bc072bf11d787c8f80b08d85a21',
    'I00093200a2b211d7acd0000874f30b44',
    'I0009365072c011d78ef88cd3014a7f23',
    'I0009373071cc11d7b100a463f186e11d',
    'I00093dc071f911d792e6e58f3e66f41c',
    'I00094320747d11d7afb9df8873fee31a',
    'I00095410748611d79a8ab5f5a94ee96e',
    'I00095510720a11d796fabc35f7796f7a',
    'I00095fd0723011d7ab54daa4035d65fa',
    'I00096200723f11d7880af2b8a7a150bc',
    'I00096830749311d7afb9df8873fee31a',
    'I00096e30a2b411d781eb000874f30b44',
    'I0009716071e411d78ef88cd3014a7f23',
    'I0009729071fe11d796fabc35f7796f7a',
    'I0009769071d211d78ef88cd3014a7f23',
    'I00097d20180311d8987fae20d218a0bf',
    'I00097f20745a11d7ab5cff2fe4340d11',
    'I000989a072ae11d7947cc0bc28d0837a',
    'I00099c30725711d7a07084608af77b15',
    'I00099e70741311d795e2961f3aa542c2',
    'I0009ac2074dc11d79d22fcdb12bfafec',
    'I0009b720746311d7a94bace56a9eba1c',
    'I0009bb4072af11d796fabc35f7796f7a',
    'I0009c170729211d7ba84e3942a4b620d',
    'I0009c410722711d796fabc35f7796f7a',
    'I0009ca1071e511d7b0409d11d16b6b13',
    'I0009ca3072ce11d7b100a463f186e11d',
    'I0009daf072b211d7a07084608af77b15',
    'I0009ef20746c11d79a8ab5f5a94ee96e',
    'I0009fc80742711d797e5f7f2fcbea176',
    'I0009fca0729f11d792e6e58f3e66f41c',
    'I000a0240721311d78bcee6281d031f02',
    'I000a175072d911d78bcee6281d031f02',
    'I000a1c60744f11d7abd288e162f1ee6f',
    'I000a1ec0721211d78ef88cd3014a7f23',
    'I000a1f9071e211d7ab54daa4035d65fa',
    'I000a2d7072d011d78347daa8ede63acd',
    'I000a2fe0724011d7a5a58ae19b0bc350',
    'I000a35e0746f11d79a8ab5f5a94ee96e',
    'I000a3640724811d7b0409d11d16b6b13',
    'I000a36e071f311d7bffff83f52289667',
    'I000a3ae0743811d7b433bc7aed88dbc8',
    'I000a43d0722811d792e6e58f3e66f41c',
    'I000a463015ef11d88c7bd5cc2418da3e',
    'I000a4770742311d7a658bf569bf0de0b',
    'I000a47d071fc11d7ab54daa4035d65fa',
    'I000a4d60723411d787c8f80b08d85a21',
    'I000a4e00745011d7abd288e162f1ee6f',
    'I000a515072cc11d7b100a463f186e11d',
    'I000a5320a84711d79341000874f30b44',
    'I000a548072d011d7a07084608af77b15',
    'I000a5b20723911d78ef88cd3014a7f23',
    'I000a601072c611d7ab54daa4035d65fa',
    'I000a6450746c11d7afb9df8873fee31a',
    'I000a67a0586611d88987ae5d74e7d237',
    'I000a6a80744f11d7a658bf569bf0de0b',
    'I000a71b071b611d7a07084608af77b15',
    'I000a8070b60c11d78d7ae36da6291c4c',
    'I000a8260725e11d7a5a58ae19b0bc350',
    'I000a8e90f36411d7af718f2bed3b58d8',
    'I000a98f0744c11d7bbd0dd5ae518b214',
    'I000aad40720d11d7880af2b8a7a150bc',
    'I000abd0071fc11d787c8f80b08d85a21',
    'I000abec0728511d78bcee6281d031f02',
    'I000ac02072c411d7b0409d11d16b6b13',
    'I000ac48072e211d7b100a463f186e11d',
    'I000ad400d51811d7b8b189ec09a4f1f2',
    'I000ad95071d611d78347daa8ede63acd',
    'I000addd072dd11d796fabc35f7796f7a',
    'I000ae0b071d311d78ef88cd3014a7f23',
    'I000ae6e0742711d789fed0d41f30a68d',
    'I000aeda0720811d792e6e58f3e66f41c',
    'I000af1c072c511d7b0409d11d16b6b13',
    'I000af4c072a411d7b100a463f186e11d',
    'I000af5c0729911d78347daa8ede63acd',
    'I000af890725311d7a5a58ae19b0bc350',
    'I000aff8072ca11d7b100a463f186e11d',
    'I000b036071b511d7ba84e3942a4b620d',
    'I000b17b071e711d78347daa8ede63acd',
    'I000b18e0747211d7afb9df8873fee31a',
    'I000b2400075e11d8bba4ee3df5595e5e',
    'I000b2470746811d797e5f7f2fcbea176',
    'I000b24a0721c11d787c8f80b08d85a21',
    'I000b2540743811d795e2961f3aa542c2',
    'I000b2df933ff11d986b0aa9c82c164c0',
    'I000b383017be11d89633df6acb652f6c',
    'I000b3be0511c11d8a870d7b8ade616c2',
    'I000b3de072db11d7b0409d11d16b6b13',
    'I000b41c071c611d796fabc35f7796f7a',
    'I000b4a5071dd11d7880af2b8a7a150bc',
    'I000b4a800bd111d88eb89f6c614e0b44',
    'I000b50b071e511d7a07084608af77b15',
    'I000b5310721911d7a5a58ae19b0bc350',
    'I000b58d074e711d795b58681ea3280ca',
    'I000b5e6072ae11d7a5a58ae19b0bc350',
    'I000b5fd0722911d7bffff83f52289667',
    'I000b6570879611d791b5808d2e7078a3',
    'I000b66a071b711d7947cc0bc28d0837a',
    'I000b6b3071fa11d78bcee6281d031f02',
    'I000b6c60748511d79a8ab5f5a94ee96e',
    'I000b7ce0729711d796fabc35f7796f7a',
    'I000b8be0746311d79b9bc4eeac1c0b2d',
    'I000b8eb071ac11d7b0409d11d16b6b13',
    'I000b9040721011d78347daa8ede63acd',
    'I000b96e88f1e11d8af0be6a4d782f601',
    'I000ba00071ff11d7b0409d11d16b6b13',
    'I000ba860746211d795e2961f3aa542c2',
    'I000baf50726811d7a07084608af77b15',
    'I000bb0c071e311d7880af2b8a7a150bc',
    'I000bb220722211d7a07084608af77b15',
    'I000bbe8071e811d7bffff83f52289667',
    'I000bbfa072c611d792e6e58f3e66f41c',
    'I000bcd40745311d7ab5cff2fe4340d11',
    'I000be660742911d797e5f7f2fcbea176',
    'I000be8f0721111d7a07084608af77b15',
    'I000bfae0859711d79858f13fea870308',
    'I000bfda0728d11d78bcee6281d031f02',
    'I000bfda0728d11d7a07084608af77b15',
    'I000bfeb071be11d792e6e58f3e66f41c',
    'I000c071071b011d796fabc35f7796f7a',
    'I000c0c138f1e11d8af0be6a4d782f601',
    'I000c0c1c8f1e11d8af0be6a4d782f601',
    'I000c25e072a711d792e6e58f3e66f41c',
    'I000c33b071e811d78347daa8ede63acd',
    'I000c37b0742d11d7aea3a34f2eb4052a',
    'I000c39a0726a11d78bcee6281d031f02',
    'I000c3b7029a311d9aaecedbddfbb95ea',
    'I000c3b70722f11d78bcee6281d031f02',
    'I000c419072d611d787c8f80b08d85a21',
    'I000c49a0742b11d79b9bc4eeac1c0b2d',
    'I000c4a90727311d7a5a58ae19b0bc350',
    'I000c6180723a11d7b0409d11d16b6b13',
    'I000c634072c311d7b0409d11d16b6b13',
    'I000c6450746511d7abd288e162f1ee6f',
    'I000c6cb071e611d78bcee6281d031f02',
    'I000c6ce0720b11d7bffff83f52289667',
    'I000c72b0741511d7a658bf569bf0de0b',
    'I000c764071f211d7947cc0bc28d0837a',
    'I000c79d0724011d7880af2b8a7a150bc',
    'I000c899529a311d9aaecedbddfbb95ea',
    'I000c89b0032311d89e448639da8914ed',
    'I000c8b20729311d78bcee6281d031f02',
    'I000c8ed084e111d7a5e0e825c1cd135a',
    'I000c9180729b11d796fabc35f7796f7a',
    'I000ca3e0721f11d7a5a58ae19b0bc350',
    'I000caf00728f11d78ef88cd3014a7f23',
    'I000cb44071b911d7a07084608af77b15',
    'I000cb9d071f111d7a07084608af77b15',
    'I000cc48072db11d78347daa8ede63acd',
    'I000cc490721711d7ba84e3942a4b620d',
    'I000cd680721511d792e6e58f3e66f41c',
    'I000cd7b329a311d9aaecedbddfbb95ea',
    'I000ce310720011d7880af2b8a7a150bc',
    'I000ce800c5e811d883e2d13616373e63',
    'I000ce801c5e811d883e2d13616373e63',
    'I000ce80dc5e811d883e2d13616373e63',
    'I000cec9072d011d792e6e58f3e66f41c',
    'I000ced30727b11d7b0409d11d16b6b13',
    'I000cfeca29a311d9aaecedbddfbb95ea',
    'I000d0550725c11d7bffff83f52289667',
    'I000d0d2071df11d78347daa8ede63acd',
    'I000d0eb0724311d792e6e58f3e66f41c',
    'I000d0f1bc5e811d883e2d13616373e63',
    'I000d0f1cc5e811d883e2d13616373e63',
    'I000d0f1ec5e811d883e2d13616373e63',
    'I000d115071d811d7ba84e3942a4b620d',
    'I000d15d072df11d7b100a463f186e11d',
    'I000d22a0722b11d7ba84e3942a4b620d',
    'I000d2cf072cb11d7b100a463f186e11d',
    'I000d30f0729f11d78ef88cd3014a7f23',
    'I000d3622c5e811d883e2d13616373e63',
    'I000d362ac5e811d883e2d13616373e63',
    'I000d3630c5e811d883e2d13616373e63',
    'I000d3633c5e811d883e2d13616373e63',
    'I000d39f0723c11d7b0409d11d16b6b13',
    'I000d432071fe11d7a5a58ae19b0bc350',
    'I000d4520745911d79a8ab5f5a94ee96e',
    'I000d4680722711d792e6e58f3e66f41c';
    FETCH v_rc INTO v_case_uuid;
    WHILE v_rc%FOUND
    LOOP
    v_rows := v_rows +1;
    FETCH v_rc INTO v_case_uuid;
    END LOOP;
    CLOSE v_rc;
    dbms_output.put_line(v_rows);
    end ;

  • Strange behavior  in entity bean : get Timestamp

    Hello:
    I'm working with SUNONE 7 AppServer , over SunOS 5.9
    I've a strange behavior with entity's get methods which return Timestamp value.
    For example, I've got
    Timestamp date;
    If I do
    entity.setF(date) , ( date is a Timestamp with value "12/12/2005 12:30:00" )
    all works right, and in database is wrote right ( "12/12/2005 12:30:00" )
    But , if I do
    date = entity.getF()
    the, date variable has the value "12/12/2005 00:00:00"
    So, in get method is lost the time value of a Timestamp data
    Could be a code bug in my source , but if I use Jboss AS over Windows XP , all work right ( set and get methods ). The database is the same one ( Oracle 9i )

    Well, I found the solution.
    The problem was the ojdbc14.jar driver, which made wrong schema files.
    Exactly, with the bad ojdbc14.jar, generated this entry
    <_type>91</_type>
    when the right one for date types ( Timestamp ) is
    <_type>93</_type>
    I dont know why the new ojdbc14.jar works fine, but I paste its size
    good ojdbc14.jar : 1181679 bytes

  • [BO XI 3.0] - Strange behavior regarding language settings

    Hello,
    I found strange behavior  BOE in infoview portal. We have Desktop intelligence documents published in repository and when we open report (first time) in infoview we have right format for date and numbers e.g. dd.mm.yyyy, 123.123,00.
    When we close this report and open once again the format is en-US e.g. mm/dd/yyyy 123,123.00 and this is wrong. We log out and log in and open this report but no change.
    If we restart services in cmc (deski services) then the first time is report ok and when we open again this report the same error.
    SW:
    Windows server 2003 sp2 - english (regional settings - slovenian)
    BOE premium ( BO XI R 3.0 => the same problem in BO XI 3.1)
    CMS database => Oracle 10gR2 (nsl lang SLOVENIAN_SLOVENIA.EE8MSWIN1250)
    Language settings in infoview we check => use browser locale and slovenian
    Thank you for reply!
    In BOE R2 works fine...
    Regards,
    Gregor

    Hi Gregor,
    Try the following option.
    Find the file i8ln.xml in the location
    "<install directory of BO>\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\scripts\"
    Take a backup of the file and make the follwing changes.
    Find the following code in the file
    activate_languages>
    <state value="0"/>
    <State value="0" cs_lang="Bulgarian"/>
    <State value="0" orig_lang="" cible_lang="Bulgarian"/>*
    <State value="0"/>
    </activate_languages>
    Replace it with:
    <activate_languages>
    <state value="0"/>
    <State value="1" cs_lang="English (Australian)"/>
    <State value="1" orig_lang="" cible_lang="English (Australian)"/>*
    <State value="1"/>
    </activate_languages>
    Save the file.
    Restart your Desktop Intelligence servers. It might take a bit of time to pick up the changes.
    Note: If you start Deski after this change, and go to "Tools > Options", you will see a disabled language button with "English(....)" written on it.
    Regards,
    Anisa

  • Strange behavior on pick load

    We have a strange behavior with TopLink when the load of the server increases : random errors appear in database : pimary key voilated !
    After analysis, we noted that TopLink generates a SQL INSERT in the place of SQL UPDATE. We use the method registerObject for enregister the existing object in the unitOfWork but in certain cases Toplink does not see any more that the object exists and decides to insert it.
    When we pass by again the same cases of figure after the peaks of loads, the program proceeds normally and TopLink generates SQL UPDATE.
    Thank you for your assistance, our production suffers from this problem

    Hello,
    Looks like you have the existence checking set to checkcache only and are likely using a WeakIdentityMap for your objects identity. Under load, this could potentially cause references in the cache to be garbage collected, so that subsequent existence checks won't find them.
    If the above is correct, you can increase/decrease the likelyhood of the problem occuring on a test system by tuning the JVM - removing/adding memory, tuning gc options etc. You might also want to tune each descriptor cache based on your applications usage as described at:
    http://www.oracle.com/technology/products/ias/toplink/doc/10131/main/_html/cachun.htm#CHEJAEBH
    In addition to setting JVM options that suit your application's usage and load, you can prevent the problem entirely by:
    1) reading existing objects through the UOW instead of registering them. This will ensure that if the object has been removed from the cache, it will be read from the database. If it hasn't been removed, it is just a cache hit. Or
    2) use the Check Cache then Database option.
    Benifits of 1 are that if you know the object is new, you don't need to go to the database, but you can always use the RegisterNewObject api as well to avoid the database hit with option 2 anyway. There are probably more ways to avoid the problem, these are just the first two I thought of.
    Best Regards,
    Chris

  • Report gives strange behavior

    Hi Gurus,
    I am facing strange problem with my oracle report 10GR2 release. Problem is, when user runs a report in early part of the morning from application server, the report runs normally and it generates the PDF file with proper data. But when the same user runs the same report in later part of the day with the same parameters as he gave in the morning, the report doesn't shows any result on generated PDF file.
    At the same time if we run the report query in the data base from sqlplus, it gives the proper output. I have checked the server log and the report trace file also but I didn't found any special and abnormal thing in the log file. I have asked the application DBA also to look into this problem but they are not able to identify the problem.
    The problem occurs only in production database in acceptance and test I am not able to simulate the condition.
    Do any one knows the strange behavior of the report on the application server? If more information is required then please ask.
    Thanks in advance.

    When you say that the PDF is not generated what exactly happens
    a. The report is not generated at all and a blank page is shown up even after a prolonged period of time
    or
    b. Some error is thrown (REP errors)
    Apart from this, what is the value set of maxConnect attribute in reports server configuration file located in <ORACLE_HOME>\reports\conf directory.
    Edited by: Anand on Nov 20, 2010 9:43 AM

  • Error while pulling data from an Oracle database. ORA-01858: a non-numeric character was found where a numeric was expected

    I'm trying to pull data from an Oracle database using SSIS. When I try to select a few fields from the source table, it returns the following error message:
        [OLE DB Source [47]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E14.
        An OLE DB record is available.  Source: "OraOLEDB"  Hresult: 0x80040E14  Description: "ORA-01858: a non-numeric character was found where a numeric was expected".
        An OLE DB record is available.  Source: "OraOLEDB"  Hresult: 0x80004005  Description: "ORA-01858: a non-numeric character was found where a numeric was expected".
    The source columns are a combination of numeric and texts, and I've also tried selecting one of them, which didn't work. I'm using the Oracle client 11.2.0.1, and it works fine with any other data sources I have connected to so far. How can I resolve this
    error?

    Hi H.James,
    According to your description, the issue is a non-numeric character was found where a numeric was expected while pulling data from an Oracle database in SSIS.
    Based on the error message, the issue should be you are comparing a number column to a non-number column in a query. Such as the query below (ConfID is a number, Sdate is a date):
     where C.ConfID in (select C.Sdate
                       from Conference_C C
                       where C.Sdate < '1-July-12')
    Besides, a default behavior for the Oracle OleDb Provider that change the NLS Date Format of the session to 'YYYY-MM-DD HH24:MI:SS can also cause the issue. For more details about this issue, please refer to the following blog:
    http://blogs.msdn.com/b/dataaccesstechnologies/archive/2012/01/20/every-bug-is-a-microsoft-bug-until-proven-otherwise.aspx
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Strange behavior in report Output

    Hi,
    Strange behavior in report output , please some one help me out of this problem.
    I am using Oracle order capture rdf file ASOPQTEL.rdf.
    My working environment:
    Windows,apps instance .Now this rdf file is working fine in my work Environment.
    when this same file is deployed in client environment (UNIX and different apps instance from my working environment apps instance)
    for some cases it is giving output.
    for some cases it's throughing error.
    Thanks,
    Mithun

    Please specify what kind of error you are getting and what is command you are firing on Unix.

  • Strange behavior of textareas in BPEL Worklist (10.1.2)

    I have a very strange behavior with linebreaks in all my <textarea>s in the BPEL-Worklist-jsps: (they work fine as <INPUT>s
    Example:
    Default-text:
    line1
    I update the textarea to:
    line1
    line2
    -> hit update
    line1
    *** (second line is completly missing)
    -> hitting update again (no change in text)
    line2line1
    *** (all on one line with the new line in front)
    As Value I use:
    <%=PayloadFormGenerator.selectNodeValue(payload, "/ns0:task/ns0:payload/ns1:abstract", form.getNamespaceMap(),"string", context.getLocale())%>
    and as mentioned: It works fine for <INPUT>.
    What do I do wrong? Is this a bug?
    Daniel
    Message was edited by:
    user552073

    Had the same problem, could not get it to be consistent. I would say this is a bug, but decided to edit payloads via the database in the end...

  • Consolidation of Oracle Database 10g Express Edition "Bugs"

    I'll take a stab at cleaning this up. This is a collection of postings, reported as bugs, but not really bugs or difficult to understand/reproduce. These were filed in the Database General forum and they should have been filed in the XE forum.
    Firstly, thank you for taking the time to report these issues and suspected issues. In the future, it would be quite helpful to everyone if you reported these in the XE forum.
    1. Oracle Database 10g Express Edition Bugs
    This is not a bug. The developer toolbar will show when you are authenticated to the development environment. You do not have to be authenticated to your application for the developer toolbar to appear.
    2. Oracle Database 10g Express Edition Bugs
    If data is present in the cache, this is up to the application developer (you) to implement the proper security which prevents this behavior.
    3. Oracle Database 10g Express Edition  Bugs
    This is a minor issue, at best. For this type of search interface, it is desirable to perform a case-insensitive query. Wouldn't it be a shame if you searched for "item" and it did not return results that contained "Item".
    4. Oracle Database 10g Express Edition Bugs
    This is not a bug. Different authentication schemes have different data restrictions. It is up to you, the application developer, to easily implement the data validations appropriate for your application.
    5. Oracle Database 10g Express Edition Bugs
    Insufficient information provided. You will have to specify what exact error message is arising and what data you changed which resulted in this error. A complete step-by-step test case is desirable, please.
    6. Oracle Database 10g Express Edition Bugs
    Duplicate of #5 above. And still insufficient information.
    7. Oracle Database 10g Express Edition Bugs
    Not a bug. This is intentional behavior. If I know I want to enter table name EMP, it would be bad from a usability standpoint to always force the user to employ their mouse.
    8. Oracle Database 10g Express Edition Bugs
    This could not be reproduced.
    9. Oracle Database 10g Express Edition Bugs
    Almost identical to #8. Please clarify what the expected behavior should be.
    Joel

    This discussion has been continued in the XE forum at:
    Consolidation of Oracle Database 10g Express Edition "Bugs"
    In the future, please attempt to post all XE-related issues in the XE forum.
    Joel

  • Strange behavior of "Partial message encryption "  in OWSM

    Strange behavior of “Partial message encryption “  in OWSM
    If message format is like this
    <cban:transferFund xmlns:cban="http://cbank.com">
    <cban:arg0>string</cban:arg0>   
    <cban:arg1>string</cban:arg1>   
    </cban:transferFund>
    Then body element configuration in message encryption setting
    Name space  http://cbank.com
    Element arg0
    is working fine
    But my requirement is for below message
    <cban:transferFund xmlns:cban="http://cbank.com"> <!--Optional:-->    <
    <arg0>string</arg0>   
    <arg1>string</arg1 >
    </cban:transferFund>
    For this
    Name space : http://cbank.com
    Element : I tried all possible combination but none is working
    I tried these
    :arg0
    //:arg0
    //cban:arg0
    //cban//arg0
    cban:arg0
    With Regards
    Siddharth

    Had the same problem, could not get it to be consistent. I would say this is a bug, but decided to edit payloads via the database in the end...

  • Strange problems in Oracle 8.1.7 driver

    Hi, gurus,
    I have a strange problem in Oracle 8.1.7 ODBC driver on Windows 2000 Server. I use Visual C++ and ODBC to access database information.
    Our program uses character with ASCII code bigger than 127, for example, 170, 132, etc.
    When I try to get characters from the database, the value is different than the one I put in. For example, if I put in 132, I get back 191. It is very strange, can someone please help me out?
    Thanks a lot.
    Jerry

    I'd speculate that you're either trying to insert a character that's not defined in the database's character set or that you have a problem where you're not being consistent about whether you're requesting/providing ASCII or Unicode data.
    What are your NLS settings, both on the client and on the database?
    Justin

  • OLTP behavior in Oracle 11g R2

    Hi everyone.
    Someone could please explain this behavior.
    I've three tables, one in OLTP compression, other in basic compression and other without compression.
    When I inserted lines on OLTP table, these lines are not compressed.
    Only after do a "move" the segment shrinks.
    My test case (Oracle 11.2.0.3.8):
    create table a_normal
    as
    select rownum id, a.*
    from all_objects a
    create table a_compress
    as
    select rownum id, a.*
    from all_objects a
    create table a_comp_oltp
    as
    select rownum id, a.*
    from all_objects a
    SQL> alter table a_compress move compress;
    Table altered.
    SQL> alter table a_comp_oltp compress for oltp;
    Table altered.
    SQL> select table_name, compression, compress_for, pct_free from dba_tables where table_name in ('A_COMPRESS','A_COMP_OLTP','A_NORMAL');
    TABLE_NAME                     COMPRESS COMPRESS_FOR   PCT_FREE
    A_NORMAL                       DISABLED                      10
    A_COMP_OLTP                    ENABLED  OLTP                 10
    A_COMPRESS                     ENABLED  BASIC                 0
    SQL> select segment_name, bytes/1024 from dba_segments where segment_name in ('A_COMPRESS','A_COMP_OLTP','A_NORMAL');
    SEGMENT_NAME                                                                      BYTES/1024
    A_COMP_OLTP                                                                            10240
    A_COMPRESS                                                                              3072
    A_NORMAL                                                                               10240As you can see here, even after the move compress for oltp, the space used still the same.
    Now, after the "move", our space shrinks.
    SQL> alter table a_comp_oltp move;
    Table altered.
    SQL> select segment_name, bytes/1024 from dba_segments where segment_name in ('A_COMPRESS','A_COMP_OLTP','A_NORMAL');
    SEGMENT_NAME                                                                      BYTES/1024
    A_COMP_OLTP                                                                             4096
    A_COMPRESS                                                                              3072
    A_NORMAL                                                                               10240And, after that, I inserted 4 million rows without append and more 4 million with append, both are not compressed until before I did a "move".
    SQL> @ins_a_comp_oltp
    Enter value for 1: 4000000
    old   3: l_rows number := &1;
    new   3: l_rows number := 4000000;
    Enter value for 1: 4000000
    old   9: where rownum <= &1;
    new   9: where rownum <= 4000000;
    PL/SQL procedure successfully completed.
    SQL> select segment_name, bytes/1024 from dba_segments where segment_name in ('A_COMPRESS','A_COMP_OLTP','A_NORMAL');
    SEGMENT_NAME                                                                      BYTES/1024
    A_COMP_OLTP                                                                           493568
    A_COMPRESS                                                                              3072
    A_NORMAL                                                                               10240
    SQL> alter table A_COMP_OLTP move;
    Table altered.
    SQL>  select segment_name, bytes/1024 from dba_segments where segment_name in ('A_COMPRESS','A_COMP_OLTP','A_NORMAL');
    SEGMENT_NAME                                                                      BYTES/1024
    A_COMP_OLTP                                                                           188416
    A_COMPRESS                                                                              3072
    A_NORMAL                                                                              499712
    SQL> @ins_a_comp_oltp_append
    Enter value for 1: 4000000
    old   3: l_rows number := &1;
    new   3: l_rows number := 4000000;
    Enter value for 1: 4000000
    old   9: where rownum <= &1;
    new   9: where rownum <= 4000000;
    PL/SQL procedure successfully completed.
    SQL>  select segment_name, bytes/1024 from dba_segments where segment_name in ('A_COMPRESS','A_COMP_OLTP','A_NORMAL');
    SEGMENT_NAME                                                                      BYTES/1024
    A_COMP_OLTP                                                                           665600
    A_COMPRESS                                                                              3072
    A_NORMAL                                                                              499712
    SQL> alter table A_COMP_OLTP move;
    Table altered.
    SQL> select segment_name, bytes/1024 from dba_segments where segment_name in ('A_COMPRESS','A_COMP_OLTP','A_NORMAL');
    SEGMENT_NAME                                                                      BYTES/1024
    A_COMP_OLTP                                                                           360448
    A_COMPRESS                                                                              3072
    A_NORMAL                                                                              499712When I read the documentation, it says "When a block reaches the PCTFREE value, it will be compressed, if the compression make the block leaves the PCTFREE threshold it will can accept more lines, and do the compression again"
    But here, even with a 4 million insert, the table is not compressed, neither with append (direct-path), why?
    Thanks and regards,
    Felipe.
    Edited by: Felipe Romeu on 09/10/2012 14:43

    It works for me:orcl> create table nocomp (c1 varchar2(10));
    Table created.
    orcl> create table oltpcomp(c1 varchar2(10)) compress for oltp;
    Table created.
    orcl> insert into nocomp select 'aaaaaaaaaa' from dual connect by level < 1000000;
    999999 rows created.
    orcl> insert into oltpcomp select 'aaaaaaaaaa' from dual connect by level < 1000000;
    999999 rows created.
    orcl> select segment_name,bytes from user_segments where segment_name like '%COMP';
    SEGMENT_NAME                                                                           BYTES
    NOCOMP                                                                              18874368
    OLTPCOMP                                                                            13631488
    orcl> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for 32-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    orcl>

Maybe you are looking for

  • New System - No POST, No Beep Codes

    Hey guys, So I built a new system last night, powered everything on and everything seemed to come on as expected but there was absolutely nothing on the screen.  The system MIGHT be posting properly because I see the keyboard lights flash when I firs

  • Ichat wont open

    I just downloaded more ichat effects and my ichat will not open please help

  • SQL Developer Data Modeler: Logical model, unable to create arc

    I have a logical model in SQL Developer Data Modeler. Entity A has two 'incoming' foreign key relations to entities B and C. Both releations have the same optionality and cardinality. I want to place both relations in an arc. I see the buttons in my

  • Firefox 22 won't open PDFs

    Ever since updating Firefox/Mac to v.22, the built-in Firefox PDF viewer won't open PDFs. Any PDF link automatically downloads the file. I've set the Applications control for PDFs to "Preview in Firefox". I've also reset the mimeTypes.rdf file, but n

  • When is iOS 5 available for austria?

    when is iOS 5 available for austria? iTunes 10.5 is installed and auto-update says "you have the newest version (4.3.5)"