引言:
處理大型資料集時,需要有效率地將字串與資料庫中儲存的資料進行比對。本文探討了在有限的資料庫權限(妨礙建立臨時表或直接操作資料庫結構)下,對傳統方法的替代方案。
問題陳述:
當只有讀取權限時,如何有效率地將大型字串ID清單與Oracle資料庫中的表進行比對?由於列表大小的原因,硬編碼ID不可行。
方案一:使用集合
Oracle提供了一種稱為「集合」的機制,可以用作臨時表的替代方案。集合是一種可以保存一系列值的資料結構。在本例中,集合可以用字串ID填充。以下PL/SQL程式碼片段示範如何使用集合:
<code class="language-sql">VARIABLE cursor REFCURSOR; DECLARE your_collection SYS.ODCIVARCHAR2LIST := SYS.ODCIVARCHAR2LIST(); BEGIN your_collection.EXTEND( 10000 ); FOR i IN 1 .. 10000 LOOP -- 填充集合。 your_collection(i) := DBMS_RANDOM.STRING( 'x', 20 ); END LOOP; OPEN :cursor FOR SELECT t.* FROM your_table t INNER JOIN TABLE( your_collection ) c ON t.id = c.COLUMN_VALUE; END; / PRINT cursor;</code>
方案二:使用Java數組
如果可以使用Java,則可以透過Java程式碼實現相同的方法。以下程式碼片段示範如何使用Java陣列將字串ID清單傳遞給SQL查詢:
<code class="language-java">import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import oracle.jdbc.OraclePreparedStatement; import oracle.sql.ARRAY; import oracle.sql.ArrayDescriptor; public class TestDatabase2 { public static void main(String args[]){ try{ Class.forName("oracle.jdbc.OracleDriver"); Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","username","password"); String[] ids = { "1", "2", "3" }; ArrayDescriptor des = ArrayDescriptor.createDescriptor("SYS.ODCIVARCHAR2LIST", con); PreparedStatement st = con.prepareStatement("SELECT t.* FROM your_table t INNER JOIN TABLE( :your_collection ) c ON t.id = c.COLUMN_VALUE"); // 将数组传递给过程 - ((OraclePreparedStatement) st).setARRAYAtName( "your_collection", new ARRAY( des, con, ids ) ); ResultSet cursor = st.executeQuery(); while ( cursor.next() ) { int id = cursor.getInt(1); double column1 = cursor.getDouble(2); double column2 = cursor.getDouble(3); System.out.println( String.format( "Id: %5d", id ) ); System.out.println( String.format( " Column1: %s", column1 ) ); System.out.println( String.format( " Column2: %s", column2 ) ); } } catch(ClassNotFoundException | SQLException e) { System.out.println(e); } } }</code>
兩種方案都提供了高效的方法來將大型字串ID清單與Oracle資料庫中的資料進行匹配,而無需臨時表或修改資料庫結構。
以上是如何僅使用讀取權限將大型字串清單與 Oracle 資料庫有效匹配?的詳細內容。更多資訊請關注PHP中文網其他相關文章!