Don't use a into. Create the table first and use OpenQuery, it is far easier to control and less confusing(At least for me).Step 1 make sure your server is setup for rpcexec sp_serveroption @server='daychgdb', @optname='rpc', @optvalue='true'exec sp_serveroption @server='daychgdb', @optname='rpc out', @optvalue='true'
Step 2 Create the table.exec ('Create Table test(MyCol TEXT,MyCol2 TEXT)') at daychgdbStep 3 write your query.INSERTOPENQUERY(daychgdb,'select col1Name,col2Name from test') --Change the column Names to the ones you are importing to.SELECT COL1Name,Col2Name --Change to the column names importing from.from daychgdb...geo
Hope this helps, but the "Select Into" method you mentioned, to the best of my knowledge is not a option. You will need to do it the long way (Which is also a better practice than select into statements.)
Success is 10% Intelligence, 70% Determination, and 22% Stupidity.\_/ _/ _/\_/ _/\_/ _/ _/- 881