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

learn more… | top users | synonyms (4)

-1
votes
1answer
21 views

Issue with MySql Select Statement

I have a fairly complicated SQL Query and it does not seem to be working. I created a form in Microsoft Access and everything works fine. I am using MySQL 5.5. When I try to run it on MySQL after ...
0
votes
1answer
12 views

Determine if Subform/Subreport Control Has a Form or a Report Loaded in MS Access

I have a Subform/Subreport control displayed on a Form in an Access 2010 database, and I use it to display both Forms and Reports. I have a few event handlers in which I need to know whether a Report ...
0
votes
1answer
17 views

New to array variables - can I do this without a loop?

I'm using VBA to import data from an Excel spreadsheet into an Access data base. I have an array variable (data) set up with 17 elements and have the following code to import the 17 values from a ...
0
votes
1answer
18 views

How to dynamically position a text box in Access 2003 report?

I have an Access 2003 project (.ADP) which is a front end to a SQL Server 2005 database. In this ADP, I have a report, which is a set of 8 unbound text boxes, stacked on top of each other each with ...
1
vote
1answer
16 views

scheduling execution of MS Access DB

I have a MS Access 2007 DB that is being executed via Windows NT scheduler. Basically, I created this entry in Windows Scheduler that is run every night at midnight. ...
1
vote
2answers
79 views

Update first rows that match condition

Update table1 set column1 = 'abc', column2 = 25 where column3 IN ('John','Kate','Tim') Column3 contains John twice (two associated rows/records), similarly - it has Kate third times and Tim twice. ...
1
vote
2answers
268 views

ms access visual basic 2010 report does not order by

this one is the screenshot on the visual basic report. as you can see it starts at august then december then february but it i already group by it on the access which is this. this is a query in the ...
2
votes
2answers
23 views

SQL Query in Excel gives “undefined function name” error

I wrote a SQL query in MS Access that uses the MonthName function. In access it works flawlessly. I copied the exact SQL statement into an excel module that I frequently use to query databases. ...
1
vote
1answer
22 views

Compile Error: Invalid Use of Property

I have an Access DB that I am constructing. My VB education is bits and pieces I've needed to customize the DB more than what Access does so it's very spotty. I have a button that runs the following ...
0
votes
2answers
21 views

Access: Updating multiple rows with different values

I have a table describing calls made with the company cellphones, one of the fields is callTypeId, every call has one, while other is callType, a text description of the ID. Several calls lack a text ...
1
vote
4answers
2k views

Refresh button - Refreshing data grid view after inserting, deleting, updating

I'm trying to create a refresh button to automatically refresh the data inside my datagridview after i have finish updating them. However, my refresh button doesn't seem to work. The data displayed ...
0
votes
2answers
16 views

How do I use items in a listbox that are gathered from a database to select an item in the database

Okay, now this would be normally easy for me but there's one little block that's making it so that I can't figure it out. The best way to do this is to show you the code that I have then explain ...
-4
votes
0answers
32 views

sql query to update multiple row ( loop )

hello there i m in big trouble updating multiple row of ms access database using for loop it is only updating the first row the code i m using is <% dim array(6)=(some ...
1
vote
2answers
18 views

Error in using QueryDef to define parameters in a query

I'm working in Access and trying to use a query with parameters in VBA. I have several queries that I need to use, so I added a routine to generalize the process: Public Function ...
0
votes
0answers
14 views

How do I log in to the database using ODBC connection in Crystal Reports?

I have several questions about ODBC connection in Crystal Reports. I'm using Visual Studio 2008 and Crystal Reports version 10.x.x.x. I want to create a Crystal Report to show all my fields in an ...
0
votes
1answer
17 views

CASE statement in Access 2013 (and how to use it)?

I'm new to Microsoft Access programming. I want to check a date field and return if it is today, or yesterday, or last week (the date within last week's dates), or last month, or it's older ...
0
votes
1answer
28 views

ADODB Recordset Open returns Error#:13

I've been using stackoverflow for over a year now but this is my first post so if I do something wrong, please let me know and I'll try to do better next time. I'm currently using MS Access 2003 as a ...
1
vote
1answer
23 views

