I needed to move out my database to another machine, but since I have very limited read access I can't leverage the backup/restore feature.
I created DDL scripts for the tables and ran them on my new VM. I then extracted the tables that I needed and have them sitting on text files. I need a way to import these files into their respective tables. Whenever I use the native import feature it creates an entirely new table with incorrectly defined value types/sizes. So I need to import directly into the tables I created with the DDL scripts.
Thanks in advance for your help.