|
Type keyword or phrase to search:
My Articles...
Resources
I have other resource websites and social networking sites for you to browse...
Blog, articles, video tutorials
Access Database
Tutorial Blog
Contact me on Twitter
@benbeitler
|
Help how do you merge two access tables into 1?
hey so i was wondering how do yo u merge 2 Access tables together so they are 1 beside the other, well like merge them into 1 table?it would be a huge help right now cheers x
How to combine 2 access tables into 1 single table?
The problem I have is I need to sort the data in the database. There are over 100,000 raw data and I cannot export it to the excel due to its limitation. What I did was break the data into smaller excel spreadsheet with the same column heading except for its detail. eg. premium tables, commission tables. I exported these tables to access and I would like to know how to combine these 2 tables into 1 tables so that I could sort it out the way I like.
Import access table to another access database through vb.net?
Dim con As New OleDbConnection " Provider Microsoft.Jet.OLEDB.4.0 Data Source " & Application.StartupPath & " fwdata.mdb Jet OLEDB Database Password vbc100" con.Open Dim cmd As New System.Data.OleDb.OleDbCommand " select into MSAccess DATABASE " & Application.StartupPath & " fwdata1.mdb Jet OLEDB Database Password vbc100 . data entry from data entry" , con cmd.ExecuteNonQuery con.Close note 1.i want to copy my fwdata.mdb's table data entry which is in application startuppath.2.i want to copy this table data entry to my export.mdb's table exportdata entry which is in application startuppath exportfolderplease give me code for this I have written above code but it doesnot work
Type mismatch error in access table?
I created and access database with a front end and a backend contianing the tables. in the back end when I open the table and try to sort some columns will sort some will not sort. and when i try to run a simple query based on that table I get a " Type Mismatch in expression" I have check all my data types in all the tables and they match. If anyone can suggest and area to look at the help would be apprciated.
I can't change the data type of a large access table.?
I am working with large access tables between 600,000 and over a million records. I need to change the data type in one of the fields. When I go to change the data type I get an error message saying " Microsoft Access can't change the data type There isn't enough disk space or memory" I have no issues changing the data type on smaller tables. Any ideas on how to either fix this or make it easier? Thanks
Transfer Excel spreadsheet into existing Access table via VBA?
I have an access database and I want to be able to transfer data from a previously set up spreadsheet via a command button in access. The Access table name is Transfer of DataThe Excel spreadsheet name is Data ImportThis is the code I am using, but it keeps returning run time errors. Can anyone help me with this?DoCmd.TransferSpreadsheet acImport, , " Transfer of Data" , " Data Import" Thanks
C# Updating / Adding information into an Access Table?
Hi, I've been baffled over the last few hours researching and trying to export some information into a access database.Here is my current script which will add update a row in a table, it currently throws an exception " SYNTAX Error in UPDATE Statement" . private void posttodb string field, int id, string value try Update code string update " UPDATE Customers SET " field " WHERE PersonId ?" string cnnString " Provider Microsoft.Jet.OLEDB.4.0 Data Source Customers.mdb " using var cnn new OleDbConnection cnnString cnn.Open using var cmd new OleDbCommand update, cnn Add the parameters cmd.CommandType CommandType.Text cmd.Parameters.AddWithValue field, value cmd.Parameters.AddWithValue " PersonId" , id Execute the command cmd.ExecuteNonQuery < < Error occurs on this line... catch The script above is called as follows int record id 0 foreach string filename in accounts record id 1 string title Extract filename, 1 string forename Extract filename, 2 string surname Extract filename, 3 posttodb " Title" , record id, title posttodb " Forename" , record id, forename posttodb " Surname" , record id, surname Can anyone explain, why I get this syntax error and show me a corrected version of the code.Thank you.
Make a pdf of access table structure?
How can i create a PDF of a table structure in a microsoft access database like the field names, types and sizes

|
Books
The following books are my personal recommendations for all levels of Access database users and developers.
Enjoy!
Access 2007
- Dummies
This is a great book for beginners. It takes you through from the very beginning without too much jargon 'computer' talk and adds a little humour to your learning.
This is one of my favourites and is a starter recommendation for my students.

Access 2010 Bible
Get the Access 2010 information you need to succeed with this comprehensive reference. If this is your first encounter with Access, you'll appreciate the thorough attention to database fundamentals and terminology.
You’ll want to keep this soup-to-nuts Access reference close at hand!

Access 2007 VBA
This book provides you with the tools and techniques you’ll need in order to build more sophisticated solutions. After walking through the features of Access 2007 VBA, you’ll learn all about object–oriented programming and ADO. Two comprehensive case studies presents you with the hands–on experience in building real–world solutions using the concepts covered in the book.
It's the one I use as a reference for VBA students!
|