sql server中資料庫之間複製表資料

來源:互聯網
上載者:User
資料庫表間資料複製      在利用資料庫開發時,常常會將一些表之間的資料互相匯入。當然可以編寫程式實現,但是,程式常常需要開發環境,不方便。最方便是利用sql語言直接匯入。既方便而修改也簡單。以下就是匯入的方法。 1。表結構相同的表,且在同一資料庫(如,table1,table2)Sql :insert into table1 select * from table2 (完全複製)           insert into table1 select distinct * from table2(不複製重複紀錄)          insert into table1 select top 5 * from table2 (前五條紀錄)2。   不在同一資料庫中(如,db1 table1,db2 table2)sql:    insert into db1..table1 select * from db2..table2 (完全複製)           insert into db1..table1 select distinct * from db2table2(不複製重複紀錄)          insert into tdb1..able1 select top 5 * from   db2table2 (前五條紀錄)3.      表結構不同的表或複製部分紀錄(如,dn_user,dn_user2)a.    建一個新表[DN_UserTemp](在老表dn_user上增加一列)CREATE TABLE [DN_UserTemp] ( [Num] [numeric](18, 0) IDENTITY (1, 1) NOT NULL)[Id] [idtype] NOT NULL ,[Name] [fntype] NOT NULL ,[Descript] [dstype] NULL ,[LogonNm] [idtype] NOT NULL ,[Password] [idtype] NULL ,[Gender] [char] (1) NULL ,[Quited] [booltype] NOT NULL,[OffDuty] [booltype] NOT NULL ,[Stopped] [booltype] NOT NULL, [OSBind] [booltype] NOT NULL, [Domain] [idtype] NULL ,[EMail] [fntype] NULL ,[UnitId] [idtype] NULL ,[BranchId] [idtype] NULL ,[DutyId] [idtype] NULL ,[LevelId] [idtype] NULL ,[ClassId] [idtype] NULL ,[TypeId] [idtype] NULL ,[IP] [varchar] (15) COLLATE Chinese_PRC_CI_AS NULL ,[ExpireDT] [datetime] NULL ,[Sort] [int] NOT NULL ,[AllowDel] [booltype] NOT NULL,[UnitChief] [booltype] NOT NULL, [BranchChief] [booltype] NOT NULL ,[UnitDeputy] [booltype] NOT NULL ,[BranchDeputy] [booltype] NOT NULL ,              [Num] [numeric](18, 0) IDENTITY (1, 1) NOT NULL ) ON [PRIMARY]b. 將dn_uer2的資料拷入dn_usertempsql:insert into dn_usertemp select * from dn_user2c.將dn_usertemp 拷入dn_usersql:declare @i intdeclare @j intdeclare @Name fntypeset @i=1select @j=count(*) from dn_usertempwhile @i<@j 1beginselect @Name=Name from dn_usertemp where Num=@iprint @Nameinsert into dn_user (Name) values (@Name) where Num=@iselect @i=@i 1end---------------------------creat到--然後把資料庫名改成想複製到的那個庫的名稱
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.