What is the best way to create an Empty DataTable object with the schema of a sql server table?
Try: SELECT TOP 0 * FROM [TableName]
SELECT TOP 0 * FROM [TableName]
and use SQLDataAdapter to fill a DataSet, then get the Table from that DataSet.