Tagged Questions

2
votes
1answer
731 views

How Do You Insert Large Blobs Into Oracle 10G Using System.Data.OracleClient?

Trying to insert 315K Gif files into an Oracle 10g database. Everytime I get this error "ora-01460: unimplemented or unreasonable conversion requested" whe I run the stored procedure. It appears ...
1
vote
2answers
427 views

Constructing a good search query using system.data.oracleclient

I am constructing a search function in a class to be used by several of our asp pages. The idea is simple, take a search term from the user and query the database for the item. Currently I am doing ...
0
votes
0answers
25 views

Oracle REFCURSOR Bind Variables and closing cursor

I am using REF CURSOR bound variable to execute a dynamic Oracle PL/SQL query from a .NET app. BEGIN OPEN :ref_cursor FOR SELECT ... END; .NET Code Dim cmdFetchData As New ...
0
votes
2answers
493 views

Help Optomizing Bulk Inserts into Oracle Using VB.NET

I am inserting a block of 5000 records at a time, one block right after the other. The commands are created in a seperate DLL and can call anyone of 4 different stored procedures. Is there a bulk ...