I have a small application / site on a dev server with a data table in SQL Server [varchar (40), varchar (40), varchar (MAX)]. I want to take a data table and push it to a live server. I tried to export to txt, Excel and Access, but every time an error occurs during import, due to the inability to parse due to data in the varchar (MAX) or unicode field to convert non-Unicode from Access.
It seems to me that I do not see a good solution here. This does not need to be automated at the moment. I believe that there are ways to transfer tables between databases connected via a network / Internet connection, but our live database is not accessible from our office. I used data export to MySQL before creating a script to work in another database to insert all data records, but I do not think that this is available in MSSQL.
Any suggestions?
source share