Tagged Questions

Microsoft Access is a rapid application database development and reporting tool.

learn more… | top users | synonyms (2)

61
votes
33answers
37k views

Good Free Alternative To MS Access

Consider the need to develop a lightweight desktop DB application on the Microsoft platforms. It could be done fairly easily with MS Access but I'd like to be able to distribute it to others and I ...
53
votes
13answers
12k views

How do you use version control with Access development?

I'm involved with updating an Access solution. It has a good amount of VBA, a number of queries, a small amount of tables, and a few forms for data entry & report generation. It's an ideal ...
28
votes
7answers
116k views

Microsoft.ACE.OLEDB.12.0 provider is not registered

I have a Visual Studio 2008 solution with two projects (a Word-Template project and a VB.Net console application for testing). Both projects reference a database project which opens a connection to ...
26
votes
21answers
2k views

What will we do after Access?

Microsoft seems hell-bent on deprecating the swiss-army-knife of database tools. What else comes close for facading/file-swapping/cloning/name-your-acronym-connecting arbitrary database ...
24
votes
1answer
410 views

Bugs in OrderByOn property in Microsoft Access 2010

The setup is a mySQL database on a remote server, using MS Access 2010 as front-end user interface. Problem occurs in forms based on underlying sorted queries, where default view is Continuous ...
20
votes
6answers
33k views

Query Microsoft Access MDB Database using LINQ and C#

I have a *.MDB database file, and I am wondering if it is possible or recommended to work against it using LINQ in C#. I am also wondering what some simple examples would look like. I don't know a ...
19
votes
12answers
34k views

SQL Query - Using Order By in UNION

How can one programmatically sort a union query when pulling data from two tables? For example, SELECT table1.field1 FROM table1 ORDER BY table1.field1 UNION SELECT table2.field1 FROM table2 ORDER BY ...
15
votes
1answer
584 views

ODBC problems in SQL 2000 --> 2005 Upgrade

This wiki post outlines both a problem and a solution. I wanted to post this for others that may be having similar problems, as I couldn't find anything specifically to solve this problem elsewhere. ...
14
votes
9answers
3k views

Best way to test a MS Access application?

With the code, forms and data inside the same database I am wondering what are the best practices to design a suite of tests for a Microsoft Access application (say for Access 2007). One of the main ...
13
votes
11answers
3k views

MS Access (MDB) concurrency

For a small project I need to utilize a simple database with very light requirements: few tables, no more than few thousands of records in total, 2 or 3 users. I am working in .NET environment. As a ...
13
votes
9answers
96k views

How to do INSERT into a table records extracted from another table

I'm trying to write a query that extracts and transforms data from a table and then insert those data into another table. Yes, this is a data warehousing query and I'm doing it in MS Access. So ...
12
votes
2answers
520 views

Hard to debug “Mysql server has gone away”

I'm running a MsAccess with Mysql background database and today I am experiencing some problems. Depending on how far I can get into the program I am able to get a list of all the names and entry. ...
12
votes
7answers
10k views

Is it better to use ADO or DAO in Access 2007?

When creating a new database in Access 2007, should ADO (ActiveX Data Objects) or DAO (Data Access Objects) be used? Edit: Part of this database will be importing data from Excel 2007 spreadsheets.
12
votes
12answers
6k views

MS Access Front-End Alternative?

Background I work for a large organization which has thousands of MS Access applications floating around. I didn't write any of these - in fact, most of the original authors have long since left the ...
12
votes
12answers
2k views

Alternatives to Access

Are there any alternatives to MS Access? Requirements: Portable Database file Integrated form development for data entry No compiling necessary. Can be modified on the fly. Two more ...
11
votes
2answers
1k views

ADO.NET Entity Framework with OLE DB Access Data Source

Has anyone found a way to make the ADO.NET Entity Framework work with OLE DB or ODBC data sources? Specifically, I need to work with an Access database that for various reasons can't be upsized to ...
11
votes
8answers
3k views

Building SQL strings in Access/VBA

