hi all
i've read a bunch of posts on querying sql tables and returning info, but I just want to update the SQL tables and that is all. I don't need to check anything or bring anything down from SQL, I simply have a table that I create in fox and I have an identical table in SQL that I want to send that to. What is the best way?
I am reading about cursoradapters now
I've used the "UPDATE" function before to just update a few fields in a remote DB, but I'm not sure if that is silly to do in this case - one by one i mean, it's one big dump of a table, I'm positive that everything is a compatible data type and ready to go and I've issued an
INSERT INTO mkt_headcount
SELECT *
FROM myFoxTbl
but this isn't working, I get
Connectivity error: [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'mkt_headcount'."
I can query the sql table and I know it's there, I'm thinking I'm forgetting a step somewhere
I guess my main question here is what's the best way to approach this? Then, why isn't that query working?
I tried to think of all details to tell, but please tell me if you need more information to respond, thank you much
i've read a bunch of posts on querying sql tables and returning info, but I just want to update the SQL tables and that is all. I don't need to check anything or bring anything down from SQL, I simply have a table that I create in fox and I have an identical table in SQL that I want to send that to. What is the best way?
I am reading about cursoradapters now
I've used the "UPDATE" function before to just update a few fields in a remote DB, but I'm not sure if that is silly to do in this case - one by one i mean, it's one big dump of a table, I'm positive that everything is a compatible data type and ready to go and I've issued an
INSERT INTO mkt_headcount
SELECT *
FROM myFoxTbl
but this isn't working, I get
Connectivity error: [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'mkt_headcount'."
I can query the sql table and I know it's there, I'm thinking I'm forgetting a step somewhere
I guess my main question here is what's the best way to approach this? Then, why isn't that query working?
I tried to think of all details to tell, but please tell me if you need more information to respond, thank you much