Hi, is there a way to create an empty table from it's schema definition? i.e., i'd like to be able to load in a text file that defines the table:
CREATE TABLE Geography(
Id int not null
,Country char(50) not null
,Province char(50) not null
...
rather than say, read it in from a db.
thanks,
steph