问题描述
大家好。我需要有关以下方面的帮助:
给出下表:
CREATE TABLE T1(C1 nvarchar(10),C2钱)
插入T1值(''A'',1)
插入T1值(''B'',2)
INSERT INTO T1 VALUES(''C'',3)
让'我说我在本地服务器上有这个表,我想上传
它到远程服务器和远程服务器上传到数据库
包含相同的表格。
上传部分可由另一个人完成应用程序在远程
服务器上,但我想要的是一种以最快的方式传输数据的方法。
我需要遵循哪些步骤?
tia,
Rey Guerrero
Hello everyone. I need help regarding the following:
Given the following table:
CREATE TABLE T1 (C1 nvarchar(10), C2 money)
INSERT INTO T1 VALUES (''A'',1)
INSERT INTO T1 VALUES (''B'',2)
INSERT INTO T1 VALUES (''C'',3)
let''s say that i have this table in a local server and i want to upload
it to a remote server and in the remote server upload it to a database
that contains the same table.
the uploading part can be done by another application in the remote
server, but i want i need is a way to transfer the data at the fastest
possible way.
what steps do i need to follow?
tia,
Rey Guerrero
这篇关于XML数据处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!