onedaywhen
|
Registered User
|
.NET SQL.
|
|
10h |
comment |
Concatenate rows into 1 - access 2007 +1 Not only does Standard SQL not have a concatenate set function but the Access Database Engine doesn't have one either, and for good reason too... |
|
10h |
comment |
Concatenate rows into 1 - access 2007 An ADODB Recordset has built in support for this e.g. strList = rs.GetString(RowDelimeter:=strDelim) |
|
14h |
comment |
How do I query a property on a record source for a Access 2002 report in code? @David W. Fenton: Trying to get your attention here: I've raised the issue of retagging MS-Access to MS-Jet-ACE on meta: meta.stackoverflow.com/questions/33216/… |
|
14h |
comment |
C# Issue: What is the simplest way for me to load a .MDB file, make changes to it, and save the changes back to the original file? @Remou @David W. Fenton: I've raised this issue on meta: meta.stackoverflow.com/questions/33216/… |
|
15h |
comment |
How to extract the schema of an Access (.mdb) database? "Access doesn't have SQL" sure it does e.g. look in MSDN for "Access SQL Reference" e.g. msdn.microsoft.com/en-us/library/… |
|
16h |
comment |
Will the .Net Entity Framework work with a .mdb? @Ryan Michela: Using 'relational database' for a single user app is probably overkill (not that the Access Database Engine is anything like truly relational). |
|
16h |
comment |
MS Access 2003 - Customized Auto-Number IDs for tables? Again, there nothing in the question to suggest the context is anything other than the Access Database Engine. Second, your use of word 'appropriate' is subjective i.e. biased towards your own personal preferences. All the advice I've seen from Microsoft and the Access Team either favours ADO over DAO or favours them both equally. Third, the overlap is much less than 99% (for ADO think the Jet 4.0 feature set plus fabrciated/hierarchical/disconnected asychronous-fetching, batch-updating, saved-as-XML recordsets etc). 99% of the features that 80% of users use, perhaps. |
|
1d |
answered | Filtering using the JOIN instead of WHERE |
|
1d |
comment |
Accessing an Access DB from Outlook via VBA Isn't the correct cursor type adOpenDynamic in this case? "If you create a recordset based on a SQL string using ADO, specify the adOpenDynamic CursorType value if possible. Because Jet doesn't support dynamic cursors..., Jet handles this specifically, giving the best performance with SQL strings. It seems odd, using a constant supporting a specific cursor type that Jet can't handle to get the best performance with SQL strings, but that's how this particular constant has been mapped internally." (msdn.microsoft.com/en-us/library/…) |
|
1d |
revised |
Accessing an Access DB from Outlook via VBA retag |
|
1d |
comment |
MS Access 2007 sql functions? @David W. Fenton: "what's a 'real SQL function'" -- presumably one that can be defined using Standard SQL/PSM CREATE FUNCTION (e.g. postgres.cz/index.php/SQL/PSM_Manual) or similar proprietary SQL syntax (e.g. msdn.microsoft.com/en-us/library/…). |
|
1d |
comment |
MS Access: searching a column for a star/asterisk ...doesn't conform to Standards and is largely undocumented by the Access Team makes it hard to have a discussion on :( |
|
1d |
comment |
MS Access: searching a column for a star/asterisk In Standard SQL, the predicate NULL LIKE '%*%' would evaluate to UNKNOWN (being a logical value). However, for the Access Database Engine treats the result as NULL (being a data value) e.g. SELECT DISTINCT INSTR(NULL, CHR(42)) FROM Calendar; returns the NULL value. Another example of how the Access Database Engine's implementation of three valued logic does not conform to Standards is that you can't cast NULL to a data type e.g. SELECT DISTINCT CLNG(NULL) FROM Calendar; causes an error. |
|
1d |
comment |
MS Access: searching a column for a star/asterisk @David W. Fenton: "Null is not a value" -- oh dear. Have you not heard the expression "the NULL value"? I use it all the time! In Standard SQL and early relational theory NULL is a data value and UNKNOWN is a logical value (three valued logic, that is). NULL and UNKNOWN are not the same! Here's some reading for you: dbazine.com/ofinterest/oi-articles/… |
|
1d |
comment |
How do I implement pagination in SQL for MS Access? @David W. Fenton: "Look for Smileys, grins, and other 'Emoticons'. When you see one, the preceding statement was not meant to be really serious, don't take it as such." |
|
1d |
comment |
OleDbCommand can’t excute this command, Why? @David W. Fenton: Access's ANSI-89 Query Mode's implementation of derived tables is itself evil. Note that "SQL-89" refers to a SQL Standard' and that the Access parlance is ANSI-89. Also note that Standard SQL uses double quotes (ascii code 0034) rather than square brackets to escape keywords so alluding to SQL Standards here is inappropriate. |
|
1d |
comment |
MS Access: searching a column for a star/asterisk @David W. Fenton -- nice work :) |
|
1d |
revised |
MS Access 2003 - Customized Auto-Number IDs for tables? Added link to equivalent DAO article |
|
1d |
comment |
MS Access 2003 - Customized Auto-Number IDs for tables? First, there nothing in the question to suggest the context is anything other than the Access Database Engine. Second, "technologies that one really shouldn't need" and "the ADO version is pretty much irrelevant" are merely argumentative: ADO vs DAO and all that. Do you really want to go through all that again? |
|
2d |
comment |
MS-Access - why can’t this update query fill empty cells? @David W. Fenton: As an apparent NULL value apologist, do you think it's a good idea to replace all appearances of the NULL value with another magic value such as a question mark? |
|
2d |
comment |
Remove Authentication From Microsoft Access @David W. Fenton: BTW keep up the good work in comments: name calling, profanity, resisting the stackoverflow community spirit, waging a one man war against the incorrect useage of word 'Access', etc. All highly entertaining and I'm sure will pay dividends any day soon ;) |
|
2d |
comment |
Remove Authentication From Microsoft Access @David W. Fenton -- I think don't that Access should be considered an application development platform for stackoverflow purposes. I'd like stackoverflow to be reserved for true software engineers and I'd like to have MS Office 'power users', 'devs', etc to be excluded. It turns out I don't get to set the rules either but I strive to participate in the community. |
|
2d |
comment |
How do I implement pagination in SQL for MS Access? @David W. Fenton: You are describing a problem that was solved years ago by ISO/ANSI Standard SQL. If the Access Database Engine doesn't support Standards then skills aren't transferrable so the code gets ported at the earliest opportunity. I imagine those application that remain unportable represent good business for Access specialist such as yourself which is presumably why your don't write portable code ;) |
|
2d |
comment |
How to select a row based on a max count? (using standard sql) FWIW the SQL-99 Standard has the ROW_NUMBER() OVER (ORDER BY..) syntax as an alternative for the proprietary TOP N syntax. |
|
2d |
comment |
How to select a row based on a max count? (using standard sql) @David W. Fenton: Standard SQL usually means ISO/ANSI SQL Standards to which all SQL products -- even the Access Database Engine in the Jet 4.0 era -- pay a high regard to. On the other hand, "standard Jet/ACE SQL" is a phrase you just invented ;) |
|
2d |
comment |
How to select a row based on a max count? (using standard sql) @David W. Fenton: the question's title states, "using standard sql." And if you believe the Access Help (which I don't), the Access Database Engine does support the CREATE TEMPORARY TABLE syntax (office.microsoft.com/en-gb/access/…) ;) |
|
2d |
comment |
MS Access: searching a column for a star/asterisk "Technically speaking, all non-zero values should return TRUE" -- Perhaps we need a name for someone who doesn't understand the NULL value in SQL ;) |
|
2d |
revised |
Optimize SQL SELECT for 4000 searches, into Excel by VBA Added general example |
|
2d |
comment |
MS Access: searching a column for a star/asterisk I usually do but the differences aren't relevant here: all you need to know is that ALIKE treats the * character as a literal. For more details see me other answers e.g. stackoverflow.com/questions/719115/… |
|
2d |
revised |
Microsoft Jet wildcards: asterisk or percentage sign? ALIKE not officially supported. |
|
2d |
comment |
MS-Access - why can’t this update query fill empty cells? Feel free to use the existing term TRDBMS or 'truly relational'. It used to be just RDBMS but that term is now so widely (and arguably erroneously) applied to SQL DBMS products that the word 'truly' is required as a qualifier. |
|
2d |
comment |
OleDbCommand can’t excute this command, Why? Not only Access SQL but ODBC and ISO/ANSI Standard SQL from SQL-92 onwards. |
|
Dec 14 |
answered | MS Access 2003 - Customized Auto-Number IDs for tables? |
|
Dec 14 |
revised |
Numbers with leading zeroes, using vb6 Concatenation is 'expensive'; also formatting. |
|
Dec 14 |
revised |
Max and Min Time query Retag |
|
Dec 14 |
answered | MS-Access - why can’t this update query fill empty cells? |
|
Dec 14 |
answered | what are the various other programs using which i can connect to odbc database besides ms-access. |
|
Dec 14 |
comment |
How to select a row based on a max count? (using standard sql) The TOP keyword is not Standard SQL. |
|
Dec 14 |
comment |
Characters found after end of SQL statement VBA code Access 2007 @David W. Fenton: "it can't support multiple SQL statements because Jet/ACE is not a server database engine" -- please explain further, or provide a citation for this. Using ADODB Recordset's UpdateBatch works for the Access Database Engine (hint: it uses optimistic file locking). I fail to see why can't the engine support this functionality natively, so I suspect its just the usual story i.e. putting investment into SQL Server instead. |
|
Dec 14 |
comment |
Characters found after end of SQL statement VBA code Access 2007 @David W. Fenton: "because there is no server-side process to serialize SQL statements and interleave requests from multiple users" -- why do you think it needs one. You can do this client side e.g. using a ADODB Recordset with a batch optimistic locking, make changes then UpdateBatch. This has been supported from at least Jet 4.0. Why do you think this model shouldn't work? |
|
Dec 14 |
answered | MS Access: searching a column for a star/asterisk |
|
Dec 14 |
answered | Optimize SQL SELECT for 4000 searches, into Excel by VBA |
|
Dec 11 |
revised |
Remove Authentication From Microsoft Access retag |
|
Dec 11 |
revised |
Remove Authentication From Microsoft Access more detail |
|
Dec 10 |
answered | Remove Authentication From Microsoft Access |
|
Dec 10 |
answered | will the sql queries i run in ms-access also work on mysql without any changes ? |
|
Dec 9 |
answered | how to Compare todays date with oledb date?? please help |
|
Dec 9 |
revised |
how to Compare todays date with oledb date?? please help Formatting |
|
Dec 8 |
answered | Forcing a datatype in MS Access make table query |
|
Dec 8 |
revised |
Alter column’s default value Retag; changed 'update' to 'alter'; formatting. |
