Re: Problem with append query - memo field



On 29 Nov, 18:33, Rich P <rpng...@xxxxxxx> wrote:
I will guess you are connected to the Oracle DB using ODBC. This is the
bottlenect. With ODBC you wont get more than 255 chars. To get around
this limitation you need to connect to the Oracle DB using ADO.

Here is a sample connection string you could try:

Dim cmd As New ADODB.Command, RS As New ADODB.Recordset
cmd.ActiveConnection = "Provider=OraOLEDB.Oracle;Data
Source=MyOracleDB;User Id=myUsername;Password=myPassword;"

Set RS = cmd.Execute("Select * From tblx")

Note that you will have to use PL Sql (Oracle sql) for the ADO command
text. The nice thing about ADO is that it can translate PL Sql,
Transact Sql (ms Sql Server) and Jet Sql.

Rich

*** Sent via Developersdexhttp://www.developersdex.com***

I am not familiar of ADO, only refer to ADO in asp file when I try to
connect to DB. How to do this in MS Access?
Thanks
.



Relevant Pages

  • Re: Getting date/time fields from Oracle with ADO
    ... Yeah, when I 've used the SQL Plus Worksheet, the data was valid. ... I ran this code against my oracle database and it worked fine: ... CREATE TABLE "GROUPDOC2" NOT NULL, ... ado will report 135 for a date field in Oracle. ...
    (microsoft.public.vb.general.discussion)
  • Re: Oracle und MS-SQL
    ... > Wenn ich über SQL QueryAnalyzer oder EnterpriseManager mir den View ... Könnte es sein dass Du einen Keyset Recordset (ADO oder ODBC) ... Der ist zwar für reinen SQL Server Zugriff längst ... sp_prepare ausgeführt und das mag den Oracle Provider verwirren. ...
    (microsoft.public.de.sqlserver)
  • Re: Oracle ADO query shows deleted records
    ... I construct a sql delete statement and fire it an Oracle ... > The short answer is no, ADO doesn't cache anything. ... > it does cache records. ...
    (microsoft.public.data.ado)
  • Re: How to get around 2 Gig limit
    ... I use ADO exclusively now so that isn't an issue at all. ... and then fill it, but if I can create the query in VBA and run it in Oracle, ... Oracle SQL or PL/SQL with passthrough queries. ...
    (microsoft.public.access.tablesdbdesign)
  • Re: Importing a CSV file into Access from Command Line
    ... >>it can import the csv file into a Oracle or a SQL Database as well. ... similar ADO based code to import into SQL or Oracle a arbitrary CSV ...
    (microsoft.public.access.externaldata)