Got it from a tome on SQL I have, "The Complete Reference SQL", ISBN 0-07-211845-8. I think I used it once or twice waaaaay back in college. Here's a search result I found that may help explain it (click on "Set Operations" in the TOC links):
http://hsqldb.org/doc/2.0/guide/ch07.html
It would...
Re: "there isn't enough memory to perform this operation" SOLVED!
I had the same issue :mad: I added a Label to a completed form and !bam!, I got this error message and couldn't get the form back...which was a lot of work to create. After searching I came across this...
Yes, everything dimensioned and set and like I wrote above, everything is being populated as checked by the Locals window.
The variable DriverName was assigned the name of the ODBC connection. I just changed that value to the one you mentioned (and is in my documentation as well) to WebTrends...
I haven't and I don't know how.
Just found out that WebTrends has a proprietary "db" that is essentially a collection of flat files :mad: What one 'pings' to get data from the WebTrends data source is just a bunch of files, not a real db:( Don't know if that helps any.
The documentation doesn't give much. It's for a WebTrends database and though it does use SQL it is a a little limited e.g. it doesn't support JOINs nor GROUP BY. From the text for the ODBC section:
It further states ADO is the only way to access the data and the database is an ODDB, which...
I have a small VBA module that pulls data from an ODBC data source and appends the data to a local Access table (from this thread: http://www.access-programmers.co.uk/forums/showthread.php?p=607605#post607605 ).
It works as long as I have a Linked Table from the ODBC data source. If I remove...
Thanks Paul. Your code, along with the Help VBA example for .AddNew, I figured this out (it works!):
Do Until objRecordSet.EOF 'Go thru each record until we hit the EOF marker
rsTable.AddNew 'Sets up a spot to add a new record in local designated table
For i = 0 To...
Your first idea is good but I want to perform all the operations w/in VBA. I really don't have much idea how to do it so, yes, I would appreciate more info, particularly on your second suggestion of opening a second record set.
I haven't done a search yet but any recommendations on books for...
If you go into the VBA editor in Excel and access the Help there you will get information about the pivot cache object. For example, I found the following that may be of use if you can't pull directly from the Excel sheet:
You could have Access open the Excel wkbk object, save the specific...