active questions tagged jet - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T04:52:19Z http://stackoverflow.com/feeds/tag/jet http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/719115/microsoft-jet-wildcards-asterisk-or-percentage-sign 2 Microsoft Jet wildcards: asterisk or percentage sign? Jan Zich 2009-04-05T15:32:01Z 2009-12-15T09:35:22Z <p>What is the proper multi-character wildcard in the LIKE operator in Microsoft Jet and what setting affects it (if any)? I am supporting an old ASP application which runs on Microsoft Jet (on an Access database) and it uses the % symbol in the LIKE operator, but I have a customer who apparently has problems in his environment because the % character is understood as a regular character, and I assume that his multi-character wildcard is *. Also, I'm almost sure that in the past I have written application with queries using * instead of %. Finally, Microsoft Access (as an application) also works only with * and not % (but I'm not sure how relevant it is).</p> <p>I just spent about 20 minutes searching the Internet without any useful results, and so I thought it would be useful ask on stackoverflow. Somebody may already know it, and it's better to keep the potential answers on stackoverflow than any other random discussion forum anyway.</p> http://stackoverflow.com/questions/153053/microsoft-jet-sql-query-logging-or-how-do-i-debug-my-customers-program 1 Microsoft JET SQL Query Logging or "How do I debug my customer's program?" VVS 2008-09-30T13:40:42Z 2009-12-08T13:06:20Z <h2>The problem:</h2> <p>We use a program written by our biggest customer to receive orders, book tranports and do other order-related stuff. We have no other chance but to use the program and the customer is very unsupportive when it comes to problems with their program. We just have to live with the program.</p> <p>Now this program is most of the time extremely slow when using it with two or more user so I tried to look behind the curtain and find the source of the problem.</p> <h2>Some points about the program I found out so far:</h2> <ul> <li>It's written in VB 6.0</li> <li>It uses a password-protected Access-DB (Access 2000 MDB) that is located a folder on one user's machine.</li> <li>That folder is shared over the network and used by all other users.</li> <li>It uses the msjet40.dll version 4.00.9704 to communicate with access. I guess it's ADO?</li> </ul> <p>I also used <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a> to monitor file access and found out why the program is so slow: it is doing thousands of read operations on the mdb-file, even when the program is idle. Over the network this is of course tremendously slow:</p> <p><img src="http://img217.imageshack.us/img217/1456/screenshothw5.png" alt="Process Monitor Trace" /></p> <h2>The real question:</h2> <p>Is there any way to monitor the queries that are responsible for the read activity? Is there a trace flag I can set? Hooking the JET DLL's? I guess the program is doing some expensive queries that are causing JET to read lots of data in the process.</p> <p>PS: I already tried to put the mdb on our company's file server with the success that accessing it was even slower than over the local share. I also tried changing the locking mechanisms (opportunistic locking) on the client with no success.</p> <p>I want to know what's going on and need some hard facts and suggestions for our customer's developer to help him/her make the programm faster.</p> http://stackoverflow.com/questions/1835727/how-can-i-import-an-excel-spreadsheet-on-a-64-bit-os-using-asp-net 1 How can I import an Excel spreadsheet on a 64 bit OS using ASP.NET? Corey Burnett 2009-12-02T20:52:33Z 2009-12-07T15:21:10Z <p>I wrote an ASP.NET page that imported data from an Excel spreadsheet without any problems. Then I moved it to the server and found out that it didn't work on a 64 bit OS. After some Googling I found that MS does not have nor will it ever have a Jet DB driver for 64 bit OS. Does anyone have any suggestions for a way to easily import data using an ASP.NET page on a 64 bit OS? The client just wants some simple way to bulk import data. Ideally it would be an Excel spreadsheet or a CSV file. Ideally it wouldn't be super complicated. They want the non-technical business users to be able to fill out a spreadsheet (or something similar) and then go to a web page and upload it to the server. If there is no way to do this with a spreadsheet on a 64 bit OS, does anyone have any suggestions?</p> <p>Thanks, Corey</p> http://stackoverflow.com/questions/1839382/nhibernate-jet-replica-database-exception-thrown-when-committing-transaction 0 NHibernate + Jet Replica Database - Exception thrown when committing transaction ("a different object with the same identifier value was already associated with the session). Bittercoder 2009-12-03T11:35:30Z 2009-12-03T11:35:30Z <p>I have an application where we're using NHibernate and the NHibernate Jet Driver to open existing .MDB files (Access 2003 / Jet 4.0 databases), read some information and add some new records.</p> <p>Unfortunately we have no control over the database format - so we're stuck having to support Jet.</p> <p>The problem I'm facing is that when performing an insert it all works fine for a normal database, but if the database has been configured as either a design master or replica, then we get the following exception:</p> <pre><code>"a different object with the same identifier value was already associated with the session: 109, of entity: Data.Models.Tag" at NHibernate.Engine.StatefulPersistenceContext.CheckUniqueness(EntityKey key, Object obj) at NHibernate.Event.Default.AbstractSaveEventListener.PerformSaveOrReplicate(Object entity, EntityKey key, IEntityPersister persister, Boolean useIdentityColumn, Object anything, IEventSource source, Boolean requiresImmediateIdAccess) at NHibernate.Event.Default.AbstractSaveEventListener.PerformSave(Object entity, Object id, IEntityPersister persister, Boolean useIdentityColumn, Object anything, IEventSource source, Boolean requiresImmediateIdAccess) at NHibernate.Event.Default.AbstractSaveEventListener.SaveWithGeneratedId(Object entity, String entityName, Object anything, IEventSource source, Boolean requiresImmediateIdAccess) at NHibernate.Event.Default.DefaultSaveOrUpdateEventListener.SaveWithGeneratedOrRequestedId(SaveOrUpdateEvent event) at NHibernate.Event.Default.DefaultSaveOrUpdateEventListener.EntityIsTransient(SaveOrUpdateEvent event) at NHibernate.Event.Default.DefaultSaveOrUpdateEventListener.PerformSaveOrUpdate(SaveOrUpdateEvent event) at NHibernate.Event.Default.DefaultSaveOrUpdateEventListener.OnSaveOrUpdate(SaveOrUpdateEvent event) at NHibernate.Impl.SessionImpl.FireSaveOrUpdate(SaveOrUpdateEvent event) at NHibernate.Impl.SessionImpl.SaveOrUpdate(String entityName, Object obj) at NHibernate.Engine.CascadingAction.SaveUpdateCascadingAction.Cascade(IEventSource session, Object child, String entityName, Object anything, Boolean isCascadeDeleteEnabled) at NHibernate.Engine.Cascade.CascadeToOne(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled) at NHibernate.Engine.Cascade.CascadeAssociation(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled) at NHibernate.Engine.Cascade.CascadeProperty(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled) at NHibernate.Engine.Cascade.CascadeCollectionElements(Object child, CollectionType collectionType, CascadeStyle style, IType elemType, Object anything, Boolean isCascadeDeleteEnabled) at NHibernate.Engine.Cascade.CascadeCollection(Object child, CascadeStyle style, Object anything, CollectionType type) at NHibernate.Engine.Cascade.CascadeAssociation(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled) at NHibernate.Engine.Cascade.CascadeProperty(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled) at NHibernate.Engine.Cascade.CascadeOn(IEntityPersister persister, Object parent, Object anything) at NHibernate.Event.Default.AbstractFlushingEventListener.CascadeOnFlush(IEventSource session, IEntityPersister persister, Object key, Object anything) at NHibernate.Event.Default.AbstractFlushingEventListener.PrepareEntityFlushes(IEventSource session) at NHibernate.Event.Default.AbstractFlushingEventListener.FlushEverythingToExecutions(FlushEvent event) at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) at NHibernate.Impl.SessionImpl.Flush() at NHibernate.Transaction.AdoTransaction.Commit() </code></pre> <p>I've read a little bit about the internals of replication, where some people suggest that replicated tables have extra columns or randomised identifiers, but I was under the impression most of the behaviour would be transparent to consuming applications?</p> <p>Anybody have any suggestions on how to work around this / fix this problem?</p> http://stackoverflow.com/questions/1822504/determine-existence-of-results-in-jet-sql 1 Determine existence of results in jet SQL? des4maisons 2009-11-30T21:26:55Z 2009-11-30T23:40:03Z <p>In Jet, I want to test if certain conditions return any results.</p> <p>I want a query which returns exactly one record: "true" if there are any results, "false" otherwise.</p> <p>This works in MS SQL:</p> <pre><code>SELECT CASE WHEN EXISTS(SELECT * FROM foo WHERE &lt;some condition&gt;) THEN 1 ELSE 0 END; </code></pre> <p>This is what I have tried in Jet:</p> <pre><code>SELECT IIF(EXISTS(SELECT * FROM foo WHERE &lt;some condition&gt;), 0, 1); </code></pre> <p>which gives me the error:</p> <pre><code>Reserved error (-3025); there is no message for this error. </code></pre> <p>Any ideas?</p> <p><strong>NOTE</strong> I don't want to select "true" multiple times by tacking on a FROM clause at the end, because it could be slow (if the FROM table had many records) or undefined (if the table had 0 records).</p> http://stackoverflow.com/questions/1628267/autonumber-value-of-last-inserted-row-ms-access-vba 2 Autonumber value of last inserted row - MS Access / VBA a_m0d 2009-10-27T01:18:27Z 2009-11-27T12:35:42Z <p>I have a JET table with an auto-number as the primary key, and I would like to know how I can retrieve this number after inserting a row. I have thought of using MAX() to retrieve the row with the highest value, but am not sure how reliable this would be. Some sample code:</p> <pre><code>Dim query As String Dim newRow As Integer query = "INSERT INTO InvoiceNumbers (date) VALUES (" &amp; NOW() &amp; ");" newRow = CurrentDb.Execute(query) </code></pre> <p>Now I know that this wouldn't work, since <code>Execute()</code> won't return the value of the primary key, but this is basically the kind of code I am looking for. I will need to use the primary key of the new row to update a number of rows in another table.</p> <p>What would be the simplest / most readable way of doing this?</p> http://stackoverflow.com/questions/1779553/is-jet-database-engine-included-in-windows-xp-vista-and-windows7 2 Is Jet database engine included in Windows xp, vista and Windows7? bill seacham 2009-11-22T18:41:17Z 2009-11-24T19:44:37Z <p>I need a data store for single-user, read-only access. I need multiple tables, but not related. I also need to do two-column indexing. Seems like Jet is a good choice. Front end will be either VB or C#. The data is not user-entered data, but meta data about users and external files. What are the deployment issues for Jet -is it built into all Windows OS versions from xp onward? I plan on including the Access Database in the resource file. </p> http://stackoverflow.com/questions/1772559/scaleable-ms-access-asp-net-app 0 Scaleable MS Access ASP.NET app BahaiResearch.com 2009-11-20T18:55:49Z 2009-11-20T19:19:21Z <p>I am constrained by the following, no way around it:</p> <p>1) Read-Only Data: Microsoft Access 2) JET 4.0 OLDB 3) ASP.NET 2.0 4) Shared Host, very little control. 5) OR Mapper - LLBL Gen Pro</p> <p>The app is a read-only tool that reads a lot of Microsoft Access Databases in the APP_Data folder. Works fine mostly.</p> <p>Under load it starts failing accessing the Access MDBs.</p> <p>What is the best strategy for accessing the Access MDBs to limit errors in accessing them? Right now I try, then Thread.Sleep(500) on an error then try again.</p> http://stackoverflow.com/questions/1763228/access-jet-equivalent-of-oracles-decode 1 Access/jet equivalent of Oracle's decode René Nyffenegger 2009-11-19T13:17:33Z 2009-11-19T14:46:25Z <p>Is there an equivalent for Oracle's decode() in Access (or Jet, for that matter).</p> <p>The problem I am facing is: I should sort (order) a resultset based basically upon a status and a date (with all records having status = 2) at the end.</p> <p>In Oracle I'd go something like</p> <pre><code>select ... from ... where .. order by decode(status, 2, 0, 1), date_column </code></pre> http://stackoverflow.com/questions/1719278/oledbexception-too-many-fields-defined 0 OleDbException: Too many fields defined Chad 2009-11-12T01:26:50Z 2009-11-12T01:26:50Z <p>Strange error that just started happening.</p> <p>I have the following bit of code to read the first sheet of an .xls into a dataset</p> <pre><code> DataSet myDataSet = new DataSet(); string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + workingFilePath + ";Extended Properties='Excel 8.0;HDR=No;IMEX=1;'"; // Fill the Dataset OleDbDataAdapter myCommand = new OleDbDataAdapter("SELECT * FROM [" + GetExcelSheetNames(strConn)[sheetNumber] + "]", strConn); myCommand.Fill(myDataSet); </code></pre> <p>It was working up until recently. The excel file is quite small. Only 12 columns and 40 rows, mostly numbers.</p> <p>Any thoughts as to what this could be?</p> http://stackoverflow.com/questions/899655/how-to-get-the-name-of-constraint 0 How to get the name of Constraint? Madhu kiran 2009-05-22T19:45:05Z 2009-11-09T05:35:42Z <p>Hi, I am using MS Access Database and trying to full data from C# 2.0. How can i get the constriant name (Eg: name of Primarykey not the field name of primary key) using ADOX.</p> <p>Thanks in advance Madhu</p> http://stackoverflow.com/questions/1663964/what-is-the-fastest-method-for-importing-from-the-active-sheet-in-excel-to-sql-se 1 What is the fastest method for importing from the active sheet in Excel to SQL Server? Kuyenda 2009-11-02T21:53:52Z 2009-11-02T22:31:34Z <p>What is the fastest way to import data into a SQL Server database directly from the active worksheet in Excel?</p> <p>I have had great success simply looping through the rows and columns, generating a SQL string, opening an ADODB.Connection and executing the SQL. That solution, however, is too slow for large datasets.</p> <p>So I am testing the Jet Provider with ADO. It's definitely faster, but it requires that the workbook be saved, and I cannot require the user to save the workbook before uploading from it.</p> <p>The following code works if the workbook has been saved, but if ActiveWorkbook has never been saved ActiveWorkbook.Path returns a null string and the code fails.</p> <pre><code>Sub UploadViaJet() Dim objADO As New ADODB.Connection Dim strSQL As String Dim lngRecsAff As Long Set objADO = New ADODB.Connection objADO.Open "Provider=Microsoft.Jet.OLEDB.4.0;" &amp; _ "Data Source=" &amp; ActiveWorkbook.Path &amp; _ "\" &amp; ActiveWorkbook.Name &amp; ";" &amp; _ "Extended Properties=Excel 8.0" strSQL = "SELECT * INTO [odbc;Driver={SQL Server};" &amp; _ "Server=&lt;server&gt;;Database=&lt;database&gt;;" &amp; _ "UID=&lt;UID&gt;;PWD=&lt;PWD&gt;].test_table " &amp; _ "FROM [" &amp; ActiveSheet.Name &amp; "$]" objADO.Execute strSQL, lngRecsAff, adExecuteNoRecords End Sub </code></pre> <p>Is there a simpler and faster way to do this?</p> http://stackoverflow.com/questions/1216459/cpu-stuck-at-100-on-customer-pc-any-debugging-suggestions 3 CPU Stuck at 100% on Customer PC, any debugging suggestions? TheAgent 2009-08-01T11:50:12Z 2009-10-31T12:17:23Z <p>Hi all.</p> <p>I'm having a dead-end situation with one of the clients using my software. Out of about 40 copies of our product sold (Application programmed in .NET 2.0 using VB.NET 2005), about 2 get non-responsive with 1 core of the dual core CPUs stuck at 100% (program uses 1 core only)</p> <p>The most logical guess is an infinite loop causing this behavior, but the are thousands of lines of code with many, many loops. That is all the information I've got; now, how do you suggest I approach debugging this problem?</p> <p>EDIT: Basically, the software is responsible for calculating amount of credit spent using other devices, such as PCs, etc. It is a Cybercafe management program and fails intermittently i.e. it is subtracting credit when is fails. It does other things in the background too, like checking to see if it is time to create a database backup, among other things.</p> <p>EDIT: Solved. It was the most unlikely problem. The Access Database Engine which I used as the DBMS is actually the part of my application that is problematic. It has difficulty working with a row-JUST ONE FRIGGIN ROW-in one of the tables. I can't delete it, or otherwise add a record related to that row in any other table; Even MS Access 2007 causes the CPU to go up to 100% when I try to work with that row!</p> <p>A simple "Compact and Repair" command fixed everything. I guess I'll issue that command every time my application starts up. That would prevent this from happening again.</p> <p>Thanks to WinDbg I could find where the problem was. I recommend everyone to learn how to use it 'cause it's a real time saver.</p> http://stackoverflow.com/questions/595132/how-to-get-id-of-newly-inserted-record-using-excel-vba 2 How to get id of newly inserted record using Excel VBA? Lunatik 2009-02-27T15:07:59Z 2009-10-27T20:20:25Z <p>Seems a common enough problem this, but most solutions refer to concatenating multiple SQL commands, something which I believe can't be done with ADO/VBA (I'll be glad to be shown wrong in this regard however).</p> <p>I currently insert my new record then run a select query using (I hope) enough fields to guarantee that only the newly inserted record can be returned. My databases are rarely accessed by more than one person at a time (negligible risk of another insert happening between queries) and due to the structure of the tables, identifying the new record is normally pretty easy.</p> <p>I'm now trying to update a table that does not have much scope for uniqueness, other than in the artificial primary key. This means there is a risk that the new record may not be unique, and I'm loathe to add a field just to force uniqueness.</p> <p>What's the best way to insert a record into an Access table then query the new primary key from Excel in this situation?</p> <p>Thanks for the replies. I have tried to get <code>@@IDENTITY</code> working, but this always returns 0 using the code below.</p> <pre><code>Private Sub getIdentityTest() Dim myRecordset As New ADODB.Recordset Dim SQL As String, SQL2 As String SQL = "INSERT INTO tblTasks (discipline,task,owner,unit,minutes) VALUES (""testDisc3-3"",""testTask"",""testOwner"",""testUnit"",1);" SQL2 = "SELECT @@identity AS NewID FROM tblTasks;" If databaseConnection Is Nothing Then createDBConnection End If With databaseConnection .Open dbConnectionString .Execute (SQL) .Close End With myRecordset.Open SQL2, dbConnectionString, adOpenStatic, adLockReadOnly Debug.Print myRecordset.Fields("NewID") myRecordset.Close Set myRecordset = Nothing End Sub </code></pre> <p>Anything stand out being responsible?</p> <p>However, given the caveats helpfully supplied by Renaud (below) there seems nearly as much risk with using <code>@@IDENTITY</code> as with any other method, so I've resorted to using <code>SELECT MAX</code> for now. For future reference though I would be interested to see what is wrong with my attempt above.</p> http://stackoverflow.com/questions/891873/how-to-read-xml-spread-sheet 0 How to Read xml spread sheet Cshah 2009-05-21T08:19:06Z 2009-10-27T05:29:12Z <p>Hi All, I have a 3rd Party tool that generates an xml spreadsheet (*.xls). I have another program that reads this spreasheet and processes it. The content of the generated xml spreadsheet is a table with 5 columns and my program runs select queries on them. I m facing an issue while opening a connection to the generated spreadsheet. It says "{"External table is not in the expected format."}". My Connectin string is "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + excelFileName + ";Extended Properties=\"Excel 8.0;HDR=YES;\""; Do i need to change anything to this string ? I tried using a dataset and calling dataSet.ReadXml(excelFileName); But the dataset doesnt contain my table. Any inputs on how to read an xml spreadsheet ?</p> <p>Thanks for your time, CS</p> http://stackoverflow.com/questions/1618021/why-msjetoledb40-dll-is-missing-in-windows-2008-core-32-bit-and-r2-as-well 0 Why Msjetoledb40.dll is missing in Windows 2008 core - 32 bit and R2 as well? amritad 2009-10-24T13:33:36Z 2009-10-24T13:33:36Z <p>Hello,</p> <p>I am working on Windows 2008 core R2 and 32 bit. While running application in which I am trying to connect to .mdb file by ADODB connection and using provider as 'Microsoft Jet Provider 4.0' . To get the connection done Msjetoldb40.dll is necessary. But it is not present in Windows 2008 core R2 and 32-bit ( which is of only command prompt).</p> <p>Is there any reason that Microsoft has moved this dll from system32 folder.</p> http://stackoverflow.com/questions/1596840/formatting-results-using-sql-select-with-jet 0 formatting results using sql select with jet NJChim 2009-10-20T19:37:53Z 2009-10-20T21:13:45Z <p>I have data in Excel files that I am pulling out using the MS Jet OLEDB provider. The results of my select are being passed into a component that I cannot change to generate an html table on the fly. Some of my data files contain numbers that I need formatted with commas (#,###). As I said I cannot change the output component to format the string for me. Is there a way I can format my results during my select statement. I have tried a bunch of different things but nothing has worked. </p> <p>Here is an example select where I need to format enrollment...</p> <pre><code>select [SCHOOL NAME], [ENROLLMENT], [STUDENT / TEACHER RATIO] from [Public School Districts$] where [ENROLLMENT]&lt;&gt;null </code></pre> <p>Any help would be greatly appreciated!</p> http://stackoverflow.com/questions/1574213/vba-querying-access-with-excel-why-so-slow 0 VBA: Querying Access with Excel. Why so slow? Dan 2009-10-15T18:30:04Z 2009-10-20T15:03:49Z <p>I found this code online to query Access and input the data into excel (2003), but it is much slower than it should be:</p> <pre><code>Sub DataPull(SQLQuery, CellPaste) Dim Con As New ADODB.Connection Dim RST As New ADODB.Recordset Dim DBlocation As String, DBName As String Dim ContractingQuery As String If SQLQuery = "" Then Else DBName = Range("DBName") If Right(DBName, 4) &lt;&gt; ".mdb" Then DBName = DBName + ".mdb" DBlocation = ActiveWorkbook.Path If Right(DBlocation, 1) &lt;&gt; "\" Then DBlocation = DBlocation + "\" Con.ConnectionString = DBlocation + DBName Con.Provider = "Microsoft.Jet.OLEDB.4.0" Con.Open Set RST = Con.Execute(SQLQuery) Range(CellPaste).CopyFromRecordset RST Con.Close End If End Sub </code></pre> <p>The problem is that this code takes very long. If I open up Access and just run the query in there it takes about 1/10th the time. Is there anyway to speed this up? Or any reason this might be taking so long? All my queries are simple select queries with simple where statements and no joins. Even a "select * from [test]" query takes much longer than it should.</p> <p>EDIT: I should specify that the line "Range(CellPaste).CopyFromRecordset RST" was the one taking a long time.</p> http://stackoverflow.com/questions/862803/specify-mdw-file-in-embedded-connection-string-to-another-jet-mdb-possible 0 Specify mdw file in embedded connection string to another Jet mdb: possible? onedaywhen 2009-05-14T11:24:20Z 2009-10-16T09:40:18Z <p>I can use the following syntax in a Jet (mdb) query to select data from another .mdb file:</p> <pre><code>SELECT * FROM [Database=C:\Tempo\AnotherDB.mdb;].MyTable </code></pre> <p>alternatively</p> <pre><code>SELECT * FROM MyTable IN 'C:\Tempo\Another.mdb' </code></pre> <p>I want to extend this to use workgroup security a.k.a. User Level Security (ULS). I know how to specify a userID and password e.g. </p> <pre><code>SELECT * FROM [Database=C:\Tempo\AnotherDB.mdb;UID=Admin;PWD=***;].MyTable </code></pre> <p>but this only works when both mdb's share the same mdw. </p> <p>How would I specify the path of the mdw file used to secure the other mdb? Is it possible? If not, why not?</p> <p>P.S. I asked this question many years ago in <a href="http://groups.google.co.uk/group/microsoft.public.access.gettingstarted/browse%5Ffrm/thread/d0ec3f550268257d/" rel="nofollow">this Access newsgroup post</a> but received no reply. I gave up after an Access MVP convinced me it was not possible; I don't recall the details but it was something to do with the underlying architecture (a workspace supports only one workgroup file and there is no mechanism for a Jet query to instantiate a new workspace? something like that anyway). </p> <p>My renewed interest has been sparked by <a href="http://stackoverflow.com/questions/850596/how-do-i-chain-linked-tables-in-access/854633#854633">this SO comment</a>.</p> http://stackoverflow.com/questions/1569608/how-do-i-escape-all-special-characters-in-access-jet-sql 1 How do I escape all special characters in Access Jet SQL? DGM 2009-10-14T23:50:15Z 2009-10-16T07:23:46Z <p>I'm trying to change a password with a DDL statement like:</p> <pre><code>CurrentProject.Connection.Execute "ALTER USER barney PASSWORD "[]!@#$%^ oldpassword" </code></pre> <p>Yes, that's a nasty password, but someone tried something like that. Notice the beginning quote of the password is not part of the sql syntax here. I need something like <code>mysql_real_escape_string()</code> but for VBA. Any hints?</p> http://stackoverflow.com/questions/1551276/need-jet-4-0-drivers 0 Need JET 4.0 Drivers hmcclungiii 2009-10-11T17:51:29Z 2009-10-11T22:20:25Z <p>I am using an ExcelProvider with Microsoft.Jet.OLEDB.4.0 and am getting the Cannot Find Installable ISAM from the production machine. Windows Server 2003.</p> <p>I've searched and search for this download. I've Office installed on the Dev machine, so I'm sure that's why it works fine on my end. But I can't install Office on the Production machine.</p> http://stackoverflow.com/questions/1519288/jet-engine-255-character-truncation 0 Jet Engine - 255 character truncation Graeme 2009-10-05T10:28:03Z 2009-10-05T10:59:04Z <p>Hi, </p> <p>I'm needing to import an Excel spreadsheet into my program and have the following code:</p> <pre><code>string connectionString = String.Format(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties=""Excel 8.0;IMEX=1;HDR=NO;""", MyExcelFile.xls); command.CommandText = "SELECT * FROM [Sheet1$]"; </code></pre> <p>(Note, code above isn't real code but should let you see what I'm doing)</p> <p>I'm getting the file imported, only problem is any columns in the Excel sheet which are over 255 characters are being truncated.</p> <p>Is there any way around this happening? </p> <p>I read somewhere that if you make sure there is a long line of text in the column within the first 8 rows, then it will be treated as a memo field and therefore not truncated but that didn't seem to work.</p> <p>Any ideas?</p> <p>Graeme</p> http://stackoverflow.com/questions/1491987/checking-an-access-file-via-java-and-mailing-for-a-specific-row 0 checking an access file via java and mailing for a specific row Hellnar 2009-09-29T11:34:22Z 2009-09-29T14:35:27Z <p>Hello I need to write a program that checks a access .mdb file and when a specific row is added (say the "name" field column of the newly added a row that contains a specific string, it should send an email to a specific address.</p> <p>For this I am planning to use "Jackcess" library for reading the mdb file and "Apache's commons-email library" for SMTP mailing. However I am not sure which library of Java can be used to execute this "row check" every X time.</p> <p>Thanks</p> http://stackoverflow.com/questions/1431498/equivalent-of-excels-networkdays-function-with-jet-ado 0 Equivalent of Excel’s NETWORKDAYS function with Jet ADO Lunatik 2009-09-16T07:31:05Z 2009-09-18T10:11:53Z <p>Excel's NETWORKDAYS function returns the net working days between two dates. Is there a way of replicating this when connecting to a Jet database via ADO?</p> http://stackoverflow.com/questions/1433432/jet-error-3011-when-opening-a-file-with-2-extensions 1 Jet error 3011 when opening a file with 2 "extensions" Corazu 2009-09-16T14:42:10Z 2009-09-17T04:59:46Z <p>I'm having a problem with Jet throwing error 3011 when I try to use it to open a file with 2 "extensions" ("filename.tst.csv").</p> <blockquote> <p>Run-time error '3011'</p> <p>The Microsoft Jet database engine could not find the object 'filename.tst.csv'. Make sure the object exists and that you spell its name and the path name correctly.</p> </blockquote> <p>Where the code looks like this:</p> <pre><code>Dim db as Database, rs as Recordset Set db = OpenDatabase("SELECT TOP 1 * FROM [" &amp; fileName &amp; "];") Set rs = db.OpenRecordset("SELECT TOP 1 * FROM [" &amp; fileName &amp; "];") </code></pre> <p>I've tracked down the problem to be the second extension (or apparent extension) ".tst" but I'm not sure why the error is occurring and I haven't been able to find an answer through Google or through here - but I figure someone might have some insight as to the limitations.</p> <p>This is using DAO 3.6 in VB6.</p> http://stackoverflow.com/questions/1435270/jet-and-odbc-driver-missing-can-not-get-data-from-mdbs 0 JET and ODBC driver missing, can not get data from MDBs Andrew Arace 2009-09-16T20:26:21Z 2009-09-16T21:14:29Z <p>These are MY symptoms: (XP Pro, 32bit)<br /> -Programs that access .mdb databases (aside from Access 2007 itself) can not get any data.<br /> -Using the Data Sources in Visual Studio 2008 to connect to an MDB shows tables, but you can not query. you receive "Unknown Error" from the Microsoft JET Database Engine<br /> -ArcCatalog can not read a personal geodatabase (mdb), after opening the database it has no feature classes within it<br /> -Trying to bring up the properties of a User DSN "MS Access Database" in the ODBC Data Source Administrator returns error<br /> "The setup routines for the Microsoft Access Driver (*.mdb, *.accdb) ODBC driver could not be found. Please reinstall the driver." </p> <p>I attempted to reinstall latest MDAC (by setting it to compatibility mode of windows 2000) and latest JET driver. Reinstalled XP SP3.<br /> Also tried a lot of regsvr32 gymnastics with the dao350.dll and dao360.dll, uninstalled the dao350, etc, etc. Nothing worked.</p> http://stackoverflow.com/questions/1420778/configure-asp-net-to-use-x86-on-x64-windows 1 Configure ASP.NET to use x86 on x64 Windows Robert MacLean 2009-09-14T10:36:15Z 2009-09-14T14:09:57Z <p>I am trying to deploy <a href="http://galmod.codeplex.com/" rel="nofollow">GAL Modifier</a>, which is an ASP.NET website which uses Microsoft Access on a Windows 2003 x64 machine. However there is no JET driver on x64 (see <a href="http://social.msdn.microsoft.com/Forums/en-US/netfx64bit/thread/4ff1791f-3bc8-4716-a15a-356206d750ba" rel="nofollow">here</a>), so the change is to use change the target CPU to x86. </p> <p>However as it is a web site there is no option in Visual Studio except Any CPU, so how can I change the settings to force it to use x86?</p> http://stackoverflow.com/questions/1343231/what-is-the-microsoft-jet-database-and-is-it-appropriate-for-a-small-app-with-sen 2 What is the Microsoft Jet database and is it appropriate for a small app with sensitive information? Jade M 2009-08-27T19:14:02Z 2009-09-01T14:06:07Z <p>Hi all,</p> <p>I'm planning a new ASP.NET project that will become a product that is installed by techinical staff that work in various companies. The program will be storing sensitive information that shouldn't be easily accessible to staff including the technical staff.</p> <p>I need to balance an easy straight forward installation with security and reliability. The default db these days seems to be MS SQL for C# developers but some companies that will be installing this may not have their own SQL server so someone has suggested I use Microsoft JET database. What is MS JET is it a product or a technology? The database will be quite basic just a couple of tables, I don't need all the power of SQL, are there any db suitable that don't require an installation like SQL (i.e. a simple file)?</p> <p>Thanks J</p> http://stackoverflow.com/questions/1306436/best-way-to-process-a-large-database 1 Best way to process a large database? Matthew Scharley 2009-08-20T14:05:57Z 2009-08-21T06:03:41Z <h2>Background:</h2> <p>I have one Access database (.mdb) file, with half a dozen tables in it. This file is ~300MB large, so not <em>huge</em>, but big enough that I want to be efficient. In it, there is one major table, a client table. The other tables store data like consultations made, a few extra many-to-one to one fields, that sort of thing.</p> <h2>Task:</h2> <p>I have to write a program to convert this Access database to a set of XML files, one per client. This is a database conversion application.</p> <h2>Options:</h2> <p>(As I see it)</p> <ol> <li><p>Load the entire Access database into memory in the form of <code>List</code>'s of immutable objects, then use Linq to do lookups in these lists for associated data I need.</p> <ul> <li>Benefits: <ul> <li>Easy parallelised. Startup a <code>ThreadPool</code> thread for each client. Because all the objects are immutable, they can be freely shared between the threads, which means all threads have access to all data at all times, and it is all loaded exactly once.</li> </ul></li> <li>(Possible) Cons: <ul> <li>May use extra memory, loading orphaned items, items that aren't needed anymore, etc.</li> </ul></li> </ul></li> <li><p>Use Jet to run queries on the database to extract data as needed.</p> <ul> <li>Benefits: <ul> <li>Potentially lighter weight. Only loads data that is needed, and as it is needed.</li> </ul></li> <li>(Possible) Cons: <ul> <li>Potentially heavier! May load items more than once and hence use <strong>more</strong> memory.</li> <li>Possibly hard to paralellise, unless Jet/OleDb supports concurrent queries (can someone confirm/deny this?)</li> </ul></li> </ul></li> <li><p>Some other idea?</p></li> </ol> <p>What are StackOverflows thoughts on the best way to approach this problem?</p> http://stackoverflow.com/questions/1280021/in-ms-access-is-it-possible-to-execute-multiple-queries 0 In MS Access, is it possible to execute multiple queries? johnnyboy 2009-08-14T20:29:28Z 2009-08-14T20:38:22Z <p>I'm trying to execute a statement like:</p> <p><code>UPDATE table1 SET name="Joe" WHERE id='1'; UPDATE table2 SET name="Bob" WHERE id='2'</code></p> <p>But, when executing the query, I get:</p> <blockquote>Microsoft JET Database Engine error '80040e14' Characters found after end of SQL statement.</blockquote> <p>It works when I execute the statements separately, though.</p> <p>So I'm guessing there's absolutely no way to execute multiple queries in a single SQL statement when using Microsoft Access/JET database engine?</p>