User onedaywhen - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T01:45:31Zhttp://stackoverflow.com/feeds/user/15354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1781749/microsoft-access-2003-shared-dbf-file-is-already-in-use/1809085#18090850Answer by onedaywhen for Microsoft Access 2003 Shared DBF, file is already in useonedaywhen2009-11-27T14:27:03Z2009-11-27T14:45:07Z<p>Quoting Remou, David W. Fenton and Tony Toews:</p>
<p>As regards the folder on the server where the MDB/ACCDB containing the tables resides, you need to have appropriate permissions on both the SHARE and on the underlying folder that the share is making available across the LAN.</p>
<p>If the user has read only rights on the folder, the first user in will lock the database, because the .ldb (lock file) needs to be updated. I usually give the user full permissions on the folder, but others say delete permissions are not necessary, because even though the .ldb file is normally deleted by Access when the last user leaves, it is not essential that this should happen.</p>
http://stackoverflow.com/questions/1577136/domains-in-sql-server0Domains in SQL Server?onedaywhen2009-10-16T09:45:02Z2009-11-27T11:14:10Z
<p>I've just been reading <a href="http://www.sommarskog.se/wishlist.html#Domains" rel="nofollow">'Give us Real Domains!'</a> on SQL Server MVP Erland Sommarskog's SQL Server Wishlist. </p>
<p>I was thinking of trying out <code>CREATE TYPE</code> with bound rules but was alarmed to learn that this is a deprecated feature.</p>
<p>Does SQL Server have anything resembling support for domains that is worth using? Are bound rules are worth using, considering that at least one SQL Server MVP is keeping it alive?</p>
<p>P.S. Don't forget to vote for <a href="http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=124645" rel="nofollow">Add CREATE DOMAIN command</a> ;)</p>
http://stackoverflow.com/questions/1577136/domains-in-sql-server/1808157#18081570Answer by onedaywhen for Domains in SQL Server?onedaywhen2009-11-27T11:14:10Z2009-11-27T11:14:10Z<p>Seems that domain support currently found in SQL Server is not fit for purpose. Best to wait until the <code>CREATE DOMAIN</code> command is added ;)</p>
http://stackoverflow.com/questions/1804414/vb6-enabling-mousewheel-for-controls/1807686#18076860Answer by onedaywhen for VB6: enabling mousewheel for controlsonedaywhen2009-11-27T09:36:25Z2009-11-27T09:36:25Z<p>One very easy way is to install <a href="http://www.gasanov.net/VBScroll.asp" rel="nofollow">VBScroll by Shahin Gasanov</a>. This is to enable scroll bars in the VB6 IDE. Even if that's no what you meant by 'the runtime' then it's worth having anyhow ;)</p>
http://stackoverflow.com/questions/1797808/how-do-you-parse-a-string-in-vb6/1802864#18028641Answer by onedaywhen for how do you parse a string in vb6?onedaywhen2009-11-26T10:30:02Z2009-11-26T10:30:02Z<p>Don't loop; rather, set a reference to Microsoft VBScript Regular Expressions library and use regular expressions to achieve your 'do something' goal.</p>
http://stackoverflow.com/questions/1796414/sql-server-unique-constraint-with-duplicate-nulls/1796518#17965182Answer by onedaywhen for SQL Server UNIQUE constraint with duplicate NULLsonedaywhen2009-11-25T12:08:09Z2009-11-25T12:08:09Z<p>Duplicate of <a href="http://stackoverflow.com/questions/191421/how-to-create-a-unique-index-on-a-null-column">this question</a>?</p>
<p>The calculated column trick is widely known as a "nullbuster"; my notes credit Steve Kass:</p>
<pre><code>CREATE TABLE dupNulls (
pk int identity(1,1) primary key,
X int NULL,
nullbuster as (case when X is null then pk else 0 end),
CONSTRAINT dupNulls_uqX UNIQUE (X,nullbuster)
)
</code></pre>
<p>Works on SQL Server 2000. You may need <code>ARITHABORT</code> on e.g. </p>
<pre><code>ALTER DATABASE MyDatabase SET ARITHABORT ON
</code></pre>
http://stackoverflow.com/questions/1783486/ms-access-insert-into-statement/1789249#17892491Answer by onedaywhen for MS Access INSERT INTO statementonedaywhen2009-11-24T10:41:50Z2009-11-24T10:41:50Z<p>In Access Database Engine SQL code, when you need to specify that a literal value is of type <code>DATETIME</code>, you can either explicitly cast the value to <code>DATETIME</code> or use <code>#</code> characters to delimit the value.</p>
<p>Using an explicit cast using the <code>CDATE()</code> function:</p>
<pre><code>INSERT INTO bs1 (teacher, subject, [date], period)
VALUES ('test', 'test', CDATE('2009-12-31 00:00:00'), 0);
</code></pre>
<p>Using a <code>DATETIME</code> literal value:</p>
<pre><code>INSERT INTO bs1 (teacher, subject, [date], period)
VALUES ('test', 'test', #2009-12-31 00:00:00#), 0);
</code></pre>
<p>When <code>INSERT</code>ing a value into a column of type <code>DATETIME</code>, if you do not specify an explicit <code>DATETIME</code> value, the engine will implicitly attempt to coerce a value to <code>DATETIME</code>. The literal value 'test' cannot be coerced to type <code>DATETIME</code> and this would appear to be the source of your syntax error.</p>
<p>Note: none of the above applies to the <code>NULL</code> value. In Access Database Engine SQL there is no way to cast the <code>NULL</code> value to an explicit type e.g. </p>
<pre><code>SELECT CDATE(NULL)
</code></pre>
<p>generates an error, "Invalid use of NULL". Therefore, to specify a <code>NULL</code> <code>DATETIME</code> literal, simply use the <code>NULL</code> keyword.</p>
<p>It pays to remember that the Access Database Engine has but one temporal data type, being <code>DATETIME</code> (its synonyms are <code>DATE</code>, <code>TIME</code>, <code>DATETIME</code>, and <code>TIMESTAMP</code>). Even if you don't explicitly specify a time element, the resulting value will still have a time element, albeit an implicit one. Therefore, it is best to always be explicit and always include the time element when using <code>DATETIME</code> literal values.</p>
http://stackoverflow.com/questions/1763228/access-jet-equivalent-of-oracles-decode/1763780#17637800Answer by onedaywhen for Access/jet equivalent of Oracle's decodeonedaywhen2009-11-19T14:46:25Z2009-11-19T14:46:25Z<p>The closest analogy is the <code>SWITCH()</code> function e.g. </p>
<p>Oracle:</p>
<pre><code>SELECT supplier_name,
decode(supplier_id, 10000, 'IBM',
10001, 'Microsoft',
10002, 'Hewlett Packard',
'Gateway') result
FROM suppliers;
</code></pre>
<p>Access Database Engine</p>
<pre><code>SELECT supplier_name,
SWITCH(supplier_id = 10000, 'IBM',
supplier_id = 10001, 'Microsoft',
supplier_id = 10002, 'Hewlett Packard',
TRUE, 'Gateway') AS result
FROM suppliers;
</code></pre>
<p>Note that with the <code>SWITCH()</code> function you have to supply the full predicate each time, so you are not restricted to using just supplier_id. For the default value, use a predicate that is obvious to the human reader that it is TRUE e.g. <code>1 = 1</code> or indeed simply <code>TRUE</code> :)</p>
<p>Something that may not be obvious is that the logic in the <code>SWITCH()</code> function doesn't short circuit, meaning that every expression in the function must be able to be evaluated without error. If you require logic to short circuit then you will need to use nested <code>IIF()</code> functions.</p>
http://stackoverflow.com/questions/1732644/copy-data-from-lookup-column-with-multiple-values-to-new-record-access-2007/1748178#17481780Answer by onedaywhen for Copy data from lookup column with multiple values to new record Access 2007onedaywhen2009-11-17T11:17:58Z2009-11-17T11:17:58Z<p>For a quick and dirty way of getting the values <strong>out</strong> of a multivalued ('complex data') column, you can use an ADO <code>Connection</code> with the <code>Jet OLEDB:Support Complex Data</code> connection property set to <code>False</code> e.g. the connection string should look something like this:</p>
<pre><code>Provider=Microsoft.ACE.OLEDB.12.0;
Data Source=C:\dbs\TestANSI92.accdb;
Jet OLEDB:Engine Type=6;
Jet OLEDB:Support Complex Data=False
</code></pre>
<p>The multivaled type column will now be of type <code>MEMO</code> (<code>adLongVarWChar</code>) with each value separated by a semicolon <code>;</code> character.</p>
<p>But that's only half the problem. How to get data <strong>into</strong> a multivalued column? </p>
<p>The Access Team seem to have neglected to enhance the Access Database Engine SQL syntax to accommodate multivalued types. The 'semicolon delimiter' trick doesn't work in reverse e.g. </p>
<pre><code>INSERT INTO TestComplexData (ID, weekday_names_multivalued)
VALUES (5, 'Tue;Thu;Sat');
</code></pre>
<p>fails with the error, "Cannot perform this operation", ditto when trying to update via ADO recordset :(</p>
http://stackoverflow.com/questions/1746325/converting-northwind-2007-to-sql2005-database/1747809#17478092Answer by onedaywhen for Converting Northwind 2007 to SQL2005 Databaseonedaywhen2009-11-17T10:06:30Z2009-11-17T10:06:30Z<p>The problem is that the 'Microsoft Access' option Import Wizard is hard coded to expect a file with an .mdb extension. It is the same problem for SQL Server 2008; opening a file of type .accdb fails with, "There is not editor available for..."</p>
<p>One work around is to use OLE DB. In the wizard's drop down list of data sources, choose 'Microsoft Office 12.0 Access Database Engine OLE DB Provider'. You may need to edit the connection properties to enter Jet OLEDB:Engine Type=5 in order to be able to 'see' functionality specific to the .accdb format. However, quite what SQL Server will make of so-called 'complex' (multivalued) data types I don't know!</p>
http://stackoverflow.com/questions/1507385/how-do-i-convert-a-stdole-stdpicture-to-a-different-type/1741941#17419410Answer by onedaywhen for How do I convert a stdole.StdPicture to a different Type?onedaywhen2009-11-16T12:37:24Z2009-11-16T22:16:44Z<p>Search Google Groups for a thread entitled, <a href="http://groups.google.co.uk/group/microsoft.public.vb.winapi.graphics/browse%5Ffrm/thread/9eacccc40f5f0671/" rel="nofollow">Convert StdPicture from Icon to Bitmap</a>.</p>
<p>UPDATE</p>
<p>No, I can't get it to work either.</p>
<p>But I was getting a terrible sense of deja vu as I was trying it... then remembered I definitely did this a couple of years ago i.e. adding icons with masks to Excel CommandBarButtons at runtime, not knowing which version of Excel it was being opened in. Sadly I can't find the code (not in source control so didn't make it to release? I'm almost sure I got it working).</p>
<p>I think I borrowed heavily from these articles:</p>
<p><a href="http://support.microsoft.com/kb/288771" rel="nofollow">How To Create a Transparent Picture For Office CommandBar Buttons</a></p>
<p><a href="http://support.microsoft.com/kb/286460/" rel="nofollow">How To Set the Mask and Picture Properties for Office XP CommandBars</a></p>
<p>And because Excel has no clipboard, I seem to recall borrowing from Stephen Bullen's <a href="http://www.bmsltd.co.uk/Excel/Default.htm" rel="nofollow">PastePicture.zip</a>.</p>
<p>Hope this doesn't send you off on a wild goose chase :)</p>
http://stackoverflow.com/questions/1741604/do-you-use-the-outer-keyword-when-writing-left-right-joins-in-sql/1742324#17423240Answer by onedaywhen for Do you use the OUTER keyword when writing left/right JOINs in SQL?onedaywhen2009-11-16T13:55:22Z2009-11-16T13:55:22Z<p>I use the <code>OUTER</code> keyword myself. I agree it is merely a matter of taste but omitting it strikes me as being a little sloppy but not as bad a omitting the <code>INNER</code> keyword (sloppy) or writing SQL keywords in lower case (very sloppy).</p>
http://stackoverflow.com/questions/1741893/how-to-calculating-the-time/1742296#17422962Answer by onedaywhen for How to Calculating the time? onedaywhen2009-11-16T13:48:41Z2009-11-16T13:48:41Z<p>Sometimes being unable to write a simple query (bad <a href="http://en.wikipedia.org/wiki/Data%5FManipulation%5FLanguage" rel="nofollow">SQL DML</a> code...) against a schema is a code 'smell'. In this case your design is flawed (...caused by bad <a href="http://en.wikipedia.org/wiki/Data%5FDefinition%5FLanguage" rel="nofollow">SQL DDL</a> code). </p>
<p>Your design has update anomalies. Consider that deleting an 'out' row would cause subsequent rows for the entity to be implicitly (and erroneously) inverted.</p>
<p>You should have columns for both <code>in_date</code> and <code>out_date</code> <strong>on the same row</strong>. You then need all the constraints that go with a <a href="http://en.wikipedia.org/wiki/Temporal%5Fdatabase" rel="nofollow">temporal database</a> design i.e. <code>out_date</code> cannot be before <code>in_date</code>, no overlapping periods for the same entity, etc. </p>
http://stackoverflow.com/questions/1740540/problem-in-get-dates-between-2-date-vb-net-ole/1740958#17409580Answer by onedaywhen for Problem In get dates between 2 date (vb.net | OLE)onedaywhen2009-11-16T09:08:50Z2009-11-16T09:08:50Z<p>Instead of using dynamic SQL, instead use the Access Database Engine's <code>CREATE PROCEDURE</code> SQL DDL syntax to create a persisted object whose parameters have parameters strongly-typed as <code>DATETIME</code> with the <code>NULL</code> value as default. Handle the <code>NULL</code> value to use the <code>DATETIME</code> column's value instead e.g. </p>
<pre><code>CREATE PROCEDURE GetStuff
(
arg_start_date DATETIME = NULL,
arg_end_date DATETIME = NULL
)
AS
SELECT lastvstart
FROM tb
WHERE lastvstart
BETWEEN IIF(arg_start_date IS NULL, lastvstart, arg_start_date)
AND IIF(arg_end_date IS NULL, lastvstart, arg_end_date);
</code></pre>
http://stackoverflow.com/questions/1739793/random-sorting-each-time-query-is-run/1740926#17409260Answer by onedaywhen for random sorting each time query is runonedaywhen2009-11-16T09:00:03Z2009-11-16T09:00:03Z<p>When using <code>RND()</code> in Access Database Engine SQL from outside of the Access UI, the same sequence of random numbers will be used by each session (there is no native support for VBA's Randomize).</p>
<p>For example, connect to the source then execute <code>SELECT RND();</code> three times in succession, you will get the following values:</p>
<pre><code>0.705547511577606
0.533424019813538
0.579518616199493
</code></pre>
<p>Close the connection, connect to the source again then execute the same query again three times you will get the same three values as above in the same order.</p>
<p>In the knowledge that these values are predictable, we can demonstrate that a different value for <code>RND()</code> is used each time it is referenced. Consider this query:</p>
<pre><code>SELECT RND()
FROM T
WHERE RND() > CDBL(0.6);
</code></pre>
<p>We know the first value in a new session will be <code>0.705547511577606</code>, therefore the expression </p>
<p><code>RND() > CDBL(0.6)</code> </p>
<p>will evaluate <code>TRUE</code>. However, the value <code>0.533424019813538</code> is <strong>repeated for every row</strong> in table <code>T</code>, a value which does not satisfy the <code>WHERE</code> clause! So it is clear that the value of <code>RND()</code> in the <code>WHERE</code> clause is different from the value in the <code>SELECT</code> clause. The full code is posted below.</p>
<p>Note I wondered if it may be possible to use the least significant portion of <code>CURRENT_TIMESTAMP</code> value generate a random number that could be used consistently through the scope of a single query and not be predictable for a session as <code>RND()</code> is. However, the Access Database Engine does not support it and its closest analogy, the <code>NOW()</code> function, does not have enough granularity to be useful :(</p>
<pre><code>Sub jmgirpjpo()
On Error Resume Next
Kill Environ$("temp") & "\DropMe.mdb"
On Error GoTo 0
Dim cat
Set cat = CreateObject("ADOX.Catalog")
With cat
.Create _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & _
Environ$("temp") & "\DropMe.mdb"
With .ActiveConnection
.Execute "CREATE TABLE T (T INT);"
.Execute "INSERT INTO T VALUES (1);"
.Execute "INSERT INTO T VALUES (2);"
.Execute "INSERT INTO T VALUES (3);"
Dim rs
Set rs = .Execute("SELECT RND() FROM T WHERE RND() > CDBL(0.6);")
MsgBox rs.GetString
End With
End With
End Sub
</code></pre>
http://stackoverflow.com/questions/1725267/ms-access-replication-id-as-foreign-key/1728022#17280220Answer by onedaywhen for ms access replication id as foreign keyonedaywhen2009-11-13T09:00:32Z2009-11-13T09:00:32Z<p>Don't expose autonumber values to users, especially of the GUID flavour!</p>
http://stackoverflow.com/questions/1724791/access-2007-one-to-two-columns-referential-integrity/1727996#17279960Answer by onedaywhen for Access 2007 one-to-two columns referential integrityonedaywhen2009-11-13T08:53:45Z2009-11-13T08:53:45Z<p>First, I suggest you change you columns' names to <code>author_user_id</code> and <code>reviewer_user_id</code> respectively, to make it clear that each reference <code>user_id</code>.</p>
<p>Second, you should be aware that use of Access's UI tools are not compulsory. Many of us find them unintuitive but happily there are alternatives. One is to use SQL DDL e.g. <a href="http://office.microsoft.com/en-gb/access/HP030704831033.aspx" rel="nofollow">ANSI-92 Query Mode</a>:</p>
<pre><code>ALTER TABLE Documents ADD
CONSTRAINT fk__ document_author_user_id__Users
FOREIGN KEY (author_user_id)
REFERENCES Users (user_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
;
ALTER TABLE Documents ADD
CONSTRAINT fk__ reviewer_user_id__Users
FOREIGN KEY (reviewer_user_id)
REFERENCES Users (user_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
;
</code></pre>
<p>Third, consider you may need a <code>CHECK</code> constraint (or Table[sic] Validation Rule) to ensure a user cannot review their own work e.g. </p>
<pre><code>ALTER TABLE Documents ADD
CONSTRAINT document_author_cannot_review_their_own_work
CHECK (author_user_id <> reviewer_user_id)
;
</code></pre>
http://stackoverflow.com/questions/1665197/how-to-check-that-a-record-of-master-table-is-being-used-referenced-by-child-tabl/1666522#16665221Answer by onedaywhen for How to check that a record of master table is being used/referenced by child tableonedaywhen2009-11-03T10:34:17Z2009-11-13T08:35:00Z<p>From experience I have to tell you this design is horrible to work with. Consider changing the design to copy the data to an 'audit trail' table then physically remove it from the main table. </p>
<p>If you won't consider this, at the very least bury this in a <code>VIEW</code> and do everything you can to avoid exposing this to anyone wanting to query the database, using <code>INSTEAD OF</code> triggers on the <code>VIEW</code> if necessary. Otherwise, expect applications to have frequent bugs because someone forgot to add the <code>AND isremoved = 0</code> predicate required by <em>every</em> query that uses this table.</p>
<blockquote>
<p>But this 'answer' doesn't address the real question.</p>
</blockquote>
<p>Yes. Sorry 'bout that. But sometimes you have to cure the disease rather than merely treat the symptoms. </p>
<p>The design is compromised: a table <em>should</em> model a single entity type, whereas this is modelling two. How can I tell? Because the OP has stated that once 'removed' the entity has different data requirement, by saying "The problem is ... how can we check that all its child table not referring this record".</p>
<p>So the 'real' answer is: move the entity to another distinct table.</p>
<p>But if you are in the business of treating symptoms then here's an answer:</p>
<ol>
<li>Add the <code>IsRemoved</code> column to your
so-called 'child' tables, with <code>DEFAULT false</code> and ensure
it is <code>NOT NULL</code>.</li>
<li>Add a <code>CHECK</code> constraint to each
so-called 'child' table to test
<code>isremoved = false</code> (or whatever
'boolean' means in your SQL
product).</li>
<li>Add a compound key (e.g. using
<code>UNIQUE</code> or <code>PRIMARY KEY</code>) to your
so-called 'master' table on
<code>(IsRemoved, <existing key columns
here>)</code>, or alter an existing key
accordingly.</li>
<li>Add <code>FOREIGN KEY</code> constraints to each
so-called 'child' table to reference
the compound key created above.</li>
</ol>
http://stackoverflow.com/questions/1717081/does-microsoft-access-2003-contain-sets-or-multisets/1718165#17181654Answer by onedaywhen for Does Microsoft Access 2003 contain sets or multisets?onedaywhen2009-11-11T21:21:47Z2009-11-13T08:12:02Z<p>Are you referring to the Access Database Engine's <a href="http://office.microsoft.com/en-gb/access/HA012337221033.aspx" rel="nofollow">multivalued data types</a>? If so then yes, these are new to the ACE (2007) version of the engine and are not available in Jet 4.0 being Access2003's version of the engine.</p>
<p>FWIW I tried your SQL in Access2007 using ANSI-92 Query Mode (OLE DB, engine type = 5) and the MULTISET keyword wasn't recognized.</p>
<p>Note you may not need nor want multivalued types. One particular criticism is that Access Database SQL DML expressions service hasn't been altered to take account of multivalued types. Also, see this article <a href="http://www.theregister.co.uk/2006/07/18/multivalued%5Fdatatypes%5Faccess/print.html" rel="nofollow">Multivalued datatypes considered harmful</a>:</p>
<blockquote>
<p>both Suraj [Poozhiyil, the MS Access
Program Manager] and I agree
wholeheartedly that developers do not
need to use multi-valued fields.
People who understand databases
already have a good way of
implementing many to many
relationships and will gain no benefit
from multi-valued fields.</p>
<p>So, my clear and certain advice to
developers is not to use multi-valued
fields. They have nothing to offer us
except potential pain.</p>
</blockquote>
<p>UPDATE:</p>
<blockquote>
<p><a href="http://www.sigmod.org/record/issues/0403/E.JimAndrew-standard.pdf" rel="nofollow">MULTISET</a> is a new datatype officially
beginning with SQL:2003 so I'm
guessing part of the reason for adding
it in Access 2007 is to be fully
compliant with the SQL standard</p>
</blockquote>
<p>That's almost amusing. The Access Team have shown no interest in adding SQL syntax that is compliant with any SQL Standard. </p>
<p>[When the SQL Server team were modifying Jet for its 4.0 release they wanted to attain SQL-92 compliance but were prevented from doing so by the Windows team whose components were reliant on some features remaining non-compliant... but that's another story. The Access Team have their own private folk of the code base so they've no such excuse... unless the SharePoint Team now has undue influence? I digress...]</p>
<p>Consider this quote from the document about the SQL2003 Standard:</p>
<blockquote>
<p>Values of a <code>MULTISET</code> type can be
created either by enumerating the
individual elements or by supplying
the elements through a query
expression; e.g.,</p>
<p><code>MULTISET[1, 2, 3, 4]</code> </p>
<p>or</p>
<p><code>MULTISET(</code>
<code>SELECT grades</code>
<code>FROM courses</code>
<code>)</code></p>
<p>...Conversely, a multiset value can be
used as a table reference in the <code>FROM</code>
clause using the <code>UNNEST</code> operator.</p>
</blockquote>
<p>The Access Team has not added any new expressions nor any operators to the ACE SQL DML syntax. So, no, this has nothing to do with SQL Standards and everything to do with SharePoint.</p>
<blockquote>
<p>David W. Fenton: No, [support for
multivalued types] was added in the
ACCDB format (not the ACE, as
@onedaywhen says...)</p>
</blockquote>
<p>Consider this quote from <a href="http://blogs.msdn.com/access/archive/2005/10/13/480870.aspx" rel="nofollow">the Access Team's own blog</a>:</p>
<blockquote>
<p>The primary feature we added to the new
Access engine is support for “complex
data”.</p>
</blockquote>
<p>It is definitely an engine feature!</p>
http://stackoverflow.com/questions/1718383/access-creates-new-file-every-time-i-compact-repair/1720850#17208500Answer by onedaywhen for Access Creates new file every time I Compact & Repaironedaywhen2009-11-12T08:57:02Z2009-11-12T08:57:02Z<p>It depends how you do it. </p>
<p>When using the Jet Replication Objects (JRO) library the method <code>JRO.JetEngine.CompactDatabase</code> is defined as </p>
<pre><code>Sub CompactDatabase(SourceConnection As String, Destconnection As String)
</code></pre>
<p>If you supply the same connection string for both arguments you get an error, "Database already exists".</p>
<p>Therefore, when using JRO yes it is normal for a new file to be created when compacting.</p>
http://stackoverflow.com/questions/1706383/prevent-access-screwing-up-queries-it-cant-understand-when-switching-to-design-m/1706698#1706698-1Answer by onedaywhen for Prevent Access screwing up queries it can't understand when switching to design modeonedaywhen2009-11-10T09:41:29Z2009-11-11T08:28:50Z<p>If you don't like what the Access UI does to your SQL code, why would you even try to view your SQL in it? It wipes any pretty formatting or whitespace that may have been added to aid the human reader. It can even re-factor your SQL: date literals to US format, parens to brackets for a subquery, parameter syntax in a <code>PROCEDURE</code>, loss of column correlation names in a <code>VIEW</code>, etc.</p>
<p>Sounds like a better approach for you is to create database objects using a SQL <a href="http://en.wikipedia.org/wiki/Data%5FDefinition%5FLanguage" rel="nofollow">Data Definition Language</a> (SQL DDL) script then refer to your script for future maintenance.</p>
<p>For example, here's an Access Database Engine SQL DDL script to create some database objects:</p>
<pre><code>CREATE TABLE Constants
(
lock CHAR(1) WITH COMPRESSION
DEFAULT 'x'
NOT NULL,
CONSTRAINT Constants__max_one_row
CHECK (lock = 'x'),
pi DECIMAL(3, 2) NOT NULL
)
;
INSERT INTO Constants (pi) VALUES (3.14)
;
CREATE TABLE Things
(
thing_ID CHAR(10) WITH COMPRESSION NOT NULL
CONSTRAINT uq__Things UNIQUE,
CONSTRAINT thing_ID__numeric_chars_only
CHECK (thing_ID NOT ALIKE '%[!0-9]%'),
thing_name VARCHAR(20) DEFAULT '{{NONE}}' NOT NULL,
CONSTRAINT thing_name__whitespace
CHECK (
thing_name NOT ALIKE ' %'
AND thing_name NOT ALIKE '% '
AND thing_name NOT ALIKE '% %'
AND LEN(thing_name) > 0
)
)
;
CREATE PROCEDURE AddThing
(
arg_thing_ID CHAR(10),
arg_thing_name VARCHAR(20) = '{{NONE}}'
)
AS
INSERT INTO Things (thing_ID, thing_name)
SELECT thing_ID, thing_name
FROM (
SELECT RIGHT('0000000000' + arg_thing_ID, 10) AS thing_ID,
IIF(LEN(arg_thing_name) = 0, '{{NONE}}', arg_thing_name)
AS thing_name
FROM Constants
) AS DT1
WHERE thing_ID NOT ALIKE '%[!0-9]%'
AND thing_name NOT ALIKE ' %'
AND thing_name NOT ALIKE '% '
AND thing_name NOT ALIKE '% %'
;
CREATE VIEW Stuff
(
stuff_ID, stuff_name
)
AS
SELECT T1.thing_ID, T1.thing_name
FROM Things AS T1
WHERE ' ' & T1.thing_name & ' ' ALIKE '% stuff %'
;
</code></pre>
<p>Now I know from experience the Access UI is incapable of exposing some of the feature of the Access Database Engine (<code>CHECK</code> constraints, <code>CHAR()</code> data type, <code>WITH COMPRESSION</code> property, etc) and may try to change the syntax in a Query object's SQL View: parens in the subquery, parameters for the <code>PROCEDURE</code> -- which it will insist on calling a Query --, column correlation name list in for the <code>VIEW</code> -- which it will insist on also calling a Query --, etc). But who cares? If I need to alter the schema I'll do it based on the SQL DDL script and not what the Access UI thinks my script said. </p>
<p>That leaves my free to use the SQL editor of my choice e.g. one that colors keywords separately from data elements, has auto-complete, indents query elements to my choosing, etc.</p>
http://stackoverflow.com/questions/1703919/how-to-join-two-or-more-tables-and-result-set-having-all-distinct-values/1706582#17065820Answer by onedaywhen for how to join two or more tables and result set having all distinct valuesonedaywhen2009-11-10T09:15:05Z2009-11-10T09:15:05Z<p>It seems the unique set of data you want is this:</p>
<pre><code>SELECT T1.name, T1.loc
FROM [Excel 8.0;HDR=YES;IMEX=1;DATABASE=C:\db1.xls;
].[Sheet1$] AS T1
UNION
SELECT T1.name, T1.loc
FROM [Excel 8.0;HDR=YES;IMEX=1;DATABASE=C:\db2.xls;
].[Sheet1$] AS T1
</code></pre>
<p>...but that you then want to arbitrarily apply a sequence of integers as <code>id</code> (rather than using the id values from the Excel tables).</p>
<p>Because Access Database Engine does not support common table expressions and Excel does not support <code>VIEW</code>s, you will have to repeat that <code>UNION</code> query as derived tables (hopefully the optimizer will recognize the repeat?) e.g. using a correlated subquery to get the row number:</p>
<pre><code>SELECT (
SELECT COUNT(*) + 1
FROM (
SELECT T1.name, T1.loc
FROM [Excel 8.0;HDR=YES;IMEX=1;DATABASE=C:\db1.xls;
].[Sheet1$] AS T1
UNION
SELECT T1.name, T1.loc
FROM [Excel 8.0;HDR=YES;IMEX=1;DATABASE=C:\db2.xls;
].[Sheet1$] AS T1
) AS DT1
WHERE DT1.name < DT2.name
) AS id,
DT2.name, DT2.loc
FROM (
SELECT T2.name, T2.loc
FROM [Excel 8.0;HDR=YES;IMEX=1;DATABASE=C:\db1.xls;
].[Sheet1$] AS T2
UNION
SELECT T2.name, T2.loc
FROM [Excel 8.0;HDR=YES;IMEX=1;DATABASE=C:\db2.xls;
].[Sheet1$] AS T2
) AS DT2;
</code></pre>
<p>Note: </p>
<blockquote>
<p>i want the result set to be stored in
an access database</p>
</blockquote>
<p>Then maybe you should migrate the Excel data into a staging table in your Access database and do the data scrubbing from there. At least you could put that derived table into a <code>VIEW</code> :)</p>
http://stackoverflow.com/questions/1702394/creating-a-temporary-table-similar-to-oracles-temporary-table-behaviour/1706398#17063980Answer by onedaywhen for Creating a temporary table similar to Oracle's temporary table behaviouronedaywhen2009-11-10T08:33:01Z2009-11-10T08:33:01Z<blockquote>
<p>Microsoft Access does not directly
support temporary tables</p>
</blockquote>
<p>If you look at a SHOWPLAN.OUT query execution plan, it is clear that the engine has the ability to create temporary tables.</p>
<p>If you look at the <a href="http://office.microsoft.com/en-gb/access/HA012314411033.aspx" rel="nofollow">Access 2007 Help</a> it may be that temporary table functionality could easily be exposed to end users:</p>
<blockquote>
<p>CREATE TABLE Statement</p>
<p><code>CREATE [TEMPORARY] TABLE</code>...</p>
<p>When a <code>TEMPORARY</code> table is created it
is visible only within the session in
which it was created. It is
automatically deleted when the session
is terminated. Temporary tables can be
accessed by more than one user.</p>
</blockquote>
<p>As far as I know, no one has come up with an explanation for this apparent documentation error. I've reported it to the Access Team when it appeared in Access2003 (no reply, naturally), same again for Access2007. Who knows, maybe temporary tables are coming soon...?</p>
http://stackoverflow.com/questions/1686040/ms-access-is-it-possible-to-display-virtual-rows-in-a-continuous-form/1699816#1699816-1Answer by onedaywhen for MS-Access: is it possible to display 'virtual' rows in a continuous form?onedaywhen2009-11-09T08:47:25Z2009-11-09T08:47:25Z<p>While you <em>can</em> do this using <code>UNION</code>:</p>
<pre><code>SELECT 0 AS ID, True AS Virtual, 'None' AS Stuff
FROM Table1
UNION
SELECT ID, False, Stuff
FROM Table1;
UNION
SELECT -1, True, 'All'
FROM Table1;
</code></pre>
<p>...its probably better to do this using <code>UNION ALL</code> with the <code>DISTINCT</code> keyword:</p>
<pre><code>SELECT DISTINCT 0 AS ID, True AS Virtual, 'None' AS Stuff
FROM Table1
UNION ALL
SELECT ID, False, Stuff
FROM Table1;
ORDER BY ID
UNION ALL
SELECT DISTINCT -1, True, 'All'
FROM Table1;
</code></pre>
<p>Why prefer <code>UNION ALL</code>? <code>UNION</code> preforms an implicit sort on the data, which you may not want; if you do use an explicit sort then use one! (As the documentation will tell you, an implicit sort is not guaranteed so don't rely on it.) </p>
<p>In order to performs the sort, only the first 255 characters of MEMO data will be considered and in extremis can lead to whole rows being removed from the resultset :( </p>
<p>The implicit sort for <code>UNION</code> also has a relatively huge impact on performance: I tested using a 100K row table and the <code>UNION</code> approach took 21 seconds, while the <code>UNION ALL</code> took only 3 seconds.</p>
http://stackoverflow.com/questions/1687943/problem-casting-field-when-querying-spreadsheet/1692596#16925960Answer by onedaywhen for Problem casting field when querying spreadsheetonedaywhen2009-11-07T09:54:57Z2009-11-07T09:54:57Z<p>I think you need to: </p>
<ol>
<li>remove the <code>CAST</code> and <code>VARCHAR</code> keywords
from your query (they are illegal);</li>
<li>change the local machine registry
key <code>TypeGuessRows = 0</code> (force to scan
scan all rows should determine the
column is of mixed types...);</li>
<li>ensure the local machine registry
key <code>ImportMixedTypes = Text</code> (...to
import mixed types as text, being
the default value). See previous answers for details.</li>
</ol>
<p>Once done your '*' characters will appear in the column (i.e. will no longer be <code>NULL</code>). However, your float values will have been coerced to text. You can cast/coerce the float-as-text values back to being numeric in the SQL but first you will have to test for <code>NULL</code> and a numeric value e.g. </p>
<pre><code>SELECT F1,
IIF(
F1 IS NULL,
'{{Excel cell is blank}}',
IIF(
F1 = '*',
'{{Excel cell is the ''*'' character}}',
IIF(
ISNUMERIC(F1),
CDBL(F1),
'{{Excel cell is non-nmeric and not the ''*'' character}}'
)
)
) AS result
FROM [F1$];
</code></pre>
<p>Note I'd normally prefer <code>SWITCH()</code> over nest <code>IIF()</code> but in this case it must be <code>IIF()</code>. Reason: <code>IIF()</code> if overloaded for Access Database Engine SQL and either the <code>TRUE</code> or the <code>FALSE</code> condition will be evaluated but never both. In VBA the opposite is the case i.e. both conditions are always evaluated. <code>SWITCH()</code> does not shortcut, either in Access Database Engine SQL or VBA.</p>
http://stackoverflow.com/questions/1687943/problem-casting-field-when-querying-spreadsheet/1688725#16887250Answer by onedaywhen for Problem casting field when querying spreadsheetonedaywhen2009-11-06T16:32:59Z2009-11-06T16:32:59Z<p>Your predicate </p>
<pre><code>F1 >= 2.3456
</code></pre>
<p>suggests <code>F1</code> is a numeric data type. Please explain how you can cast a numeric value to <code>VARCHAR</code> and expect to get <code>*</code> as a result...? I can't see it happening myself!</p>
<p>If your column contains numeric values and <code>*</code> characters then it will be of mixed types and the Jet 4.0 engine needs to to decide whether to choose <code>FLOAT</code> (in which case your * characters will be replaced by the <code>NULL</code> value) or of type <code>NVARCHAR(255)</code> (in which case your numeric values <em>may</em> be converted to scientific notation). </p>
<p>You may be able to use registry values to influence the result but have no hope of doing it in the SQL code because the data type has already been chosen.</p>
<p>More more details see <a href="http://www.dicks-blog.com/archives/2004/06/03/external-data-mixed-data-types/" rel="nofollow">Daily Dose of Excel: External Data - Mixed Data Types</a> by a so-called expert :) There's a lot of good detail buried in the comments.</p>
http://stackoverflow.com/questions/1666060/how-to-discover-triggers-parent-schema0How to discover trigger's parent schema?onedaywhen2009-11-03T08:53:17Z2009-11-06T16:10:30Z
<p>To discover all triggers in any given MS SQL Server database, I'm currently querying the sysobjects table (which is fine because it works in MS SQL Server 2000 which I have to support) e.g. </p>
<pre><code>SELECT R1.name AS trigger_name,
T1.name AS trigger_parent_table_name
FROM sysobjects AS R1
INNER join sysobjects AS T1
ON R1.parent_obj = T1.id
WHERE R1.xtype = 'tr';
</code></pre>
<p>This gives me a reduced list of trigger names and for each I can use</p>
<pre><code>EXEC sp_helptext 'trigger_name_here'
</code></pre>
<p>to find the definition. That works fine for databases where only the default dbo schema is used.</p>
<p>I now have a MS SQL Server 2005 database which uses multiple schemas. What is the best way of discovering the schema for each trigger?</p>
http://stackoverflow.com/questions/1687943/problem-casting-field-when-querying-spreadsheet/1688427#16884270Answer by onedaywhen for Problem casting field when querying spreadsheetonedaywhen2009-11-06T15:47:34Z2009-11-06T15:55:49Z<p>The problem is that the Microsoft Jet 4.0 engine does not support the <code>CAST()</code> function, nor does it has a <code>VARCHAR</code> keyword (nor <code>VARCHAR</code> data type, come to that). Why do you need to cast this value? Do you need to handle the <code>NULL</code> value?</p>
<p>Speaking of data types:</p>
<pre><code>F1 >= 2.3456
</code></pre>
<p>The value <code>2.3456</code> is a literal of type <code>DECIMAL</code> being fixed point decimal. Excel has no native fixed decimal type so you are most likely comparing a floating point value to fixed point value.. I trust you appreciate the problems this can cause!</p>
http://stackoverflow.com/questions/1687025/sql-remove-appearances-of-a-comma-at-end-of-the-line/1687819#16878190Answer by onedaywhen for SQL, remove appearances of a comma at end of the line.onedaywhen2009-11-06T14:06:10Z2009-11-06T14:06:10Z<blockquote>
<p>I'm using a set of nested REPLACE to
replace 4 commas with 3, 3 with 2, and
2 with one</p>
</blockquote>
<p>The following requires a set of exactly three nested <code>REPLACE</code> to 'squeezes' any number of multiple comma (<code>CHAR(44)</code>) characters to a single character:</p>
<pre><code>WITH MyTable (MyText)
AS
(
SELECT 'some text, some more text, even more text,,'
UNION ALL
SELECT 'some text,,,,'
UNION ALL
SELECT 'some text, some text,,,'
UNION ALL
SELECT 'some text, some more text, even more, yet more, and again'
)
SELECT REPLACE(
REPLACE(
REPLACE(
MyText,CHAR(44), CHAR(44) + CHAR(22)
), CHAR(22) + CHAR(44), ''
), CHAR(22), ''
) AS MyText_commas_squeezed
FROM MyTable;
</code></pre>
<p>Now you just need to trim any trailing single comma which you already know how to do :)</p>
http://stackoverflow.com/questions/1681570/ilf-and-sql-querry/1684889#16848890Answer by onedaywhen for Ilf and SQL querryonedaywhen2009-11-06T01:44:15Z2009-11-06T01:44:15Z<p>A variation on the theme, a little easier to follow to my eye:</p>
<pre><code>SELECT priceNetto, vat,
priceNetto * IIf(Country='ABC', 1.22, 1) AS PriceBrutto,
...
</code></pre>
<p>Note that the data type of the expression's result will change depending on the value of <code>Country</code>, which is a little odd. If <code>Country = 'ABC'</code> then the result is almost certain to be coerced to type <code>DECIMAL</code>. Is this your intention? Possibly yes: sounds like you are applying tax and the Access Database Engine's <code>DECIMAL</code> type exhibits rounding by truncation, same as the tax office; other types exhibit banker's rounding which is likely not the correct rounding algorithm for tax in my experience. </p>
<p>However, if you do not want a <code>DECIMAL</code> result, you will need to explicitly cast either the result or the multipliers to the required type.</p>
http://stackoverflow.com/questions/1781749/microsoft-access-2003-shared-dbf-file-is-already-in-use/1783596#1783596Comment by onedaywhen on Microsoft Access 2003 Shared DBF, file is already in useonedaywhen2009-11-27T14:50:12Z2009-11-27T14:50:12ZI think the answer would benefit from having all the information in one place but let's not start a rollback war. I've posted another answer. But I still say Fenton and Toewes aren't using SO correctly by seeingly <i>avoiding</i> editing answers and it seems like you might be in agreement. 'nuff said.http://stackoverflow.com/questions/1781749/microsoft-access-2003-shared-dbf-file-is-already-in-use/1783596#1783596Comment by onedaywhen on Microsoft Access 2003 Shared DBF, file is already in useonedaywhen2009-11-27T14:20:12Z2009-11-27T14:20:12ZSo why are you reluctant to accept edits to your answers that provide additional information without changing the meaning? Again from the FAQ: " Other people can edit my stuff?! Like Wikipedia, this site is collaboratively edited. If you are not comfortable with the idea of your questions and answers being edited by other trusted users, this may not be the site for you." Why aren't you comfortable with one of the touchstones of this site, Remou?http://stackoverflow.com/questions/1781749/microsoft-access-2003-shared-dbf-file-is-already-in-use/1783596#1783596Comment by onedaywhen on Microsoft Access 2003 Shared DBF, file is already in useonedaywhen2009-11-27T14:18:08Z2009-11-27T14:18:08Z...there was also something some Joel about how he wants people to edit answers, to move away from the sole-authoring mentality of the newsgroups but it seems to have been removed.http://stackoverflow.com/questions/1781749/microsoft-access-2003-shared-dbf-file-is-already-in-use/1783596#1783596Comment by onedaywhen on Microsoft Access 2003 Shared DBF, file is already in useonedaywhen2009-11-27T14:16:52Z2009-11-27T14:16:52Z...also see the meta site e.g. "Is it OK to edit a correct answer for fullness instead of answering?" (<a href="http://meta.stackoverflow.com/questions/19477/is-it-ok-to-edit-a-correct-answer-for-fullness-instead-of-answering" rel="nofollow" title="is it ok to edit a correct answer for fullness instead of answering">meta.stackoverflow.com/questions/19477/…</a>) It's not only OK, I think it's encouraged -- as long as you're not abusing the privilege of editing by changing the meaning of the answer. The idea is that the highest-voted or accepted answers are the most correct, and therefore editing someone else's answer to make it more complete is actually a truly selfless means of acting in the best interests of the S[OFU] sites.http://stackoverflow.com/questions/1781749/microsoft-access-2003-shared-dbf-file-is-already-in-use/1783596#1783596Comment by onedaywhen on Microsoft Access 2003 Shared DBF, file is already in useonedaywhen2009-11-27T14:15:32Z2009-11-27T14:15:32Z@Renou: "Why should I edit my answer when the comments are additional clarification?" -- Because the Stackoverflow FAQ (<a href="http://stackoverflow.com/faq" rel="nofollow">stackoverflow.com/faq</a>) encourages it.http://stackoverflow.com/questions/1577136/domains-in-sql-serverComment by onedaywhen on Domains in SQL Server?onedaywhen2009-11-27T14:04:50Z2009-11-27T14:04:50ZYou never know: folding 'Osolo' into SQL Server could result in proper domain support?http://stackoverflow.com/questions/1795919/export-multiple-queries-to-different-tables/1795974#1795974Comment by onedaywhen on Export multiple queries to different tables onedaywhen2009-11-27T10:17:08Z2009-11-27T10:17:08Z@David W. Fenton: "run multiple SQL statements in a batch... you can't do that (or, at least, you couldn't do it safely and reliably and not be afraid of corrupting your data)." -- Well, you could use an ADO recordset with batch optimistic locking, add the rows to the recordset then invoke the UpdateBatch method. http://stackoverflow.com/questions/1797201/checking-if-oledb-returned-a-result-from-select-statement-vb-netComment by onedaywhen on Checking if OLEDB returned a result from SELECT statement (VB.NET)onedaywhen2009-11-27T10:12:50Z2009-11-27T10:12:50Z@David W. Fenton: assuming OLE DB then the 'driver', more correctly an OLE DB provider, would be Microsoft.ACE.OLEDB.n.m or Microsoft.Jet.OLEDB.n.m (n and m being major and minor version numbers respectively pertaining to the version of the Access Database Engine). While you can use the MSDASQL.1 provider with one of the Access ODBC drivers, this is no longer supported.http://stackoverflow.com/questions/1801658/database-synchronization-ms-access/1804283#1804283Comment by onedaywhen on database synchronization - MS Accessonedaywhen2009-11-27T10:05:09Z2009-11-27T10:05:09Z-1 for condoning the use of IDENTITY values in the logical model. David W. Fenton is correct and surrogate key values should not be exposed to users (ANY user and that includes Access power users, developers, SQL coders, etc).http://stackoverflow.com/questions/1801658/database-synchronization-ms-access/1801795#1801795Comment by onedaywhen on database synchronization - MS Accessonedaywhen2009-11-27T10:01:26Z2009-11-27T10:01:26Z@David W. Fenton: sounds like you are saying that JRO does everything as regards synchronization that DAO does plus one more feature. That doesn't sound useless to me! I use JRO regularly to compact MDB and ACCDB files, so I'm living proof that it is not useless ;)http://stackoverflow.com/questions/1781749/microsoft-access-2003-shared-dbf-file-is-already-in-use/1783596#1783596Comment by onedaywhen on Microsoft Access 2003 Shared DBF, file is already in useonedaywhen2009-11-27T09:55:40Z2009-11-27T09:55:40Z@Remou: your last comment seems to contradict itself. Do you or do you not agree with the point made? You have neither countered them in comments nor edited your answer accordingly. I'll give it a go...http://stackoverflow.com/questions/1802120/building-sql-strings-in-access-vba/1805957#1805957Comment by onedaywhen on Building SQL strings in Access/VBAonedaywhen2009-11-27T09:51:59Z2009-11-27T09:51:59Z...ah, now I see you are recommending parameters after all!http://stackoverflow.com/questions/1802120/building-sql-strings-in-access-vba/1805957#1805957Comment by onedaywhen on Building SQL strings in Access/VBAonedaywhen2009-11-27T09:49:39Z2009-11-27T09:49:39ZSounds to me like you are reinventing the wheel. The Access Database Engine has strongly-typed PROCEDUREs with support for default values. The popular data access middleware (DAO, ADO, etc) already have support for parameters (DAO, OLE DB providers, etc) and their drivers/providers are already coded to convert values to SQL code (or lower). Why do you suppose you can do a better job?http://stackoverflow.com/questions/1802120/building-sql-strings-in-access-vba/1802699#1802699Comment by onedaywhen on Building SQL strings in Access/VBAonedaywhen2009-11-27T09:44:15Z2009-11-27T09:44:15Z@Remou: "So why the down votes" -- not I. I can't say I like your approach to storing SQL code in a table, reinventing the wheel and all that (e.g. how to GRANT/REVOKE privileges?) You made a good point about MEMO parameter values so that's neutral in my book. Out of interest, do <i>you</i> always give a supporting comment when down-voting?http://stackoverflow.com/questions/1802120/building-sql-strings-in-access-vba/1802699#1802699Comment by onedaywhen on Building SQL strings in Access/VBAonedaywhen2009-11-26T10:21:39Z2009-11-26T10:21:39ZAgreed about limitation of PROCEDURES with arguments of type MEMO but my experience is even more extreme in that I cannot get them to work with more than <i>two</i> characters!