ACC1x: "Invalid Argument" Error Message Exporting TableLast reviewed: May 14, 1997Article ID: Q109375 |
The information in this article applies to:
SYMPTOMSThe error message "Invalid argument" is displayed when you export a table from Microsoft Access with either the Word For Windows Merge or the "Text (Delimited") format.
CAUSEThe table you are exporting is an attached SQL table that contains a field with a Text data type, which is equivalent to a Microsoft Access Memo field.
RESOLUTIONTo work around this problem you can:
STATUSMicrosoft has confirmed this to be a problem in Microsoft Access versions 1.0 and 1.1. This problem no longer occurs in Microsoft Access version 2.0.
MORE INFORMATIONYou can use the SQL Server sp_help stored procedure to determine which fields in the attached SQL Server table have a Text data type. For example, for a SQL table called MyAddressList that contains a field called Notes that has a Text data type, the sample command
sp_help MyAddressListwould return a listing similar to:
Name Owner Type ---------------------------------------- MyAddressList dbo user table Column_name Type Length Nulls ------------------------------------------- EntryNumber int 4 Name varchar 30 ... other fields ... Notes text 16Note that "text" appears in the Type column for the Notes field.
Steps to Reproduce ProblemNOTE: This article assumes that you are familiar with Microsoft SQL Server and the tools used to administer a Microsoft SQL Server database and tables.
REFERENCESMicrosoft Access "User's Guide," version 1.0, pages 66-68 and page 163 Microsoft Access "User's Guide," version 1.1, pages 67-68, 84-87, and page 167 |
Keywords : IsmTxtd kb3rdparty
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |