Can't add to local table

I created a local table in Tessitura, followed all the directions in the help docs and made sure I had security rights to the table in Security, but can't add anything to the table in the client. I get an error message that says: String or binary data would be truncated. All I'm trying to add is a number.

I can add items to the table via SQL by using INSERT INTO, but no love in Tessitura. I' sure it's something small, but I can't find it and it's driving me crazy! Any ideas?

Thanks,

Melissa

Parents
  • Any chance you can list out the column data types?  I usually find that one of those did not match as exactly as I thought (tinyint vs. int, varchar length, etc...).  You can always try using CAST() to allow truncating, but as you say it probably should not be truncating.  Or maybe there are some leading/trailing spaces that are affecting things?

Reply
  • Any chance you can list out the column data types?  I usually find that one of those did not match as exactly as I thought (tinyint vs. int, varchar length, etc...).  You can always try using CAST() to allow truncating, but as you say it probably should not be truncating.  Or maybe there are some leading/trailing spaces that are affecting things?

Children