Just send this request to the server:
SELECT * INTO [BackupTable] FROM [OriginalTable]
This will create a backup table from scratch (an error will be selected if it already exists). For large tables, prepare for this to take some time. This should mimic data types, sorting, and NULLness (NULL or NOT NULL), but not copy indexes, keys, or similar restrictions.
If you need help sending sql queries to a database, this is another problem.