Typo doesn't trigger error handling in Acess VBA

After recently adding some new VBA code that referred to a control, my code wouldn't run. On investigation, I found the problem was a typo in the code referring to the control: I'd typed it as ...
0
votes
3answers
571 views

Access Can't delete records due to lock violations

We have been using a Delete command on Access 2003 with xp machine from past few years and it was working good until we upgraded our systems to Access 2010 and Windows 7. Please see the error below. ...
0
votes
1answer
16 views

Transforming Database in Access

Not sure if it's even possible but I'm using Access 2010 and have the following table > Reference|| Start Date || Month 1 || Month 2 || Month 3 || month N > 123 || 01/02/2012 || 50 ...
0
votes
0answers
19 views

UNION ALL records less than sum of individual queries

I use UNION ALL to merge results from 3 queries. But I notice that total number of records returned by UNION ALL query is less than the sum of results returned by the individual queries. I know UNION ...
0
votes
4answers
43 views

“Order by ” how to set it to order numerically

I have an sql Query which is used to generated information for a table in a form. I want the information to be order by the operation. I have the operations numbered from 1-30 but when I view them in ...
1
vote
2answers
72 views

using inner join to joining 3 tables?

How to join 3 tables? select * from tblcustomer as cust inner join (tblamountdetails as det on det.[CustomerID]=cust.[CustomerID]) inner join (select cash.AccountID, sum(Amount) as [Paid ...
1
vote
1answer
24 views

ODBC linked table not showing fractions of seconds

I have linked an IBM informix database table through an ODBC connection to an Access 2010 database. My issue is that the date field in this table only shows dd/mm/yy HH:nn:ss in the Access view, where ...
0
votes
1answer
242 views

user are authorized to access page after login

hi how can i write a code in my system, that is 1) User 1 : add, delete, update, view 2) user 2: update only 3) user 3 : view only i using vb.net and access database. there are some of my code ...
0
votes
2answers
939 views

Fixed number of rows In Access Report

I am having tried a access 2007 report with fixed numbers of rows (records) per page. For example, I like to fix total number of records (rows) to 10 per page while underlying query might have 5 ...
2
votes
2answers
41 views

IndexOutOfRange Exception while accessing two columns from an access database

