Appendding to/from Upsize_ts (time stamp) field

I

Imran J Khan

I am working with MS Access 97, with a SqlServer linked tables. I need to
append data from tblA to tblB, both of them link tables.
I created a new Append Query, but the append fails, I think because of the
Upsize_ts field, a time stamp field created by SqlServer. The error is " You
Tried to assign the Null value to a variable that isn't a Variant data type."
I need to get around this.
Thanks in advance.
 
J

John W. Vinson

I am working with MS Access 97, with a SqlServer linked tables. I need to
append data from tblA to tblB, both of them link tables.
I created a new Append Query, but the append fails, I think because of the
Upsize_ts field, a time stamp field created by SqlServer. The error is " You
Tried to assign the Null value to a variable that isn't a Variant data type."
I need to get around this.

Simply don't append anything to the Upsize_ts field, and don't reference it in
your Query. SQL/Server assigns this binary value automatically when the record
is created or modified, and its value isn't meaningful outside that context;
just ignore the field and let SQL manage it in the background.
 
I

Imran J Khan

John W. Vinson said:
Simply don't append anything to the Upsize_ts field, and don't reference it in
your Query. SQL/Server assigns this binary value automatically when the record
is created or modified, and its value isn't meaningful outside that context;
just ignore the field and let SQL manage it in the background.


That does not work either. Just FYI, the upsize_ts field is a binary field,
I don't know if that makes a difference.
 
J

John W. Vinson

That does not work either. Just FYI, the upsize_ts field is a binary field,
I don't know if that makes a difference.

<shrug> It works fine for me in the four databases which use upsize_ts fields.
Perhaps you could post the SQL of your appedn query.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top