Tagged Questions
0
votes
1answer
46 views
Import Excel 2013 to vs, Microsoft ACE.OLEDB.12.0 is not registered on the local Machine
Creating a form application in vs 2012. I have office 2013 installed, win 8 64 bit. I get the above error for the below piece of code.
public void SetConnection(string text1, string text2, string ...
1
vote
2answers
67 views
MS-Access Including all days in a Date Range Query
Access 2010 here.
Back with another puzzler. I have this query:
SELECT DischargeDatabase.Date, Avg([pH]) AS [pH Value], Avg([Temperature]) AS [Temperature (°C)], Avg([ZincLevel]) AS [Zinc (mg/l)], ...
2
votes
1answer
50 views
Why query returns different results with JET DAO compared to ACE DAO?
In a VB6 program accessing an MDB file, the following SQL query is being executed:
> Select * FROM [table1] WHERE ([type] = 1 OR [type] = 2 OR [type] = 6)
> AND ([notes] = Null OR [notes] = ...
0
votes
1answer
49 views
How to install Jet OLEDB provider for .NET apps?
How is the latest JET OLEDB provider for .NET apps meant to be installed?
This link says that the Microsoft Access Database Engine is not to be installed in order to install the JET OLEDB provider.
...
1
vote
2answers
106 views
Visual Studio VB.NET Database Explorer “Unspecified Error”
I have been searching all day for a solution to this problem, but can not find one that works. Basically, I have been connecting to an Access Database through Visual Studio for some time now (there is ...
1
vote
1answer
109 views
Information about syntax of ADO recordset filter queries
I spent much time trying to figure out how to extract date part in ado recordset filter expressions connecting to Jet engine working with an mdb file. The problem is that many things mentioned about ...
0
votes
1answer
87 views
SSIS Package Fails After Move to 64-bit
We've got a a series of SQL Server Integration Services packages that copy data from a few MS Access databases into a SQL Server 2008 database. There is one parent package that calls the various ...
0
votes
1answer
81 views
using InStrRev() and similar functions in Jet/ACE queries outside of Access
Hia, I'm struggling a bit while forming some SQL queries.
Currently I'm using:
InStrRev(TABLE.[_URL],"/")+1) AS OUTPUT
Given an input of a URL - I want to extract the last part eg:
...
0
votes
0answers
29 views
Reorder and hide columns in TRANSFORM query
Here is my query:
TRANSFORM Max([Src].[Value])
select
[Results].[Id],
[Results].[Name],
[Results].[OfferPrice],
[Results].[RegPrice],
[Results].[Image],
[Results].[URL]
...
1
vote
1answer
76 views
Code not executing properly but no error appears to be raised
On 2 occasions recently, code essentially the same as below failed to execute properly.
During the same timeframe it would also has executed normally hundreds of times.
On the 2 occasions slip was ...
0
votes
1answer
76 views
CurrentDB.Execute Active Record Reference
Access 2010 here.
There are two tables in a 1-to-1 relationship (MainDB, Parts) and a command from the form (MainForm) that operates on the "Parts" table:
CurrentDb.Execute "DELETE * FROM Parts ...
1
vote
0answers
141 views
Error 3078 over WAN
In a VB6 app accessing a MDB database file over a WAN there are occasionally 3078 errors due to network connectivity issues:
Error 3078: The Microsoft Jet database engine cannot find the input
...
0
votes
0answers
33 views
Seeking Jet wrapper UDF's for SQL Server
Does anyone have a set of SQL Server UDF's that wrap the JET/VB-like functions? For example, a wrapper for getdate() that would be referenced as "Now". I'd actually pay for a full set of such ...
0
votes
1answer
65 views
How can I find where a program stores databases on my system? [closed]
I'm currently developing a plugin for an archaic inventory system that utilizes what appears to be microsoft access databases, Microsoft Jet DB 4.0, paradox databases, and ACE databases.
The program ...
1
vote
2answers
260 views
Get max(date) from table
Hopefully this is a simple one. I have a table of sent messages and a customer table. I am trying to get the date of the last message sent to a customer, but I am having a nightmare with it and can't ...
1
vote
1answer
389 views
Updating a record in JET (Access) using VB.NET
I am trying to update a record in Access through VB.NET. This is my code thus far. The objective is to search a barcode, it returns the data associated with it and the user is able to change the data ...
0
votes
2answers
151 views
SQL Statement returns wrong values
I tried to get the the last and next row of my table by using this query:
SELECT TOP 1 Nummer FROM Empfänger WHERE Nummer < 4748 ORDER BY Nummer DESC
UNION
SELECT TOP 2 Nummer FROM Empfänger ...
1
vote
2answers
147 views
Jet (MS Access) Get seed and increment of COUNTER column
Does anyone know how to retrieve the seed and increment of an auto increment field (aka COUNTER, or "AutoNumber" in the Access UI) in a Jet (MS Access) database?
I have enumerated all properties of ...
1
vote
1answer
186 views
Showplan.out in Windows 7 with MS-Access 2003 and multiple versions of Office installed?
I was looking for a way to log queries from a 3rd party proprietary ms-access database application that contains a front-end and a backend.
The database runs in MS-Access 2003. I read and followed ...
1
vote
3answers
125 views
How to you do a select statement with an order by when you have a mix of numbers and strings?
The Column is a string, and the data inside of it can be
10
2
3
3.1
3.2
a10
a11
1
a12.2
a12.3
wanting the results back as:
1
2
3
3.1
3.2
10
a10
a11
a12.2
a12.3
This would be ASP/VBScript with a ...
1
vote
2answers
264 views
How can I JOIN two tables columns using a wildcard?
I'm using Access 97.
This is what I wanna do:
SELECT *
FROM CodeDIS, ListOfProducts
WHERE CodeDIS.IDNumber LIKE ListOfProducts.IDNumber*;
Sometimes the IDNumber on ListOfProducts has an extra ...
0
votes
1answer
148 views
Transaction isolation in JET?
MSDN describes the JET transaction isolation for its OLEDB provider as follows:
Jet supports five levels of nesting in transactions. The only
supported mode for transactions is Read Committed. ...
2
votes
1answer
214 views
VBA Query Not Running as Access Query Does
I apologize for the cluster of code you're about to receive. The question is: why does my query work in the design window (note the Debug.Print .CommandText outputs the exact text I put into an access ...
1
vote
1answer
171 views
Union Query -> Pick One When Duplicate Value in Jet
I'm using Access to fill in details in a database across 3 offline computers. This means they all have a copy of the database, do a day of info filling, then get manually uploaded to a central ...
1
vote
1answer
132 views
What version of JET does Windows Server 2003 ENT SP2 use?
Normally when you look software on Wikipedia you can find information regarding the version numbers of a product and what the differences are between versions.
In the JET Wikipedia page I found the ...
0
votes
2answers
563 views
Getting a list of foreign key constraints for a table in ms-access?
I'm trying to use the relationships window to view relations between tables in an MS-Access database. I hid all of the other tables, and found a foreign key in one of the tables that appears like it ...
2
votes
2answers
161 views
Ambiguous left joins in MS Access
I want to convert the following query from T-SQL
SELECT
*
FROM
A LEFT JOIN
B ON A.field1 = B.field1 LEFT JOIN
C ON C.field1 = A.field2 AND
...
2
votes
4answers
279 views
Converting T-SQL Left Join Subqueries to MS-Access
I need help in converting this T-SQL query to MS ACCESS. The error that I'm getting is JOIN expression not supported.
Update:
I can't add:
DDA ON TT.[Description] = DDA.AccountTypeDesc AND
...
0
votes
0answers
60 views
What happens if you try to update a locked record in JET?
If I use JET/DAO to open a recordset on a MDB database using dbPessimistic locking, what will happen if another user tries to update a row in that recordset at that time? Will there be an error, or ...
1
vote
3answers
147 views
Can you do row locking in Access?
Can you do row locking in Access/JET?
For example, can you do the following in JET SQL:
UPDATE Test WITH (ROWLOCK)
SET UpdateDate = myDate
WHERE PrimaryKey = myKey
1
vote
3answers
411 views
How to implement “Right Outer Join” query in access database using C#?
I want to write RightOuterJoin query to retrieve data from access database.. How can i implement this query in c#?
I tried Like this
connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data ...
2
votes
1answer
2k views
Does Microsoft Jet DB work with Entity Framework?
In this forum here , someone mentions that Entity Framework does not work with Access (Jet DB - .mdb). However it seems that there is a provider for Jet DB as described here
Which makes me think that ...
2
votes
1answer
107 views
Access “repair” breaks a slightly complex query
I have an application that creates an Jet database at run-time, and imports ~100k records so that I can make use of the indexing for performance reasons (1 minute versus nearly 10 when not using a Jet ...
0
votes
0answers
98 views
ALTER ms-access table that is locked
I am trying to add a column to a table in an ms-access backend which is being used by multiple ms-access front-ends. When I try to add a column to the table like so (or with DAO):
sql = "ALTER Table ...
1
vote
1answer
229 views
How do I check if a column has a unique/no duplicates constraint in Access using JET and OLE in C#?
For an application written in C# using an Access database via a JET OLEDB connection:
I am writing an interface that allows the user to edit the values of tables containing keywords (there are ...
1
vote
2answers
671 views
DEFAULT clause in ALTER TABLE statement resulting in syntax error
I have a customer who would like a customization to an old, Visual Basic 5 application which uses an Access 97 database and Jet 3.5 as the database engine.
The desired customization requires a column ...
1
vote
2answers
123 views
Any reason to run JETCOMP on smaller MDB file? [closed]
Is there any reason to run JETCOMP.EXE or any other compaction method on an MDB file if it is relatively small (ie. 0-200MB)?
I can understand if it is approaching a size limit (eg. 1GB for some ...
0
votes
1answer
184 views
How to parse JET/ACE SQL
I want to emphasize that I am looking for the "right" way to do something like this in general and for Access in particular. What I have below is the solution I came up with for use on a SQL Server, ...
1
vote
2answers
182 views
Sum all records after last no good
I work in a manufacturing environment and we have an Access database set up for recording no good part. The two tables that we are currently working on are Occurrences and Sort. Occurrences records ...
0
votes
3answers
783 views
sqlite vs .mdb in a multiuser situation
I like the ease of deployment these 2 offer compared to mysql/sql server etc.
Which scales better in terms of performance and is less prone to corruption in a multiuser environment as the number of ...
0
votes
1answer
234 views
Rows to Columns (crosstab) with many rows
The third-party application I'm working with (this is NOT Access, but uses the MDAC library) has three Access tables structured like this:
TagTable
TagName TagIndex TagType
peach 0 Float ...
0
votes
1answer
229 views
Test if field from one table matches field from another Access 2007
SELECT Visits.KHA_ID, tblKentuckyCounties.countyName, tblHospitals.HospitalName, hospitalCounties.countyName
FROM (HospitalType INNER JOIN (hospitalCounties
INNER JOIN
tblHospitals ON ...
1
vote
0answers
357 views
How to programmatically create an encrypted database that is Access 2007 compatible from the Access 2010 database engine?
I'd like to upgrade my application to use the newer Access 2007/2010 database engine. It currently stores its data in a Jet 4.0 (MDB) database. My application is written in Delphi, and it uses ADODB ...
0
votes
0answers
200 views
Access 2003 Parameter Queries: pass param from parent query?
I know this can be done using VBA with QueryDef.parameter(n); but is there any way to use a named query from SQL and pass it parameters from the parent statement so Access doesn't prompt the user? ...
0
votes
1answer
2k views
Microsoft Jet OLEDB 4.0 SQL Function Reference with ADO?
I'm using the the Microsoft.Jet.OLEDB.4.0 provider in Excel VBA ADO to connect to .csv and .xls files stored locally. I'm using the list of MS Access functions here as a guide for what I can write in ...
0
votes
2answers
272 views
Converting MEMO Ms Jet DB Data type to MySql
I have a Access 97 VBA program that copies a bunch of information off a PCOM terminal emulator.
I would like to sync this database with a remote sql server we have.
I was unable to find anyone who ...
2
votes
2answers
986 views
MS Access slow in network share
I have a .NET application (VB.NET) that runs against a MS Access database. Every data request connects to the access database, runs and returns the query and closes the connection back again.
I ...
-1
votes
1answer
1k views
access MDB update data in C# via sql
I've had help here
Inserting and Updating data to MDB
but still have a problem with update
I have an access mdb file with table "Table1" and 3 colums
ID
INFO
TEXT
I can add new info, find info ...
0
votes
0answers
237 views
Securitydb.mdw security issues
I have an MS ACCESS 2003 database which uses a shortcut, and a securitydb.mdw file. My understanding is that the securitydb.mdw file does something special to the registry of the computer and checks ...
0
votes
2answers
324 views
Has Jet/ACE improved its concurrency and stability issues since JET 3.5?
I am familiar with using JET 3.5 as a backend. There are noticable stability and concurrency issues with this version of the database engine. There is also a 1GB limit on the MDB file.
Has JET (or ...