while (reader.Read()) { if (TextBox1.Text.CompareTo(reader["usernam"].ToString()) == 0&&TextBox2.Text.CompareTo(reader["passwd"].ToString()) == 0) // A little messy but does the job to ...
0
votes
0answers
15 views

Need to manipulate data in Access table. Using SQL to bring in data and make delete's

I have a table called JD setup with the columns listed below. JD --------------------------- OEMPartNumer | OEMDescription | OEMSubNumber | OEMSubNumber2 | OEMSubNumber3 | OEMSubNumber4 ...
0
votes
1answer
40 views

SQL Delete and Update didn't delete and update

I wrote a set of codes using SQL command to delete and update Access records through a C# program. Here is the set of codes: Update OleDbCommand cmd = new OleDbCommand("UPDATE Available SET ...
2
votes
1answer
19 views

How do you set search path to schema in Postgresql using ODBC in MS Access?

I am trying to do what on the surface seems pretty simple. I am trying to export a table from MS Access to a Postgresql database using the ODBC driver connection. If you use the default settings for ...
0
votes
0answers
8 views

Tracking changes to continuous form when updates are automated

Access 2007 Form is bound to Qry_ReceiveBoxFiles Bound Field to be revised is called Location Unbound textbox that contains the new value for location called Box_Barcode The user types a box_barcode ...
0
votes
1answer
24 views

Form with required field. Deleting the new record

I have a form that is bounded to a table and I have one required field in the table. When I try to enter a new record through the form, and then I decide not to enter the record, I get stuck, It keeps ...
1
vote
2answers
19 views

MS Access query to match keywords in the column

I have a key word Alpha sem1 but in my database its stored as MS1 2001090 Alpha sem1 When i search with Alpha sem1 i need to check is the given keyword in the column and need to return it select * ...
0
votes
1answer
24 views

open a .mdb database with a visual studio 6 program

I try openning a .mdb file using CDaoDatabase, but at Open() catches an error: Unrecognised database format. I created the database first in MSAcces2007 and saved the file as .mdb, then i installed ...
0
votes
0answers
29 views

Using OPENDATASOURCE to query access stops the sql service

I'm having trouble connecting to an Access Database through SQL. When I try the following query: SELECT * FROM OPENDATASOURCE ('Microsoft.ACE.OLEDB.12.0', 'Data ...
0
votes
1answer
51 views

Moving from MS Access to SQL Server

I'm an Access developer tasked with learning SQL server and giving the requirements for the server. My question for the community is a recommendation on what server specs I might recommend for the ...
1
vote
4answers
37 views

How do I manage large data set spanning multiple tables? UNIONs vs. Big Tables?

I have an aggregate data set that spans multiple years. The data for each respective year is stored in a separate table named Data. The data is currently sitting in MS ACCESS tables, and I will be ...
0
votes
1answer
53 views

Returning multiple records using Recordset MS Access

I have an MS Access form that has a combo box (which acts as a primary key) called cboProjectID. I am trying to create the form in a way so that once a selection is made in the cboProjectID combo box, ...
1
vote
1answer
21 views

Intermittant “Server does not exist or access denied”

Recently had a server die and had to rebuild it from backups. Now I'm getting intermittent failures from several of my Access applications (which work using linked tables and passthrough queries). I ...
0
votes
1answer
27 views

Rankings using SQL

I am creating a database (schema) in Access for baseball related stats. What I want to for starters is create a query that will rank each Team's standing in a certain stat. For instance, I want to see ...
1
vote
1answer
14 views

MS Access: How can I create a union with these 2 queries and get an overall count?

I have 2 tables in a database, basically current sales (dbo_SalesItem) and historical sales (dbo_SalesItemHistory). I have a query to get the count of unique vendor names from each table, but how can ...
3
votes
2answers
31 views

Run VBA code whenever a tabbed form is reselected in Access

EDIT: For clarification, I'm talking in the below post about tabbed document browsing, not a Tab Control. However, if you're looking for roughly the same problem but regarding a Tab Control, Gord ...
1
vote
2answers
34 views

Trying to make MS SQL store CRLF

How can I get SQL 2008 R2 to store the CR/LF embedded in a string (so 2 paragraphs, or possibly multiple CR/LFs) into a field of a record being inserted programmatically vb.net? Not all records have a ...
1
vote
1answer
17 views

MS Query Criteria is overlooked by VBA

I've got the following SQL statement in a VBA module: dbs.Execute "INSERT INTO PA2001CustomReportingTable ([Personnel No], [Subtype], [Start Date], [End Date], [CalDays]) " & _ "SELECT [Personnel ...
1
vote
2answers
295 views

Does MS Access support “CASE WHEN” clause if connect with ODBC?

Does ODBC support CASE WHEN clause for MS Access? Is there any other database which does not support the CASE WHEN clause? I tried the following query while connecting to MS Access with ODBC but get ...
0
votes
1answer
932 views

Docmd.TransferText question

b'h i will be programmatically importing a text file into a table. i have saved the import steps. i will use this: DoCmd.TransferText(TransferType, SpecificationName, TableName, FileName, ...
0
votes
0answers
9 views

Connecting to MDB file which uses MDW for user permissions in Java

I am trying to connect to MDB file using user credentials. Following is my Code Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); java.util.Properties prop = new java.util.Properties(); ...
2
votes
1answer
28 views

efficient asp.net sql query

Been using this site for years and have always found it very helpful and normally all my questions get answered by reading the site. I have some case studies on a site than need to be related to ...
0
votes
1answer
13 views

query distinct returns 5 fields but if 1 field not distinct but matches a certain number i want that in the result set

table1 att_id name tel a1 Joe 123456 a2 Tom 456789 a3 mary 444444 a4 sue 333333 table 2 group_id desc att_id 5 red a1 10 blue a1 12 orange ...
0
votes
1answer
15 views

Issue in setting password for existing in JDBC MS Access Workgroup (MDW) Java

Here is my Scenario I have MS Access DB (MDB file), and work group security file. I have credentials which have all the permit (Administrator user). This DB and MDW file is created on some other ...

1 2 3 4 5 258