Can I Select * into a Sqlserver Table from a SqlExpress Table the way I can from a Sqlserver Table to a Sqlserver Table using
Select * into Table2 from Table1
If so, what is the syntax?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
These are distinct servers, so you would need to introduce a linked server, on the server where you intend to make a reference to the other server.
Then you need to use the full name of the table/object needed in the query
as in
Note the square brackets which are necessary of course, when the instance/server name include dots, spaces and such characters.