Occasionally, I have had to build a SQL string in VBA and execute it with Docmd.RunSql(). I have always built these strings by concatenating variables into the string, e.g: Dim mysqlstring as String ...
11
votes
5answers
797 views

Finding similar sounding text in VBA

My manager tells me that there is a way to evaluate names that are spelled differently but sound similar in the way they are pronounced. Ideally, we want to be able to evaluate a user-entered search ...
11
votes
7answers
490 views

Access sometimes jumps to existing record on save new record - Access2k FE/SQL2005 BE

this is my first question on SO, am really posting this out of desperation after searching around a lot for an answer and trying a few different things with no success. I have an Access database ...
11
votes
13answers
3k views

Is MS Access (JET) suitable for multiuser access?

I have a product designed to be a desktop product using MS Access file as a DB. Now, some users need to install it in a few PCs (let's say 2 or 3) and SHARE the database. I thought to place the MS ...
11
votes
4answers
8k views

Select Top (all but 10) from … in Microsoft Access

Say I've got a query SELECT TOP 10 ... FROM ... ORDER BY ... in Access (well, really Jet). The question is: how can I get all the other rows... everything except the top 10?
11
votes
2answers
4k views

SSRS Report Builder - Issues From Experience?

I'm looking into the idea of rolling out the web-based SSRS Report Builder to our end users to allow them to create their own reports against our production application databases. From what I have ...
10
votes
9answers
520 views

Why do I read so many negative opinions on using composite keys?

I was working on an Access database which loved auto-numbered identifiers. Every table used them except one, which used a key made up of the first name, last name and birthdate of a person. Anyways, ...
10
votes
3answers
2k views

How to determine Jet database Engine Type programmatically

I have a program which needs to upgrade any Access (Jet) database it opens to JET Version4.x if it isn't already that version. (This enables use of SQL-92 syntax features) Upgrading is (relatively) ...
10
votes
6answers
34k views

SQL Update woes in MS Access - Operation must use an updateable query

I have a select query which does some text manipulation to essentially reformat a field so that I can look it up in another table: If my first table if I have a field like "J1/2" it looks up the ID ...
10
votes
9answers
2k views

Why should I use SQLite over a Jet database

Someone asked me this the other day, and I couldn't think of a good answer. Platform portability is completely irrelevant to the project. In fact, Jet has some features that SQLite does not, namely ...
10
votes
7answers
29k views

How to import mdb to sql server

I have a vb application. Now I have developed that same vb application in Asp.net. In vb I had used MSAccess database. In asp.net I am using Sql server. Now I want to Move or copy the MSaccess ...
10
votes
5answers
4k views

Lightweight SQL database which doesn't require installation

Could you recommend me, please, lightweight SQL database which doesn't require installation on a client computer to work and could be accessed easily from .NET application? Only basic SQL capabilities ...
10
votes
9answers
9k views

Classic ASP SQL Injection Protection

What is a strong way to protect against sql injection for a classic asp app? FYI I am using it with an access DB. (I didnt write the app)
9
votes
0answers
929 views

Is Visual Studio Lightswitch “Microsoft Access” for the web age? [closed]

It seems that Visual Studio Lightswitch is aimed at the some sort of application that Microsoft Access was aimed at. Therefore am I right to assume that: “Visual Studio Lightswitch” is ...
9
votes
5answers
259 views

Which O/RM tool supports Microsofts Access?

For one of my clients I'm currently building an application that communicates with a legacy Microsoft Access database. Migrating to SQL server is unfortunately not (yet) an option. I currently write ...
9
votes
3answers
3k views

Nhibernate and MS Access

Can NHibernate be used as ORM tool for MS Access? We are using Nhibernate to access Sql Server, so wondering if it can be reused. If it can be used how has the experience been?
9
votes
22answers
9k views

What are the appropriate uses for MS Access?

It's the Office app everyone loves to hate ;) I admit that it's often abused or misused, but it does come in handy on occasion. So what do you think? Are there appropriate uses for Access, or should ...
9
votes
11answers
2k views

MS Access as Enterprise Software?

Something that I often run into with my users is their desire to aquire solutions quickly means that they sometimes have said "Heck, I'll just roll up my sleeves and do it in Access - it's installed ...
9
votes
9answers
5k views

Populate a MS Access database in Linux

Is there any way to create an Access / Jet database from within Linux? I'm trying to feed data from a linux application server (mysql backend) and have not found any tools that let me do this - it ...
9
votes
15answers
738 views

How do I convince someone they need to upsize from ms access to sql server or similar

I am having a real problem at work with a highly ingrained developer obsessed with ms access. Users moan about random crashes, locking errors, freeze's, the application slowing down (especially in ...
9
votes
6answers
7k views

Wouldn't MS Access(.mdb) file size reduce after deleting the content of database?

I was inserting data into a MS Access database using JDBC-ODBC driver. The blank mdb file was 2KB. After populating this database, the size grew to 155MB. Then I was deleting the data. But I found ...
9
votes
6answers
9k views

[] brackets in sql statements

What do the brackets do in a sql statement? For example, in the statement: insert into table1 ([columnname1], columnname2) values (val1, val2) Also, what does it do if the table name is in ...
9
votes
8answers
11k views

Determining whether an object is a member of a collection in VBA

How do I determine whether an object is a member of a collection in VBA? Specifically, I need to find out whether a table definition is a member of the TableDefs collection.
8
votes
3answers
85 views

Is there a way to make a column's nullability depend on another column's nullability?

I have two columns (among others) in a database table: ExitDate and ExitReason. Our business logic requires that ExitReason be specified if ExitDate is specified. The ExitDate column needs to allow ...
8
votes
1answer
72 views

Access SQL join question

Using MS Access. I'm sorry that the title is vague--i just don't exactly know how to describe what type of problem this is, I just know that I need to join two tables or queries to solve it. I have ...
8
votes
5answers
108 views

MS Access VBA Brain Teaser

Explain why Access.Application.Eval() (commonly abbreviated as Eval()) produces a different result than just evaluating the original expression in this case: Debug.Print Round(.575 * 100) 57 ...
8
votes
5answers
918 views

Migrating application from Microsoft Access to VB or C#.NET

I'm currently trying to convince management of the need to port one of our applications to .NET. The application has grown to be a bit of a monster in Access (backend in SQL), with 700 linked tables, ...
8
votes
4answers
942 views

Is MS Access still the most efficient RAD tool for small-scale custom apps? [closed]

Of the many other development tools I've used, nothing holds a candle to the 'Functionality to Development Effort' ratio of MS Access. The reason I am asking is that I have been out of the language ...
8
votes
8answers
220 views

Replacement or Migration strategy for Excel/Access

Is there a way of offering the flexibility of Excel/Access development that end users love while instilling centralised IT management so data and logic is secure, backed up, version controlled etc. ...
8
votes
7answers
7k views

Tools to convert Microsoft Access to an online PHP/mySQL system

We have a Microsoft Access database that has been used for many years. Our staff is very used to using the Access tables and forms to query, view, update and add to the data. But the database is at ...
8
votes
12answers
8k views

@@IDENTITY after INSERT statement always returns 0

I need a function which executes an INSERT statement on a database and returns the Auto_Increment primary key. I have the following C# code but, while the INSERT statement works fine (I can see the ...
7
votes
1answer
670 views

Writing large number of records (bulk insert) to Access in .NET/C#

What is the best way to perform bulk inserts into an MS Access database from .NET? Using ADO.NET, it is taking way over an hour to write out a large dataset. Note that my original post, before I ...
7
votes
2answers
2k views

Why does Crystal Report Viewer always asks for login details to Access database on WePOS operating system?

I wrote a report using Crystal Reports XI linked to an Access database here C:\MyData.mdb. The report has one field (simplified for this example) and no sub-reports. I have used the Forms and WPF ...
7
votes
8answers
589 views

Building an MS Access database using python

A primary goal of a project I plan to bid on involves creating a Microsoft Access database using python. The main DB backend will be postgres, but the plan is to export an Access image. This will be ...

1 2 3 4 5 143