How to Use create table to create a table on the remote SQL2000 database server (known IP address, account)

Source: Internet
Author: User
Solution:
1. query analyzer to log on to the remote server to create a table

2. the logon method remains unchanged. log on to the local SQL Server directly, and then use the following method to create a table on the linked server.

Create a connection method such as (use the linked server to execute the stored procedure on the remote database)

Select * From openquery (srv_lnk, 'set implicit_transactions off;
-- Table creation statement
Create Table tempdb. DBO. Tb (a int)
; Select status = @ error -- returns whether the table is successfully created.
')
Note:
Srv_lnk ------- Link

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.