polymathinc
Programmer
OK, with everyone's help I am able to update the data in an existing SQL database. Thanks.
Question, when I issue the INSERT command to an existing table to append a record and store some data it results in the following error "[ODBC SQL Driver][SQL Server]Cannot insert the value NULL into column "SalesOrder", table sysprocompanyT.dbo.sormaster; column does not allow nulls, INSERT fails.
The simple code I have is:
INSERT INTO sormaster (salesorder) VALUES ("000526")
This of course creates the record in the view but does not write the record back to the server when I issue the TABLEUPDATE() command.
I have a database called SCANNER
I have a remote view called sormaster
Am I missing something? This is my first experience with MS SQL server and I appreciate the help.
Question, when I issue the INSERT command to an existing table to append a record and store some data it results in the following error "[ODBC SQL Driver][SQL Server]Cannot insert the value NULL into column "SalesOrder", table sysprocompanyT.dbo.sormaster; column does not allow nulls, INSERT fails.
The simple code I have is:
INSERT INTO sormaster (salesorder) VALUES ("000526")
This of course creates the record in the view but does not write the record back to the server when I issue the TABLEUPDATE() command.
I have a database called SCANNER
I have a remote view called sormaster
Am I missing something? This is my first experience with MS SQL server and I appreciate the help.