I am using MS Access 2003. I want to run a lot of insert SQL statements in what is called 'Query' in MS Access. Is there any easy(or indeed any way) to do it?
|
yes and no. You can't do:
but you can do
What does that get you if you don't already have the data in a table? Well, you could craft a Select statement composed of a lot of unions of Selects with hard coded results.
Note: I also have to include a some form of a dummy table (e.g., onerow) to fool access into allowing the union (it must have at least one row in it), and you need the "top 1" to ensure you don't get repeats for a table with more than one row But then again, it would probably be easier just to do three separate insert statements, especially if you are already building things up in a loop (unless of course the cost of doing the inserts is greater than the cost of your time to code it). |
|||||
|
|
Personally, I'd create a VBA subroutine to do it, and connect to the database using some form of sql connection. Off the top of my head, the code to do it should look something like:
|
||||
|
|
|
I think it's inadvisable to propose a particular data interface, as Jonathan does, when you haven't clarified the context in which the code is going to run. If the data store is a Jet database, it makes little sense to use any form of ADO unless you're running your code from a scripting platform where it's the preferred choice. If you're in Access, this is definitely not the case, and DAO is the preferred interface. |
||||
|
|
|
Just want to second the opinion of CodeSlave. I've done this before using the technique he describes, and it works. For the record, the same thing works in SQL Server and Oracle as well. |
|||
|
|
|
MS Access can also Append data into a table from a simple text file. CSV the values (I simply used the Replace All box to delete all but the commas) and under External Data select the Text File.
|
||||
|
|
|
No - a query in Access is a single SQL statement. There is no way of creating a batch of several statements within one query object. You could create multiple query objects and run them from a macro/module. |
|||
|
|
|
@Rik Garner: Not sure what you mean by 'batch' but the
construct, although being a single SQL statement, will actually insert each row one at a time (rather than all at once) but in the same transaction: you can test this by adding a relevant constraint e.g.
Assuming the table is empty, the above @David W. Fenton: you may have a strong personal preference for DAO but please do not be too hard on someone for choosing an alternative data access technology (in this case ADO), especially for a vanilla |
|||||||
|
|
MS Access does not allow multiple insert from same sql window. If you want to insert, say 10 rows in table, say movie (mid, mname, mdirector,....), you would need to open the sql windows,
Very boring. Instead you could import the lines from excel by doing:
The whole dataset in the excel has been loaded in the table "MOVIE" |
||||
|
|
