Inserting NULL in an nvarchar fails in MSAccess - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T15:49:04Zhttp://stackoverflow.com/feeds/question/979269http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess1Inserting NULL in an nvarchar fails in MSAccessRenaud Bompuis2009-06-11T04:07:12Z2009-11-09T21:38:37Z
<p>I'm experiencing something a bit strange.</p>
<p>I have a table on SQL Server 2008, say <code>StockEvent</code> that contains a <code>Description</code> field defined as <code>nVarchar(MAX)</code>.<br />
The field is set to be Nullable, has no default value and no index on it.</p>
<p>That table is linked into an Access 2007 application, but if I explicitly insert a <code>NULL</code> into the field, I'm systematically getting:</p>
<pre><code>Run-time Error '3155' ODBC--insert on a linked table 'StockEvent' failed.
</code></pre>
<p>So the following bits of code in Access both reproduce the error:</p>
<pre><code>Public Sub testinsertDAO()
Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("StockEvent", _
dbOpenDynaset, _
dbSeeChanges + dbFailOnError)
rs.AddNew
rs!Description = Null
rs.Update
rs.Close
Set rs = Nothing
Set db = Nothing
End Sub
Public Sub testinsertSQL()
Dim db As DAO.Database
Set db = CurrentDb
db.Execute "INSERT INTO StockEvent (Description) VALUES (NULL);", _
dbSeeChanges
Set db = Nothing
End Sub
</code></pre>
<p>However, if I do the same thing from the <em>SQL Server Management Studio</em>, I get no error and the record is correctly inserted:</p>
<pre><code>INSERT INTO StockEvent (Description) VALUES (NULL);
</code></pre>
<p>It doesn't appear to be machine-specific: I tried on 3 different SQL Server installations and 2 different PCs and the results are consistent.<br />
I initially though that the problem may be in my Access application somewhere, but I isolated the code above into its own Access database, with that unique table linked to it and the results are consistent.</p>
<p>So, is there some known issue with Access, or ODBC and inserting <code>NULL</code> values to <code>nvarchar</code> fields?</p>
<p><strong>Update.</strong><br />
Thanks for the answers so far.<br />
Still no luck understanding why though ;-(</p>
<p>I tried with an even smaller set of assumptions: I created a new database in SQL Server with a single table <code>StockEvent</code> defined as such:</p>
<pre><code>SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[StockEvent](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Description] [nvarchar](max) NULL
) ON [PRIMARY]
GO
</code></pre>
<p>Then linked that table though ODBC into the test Access 2007 application.<br />
That application contains no forms, nothing except the exact 2 subroutines above.</p>
<ul>
<li>If I click on the linked table, I can edit data and add new records in datasheet mode.<br />
Works fine.</li>
<li>If I try any of the 2 subs to insert a record, they fail with the 3155 error message.<br />
(The table is closed and not referenced anywhere else and the edit datasheet is closed.)</li>
<li>If I try the SQL insert query in SQL Server Management Studio, it works fine.</li>
</ul>
<p><strong>Now for the interesting bit:</strong></p>
<ul>
<li>It seems that anything as big or bigger than <code>nvarchar(256)</code>, including <code>nvarchar(MAX)</code> will fail.</li>
<li>Anything with on or below <code>nvarchar(255)</code> works.<br />
It's like Access was considering <code>nvarchar</code> as a simple string and not a memo if its size is larger than 255. </li>
<li>Even stranger, is that <code>varchar(MAX)</code> (wihout the <strong><code>n</code></strong>) actually works!</li>
</ul>
<p>What I find annoying is that Microsoft's own converter from Access to SQL Server 2008 converts <code>Memo</code> fields into <code>nvarchar(MAX)</code>, so I would expect this to work. </p>
<p>The problem now is that I need <code>nvarchar</code> as I'm dealing with Unicode...</p>
http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/979315#9793151Answer by Oorang for Inserting NULL in an nvarchar fails in MSAccessOorang2009-06-11T04:26:58Z2009-06-11T04:26:58Z<p>That should be legal syntax. Is it possible that the field you are try to give a null value is linked to other fields that <em>don't</em> allow null values?</p>
http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/979330#9793301Answer by Robert Harvey for Inserting NULL in an nvarchar fails in MSAccessRobert Harvey2009-06-11T04:35:51Z2009-06-11T04:42:48Z<p>Potential concurrency problem... Is the record open by another instance of Access on the same or a different machine, or does a form bound to the table have the record open in the same instance of Access on the same machine?</p>
<p>Renaud, try putting something in one of the other fields when you do the insert.</p>
<p>Also, try inserting an empty string ("") instead of a null.</p>
http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/979356#9793561Answer by Aaron Alton for Inserting NULL in an nvarchar fails in MSAccessAaron Alton2009-06-11T04:46:46Z2009-06-11T04:52:23Z<p>Renaud,</p>
<p>Did you try running a SQL Profiler trace? If you look at the Errors and Warnings category it should kick out an error if your insert failed as a result of a SQL Server constraint.</p>
<p>If you don't see any errors, you can safely assume that the problem is in your application.</p>
<p>Also, are you sure you're actually connected to SQL Server? Is CurrentDB not the same variable you're using in your Access test loop?</p>
http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/979554#9795542Answer by Renaud Bompuis for Inserting NULL in an nvarchar fails in MSAccessRenaud Bompuis2009-06-11T05:57:41Z2009-06-11T05:57:41Z<p>OK, I may have found a related answer: <a href="http://social.msdn.microsoft.com/Forums/en-US/sqldataaccess/thread/c6d2466e-ecb5-4a98-963f-ae827dbf8caa" rel="nofollow">Ms Access linking table with nvarchar(max)</a>.</p>
<p>I tried using the standard <em>SQL Server</em> driver instead of the <em>SQL Server Native Client</em> driver and <code>nvarchar(MAX)</code> works as expected with that older driver.</p>
<p>It really annoys me that this seems to be a long-standing, unfixed, bug.<br />
There is no valid reason why <code>nvarchar</code> should be erroneously interpreted as a <code>string</code> by one driver and as a <code>memo</code> when using another.<br />
In both cases, they appear as <code>memo</code> when looking a the datatype under the table design view in Access.</p>
<p>If someone has any more information, please leave it on this page. I'm sure others will be glad to find it.</p>
http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/1703969#17039690Answer by Ice for Inserting NULL in an nvarchar fails in MSAccessIce2009-11-09T21:29:23Z2009-11-09T21:29:23Z<p>Hi, i got something similar. Please let me post here the link to my question: <a href="http://stackoverflow.com/questions/1686431/varcharmax-datatype-odbc-mapping-to-ms-access2003">http://stackoverflow.com/questions/1686431/varcharmax-datatype-odbc-mapping-to-ms-access2003</a>
I refreshed the ODBC-Links one logged on the SQL-Server 2008 itself and once from a clinet windows2003 64-bit Citrix-server getting different datatype-mappings.</p>
<p>The first try was perfect varchar(max) is mapped to ms-access datatype 'memo'.</p>
<p>The second try was poor mapping varchar(max) to ms-access datatype 'text(255)'. AND don't forget, that i am using the hole connectivity-tools from SQL2008-Server and therefore the ODBC-driver called 'SQL Native Client 10.0'. Also SSMS is installed in the Citrix.</p>
<p>In both cases i'm dealing with MS-access2007 and an mdb-file. I couldn't find any reason for this different behaviour - there must be a difference, but where?</p>
http://stackoverflow.com/questions/979269/inserting-null-in-an-nvarchar-fails-in-msaccess/1704031#17040310Answer by Ice for Inserting NULL in an nvarchar fails in MSAccessIce2009-11-09T21:38:37Z2009-11-09T21:38:37Z<p>Hi, it's me again.</p>
<p>i got annother issue (here my post: <a href="http://stackoverflow.com/questions/1625632/error-on-save-a-changed-row-if-the-change-was-in-a-field-of-type-memo">link text</a></p>
<p>In some very rare cases an error arises when saving a row with a changed memo field - same construct explained in my former post but driving sql2000-servers and it's appropriate odbc-driver (SQL SERVER).</p>
<p>The only weired fix is: to expand the table structure on sql-server with a column of datatype [timestamp] and refresh the odbc-links. That works and releases the show-stopper in this column on this one row ...</p>
<p>Maybe this info can help someone - for me it's history in going further to odbc with sql2008 in changing the datatypes [text] to [varchar(max)].</p>