Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Any OO4O Oracle users out there ?
Ok, I am making this Excel VBA thing that will execute a series of queries and bring in Analysis Data, the first step that I need to do is execute a DDL query to create a Table: Any variables that hold data are in the code, I just simplified it and removed them, that all is good, I put watch on them to see what values they got. Sub Process_AdHoc_Analysis_Report() Dim OraDynaset As Object Dim objSession As Object Dim objDataBase As Object Dim sql1 As String Set objSession = CreateObject("OracleInProcServer.XOraSession") Set objDataBase = objSession.OpenDatabase("database", schema & "/" & password, 0&) sql1 = "create table " & tablename & "_1" & " as select * from table where cmpgn_id='" & campaignid & "';" objDataBase.ExecuteSQL (sql1) <-- here is the error "Run-time error '440': Automation error End Sub Any idea how to execute a DDL query ? All I need is to just execute this query, I don't need nothing returned to deal with it like with a Select Statement. One would figure this was easy, not sure, I read the OO4O Wiki and not very well documented. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Best way to execute an SQL Query on an Excel Worksheet | Excel Programming | |||
Query Oracle from Excel | Excel Programming | |||
How to update ORACLE query definition in Excel file | Links and Linking in Excel | |||
returning a spreadsheet from code - ASP, OO4O Oracle Database connection | Excel Programming | |||
Execute a query against an excel doc and a sql server db | Excel Programming |