I have a sql server pass-thru query like this:
*select * into myTable from openquery (yourComputer, 'select x,y,z, from yourTable')*
The problem is the columns in myTable are defaulting to not null and I will later want to add rows to this table with some columns null.
Can I get round this?