I have a small app/site on a dev server with a data table in SQL Server [varchar(40),varchar(40),varchar(MAX)]. I want to take the data table and push it to the live server. I have tried exporting in txt, Excel and Access but every time there is an error on import related to not being able to parse due to the data in the varchar(MAX) field or unicode to non-unicode conversion from Access.
I feel like I'm overlooking a good solution here. This doesn't need to be automated at the moment. I believe there are ways to transfer tables between databases connected through a network/internet connection but our live database is not accessible from our office. I've used a data export in MySQL before that creates a script to run on another database to insert all data records, but I don't believe that is available in MSSQL.
Any suggestions?