久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

用Sql語句將SqlServer數(shù)據(jù)表中的數(shù)據(jù)導(dǎo)入到Access

 浪漫小明 2010-05-30

用Sql語句將SqlServer數(shù)據(jù)表中的數(shù)據(jù)導(dǎo)入到Access
發(fā)表于:2004-5-11 12:46:00--自己寫SQL導(dǎo)入就是這樣:

--在SQL中操縱讀取ACCESS數(shù)據(jù)庫

SELECT *
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0', 
   'c:\test.mdb';'admin';''
        ,[表名])

SELECT * 
FROM opendatasource( 'Microsoft.Jet.OLEDB.4.0',
  'Data Source="c:\test.mdb";Jet OLEDB:Database Password=數(shù)據(jù)庫密碼')...[表名]

/*--說明:
c:\test.mdb                是你要操作的ACCESS數(shù)據(jù)庫名,如果不在SQL服務(wù)器上,需要設(shè)置文件所在的目錄為完全共享,并將目錄改為網(wǎng)絡(luò)目錄
表名                                是你要操作和ACCESS數(shù)據(jù)庫中的表名
數(shù)據(jù)庫密碼                如果你的ACCESS數(shù)據(jù)庫有密碼,就要用第二種方式
其他部分不需要做任何變動(dòng)

如果是導(dǎo)入數(shù)據(jù)到現(xiàn)有表,對(duì)應(yīng)的在: SELECT *
前加上: INSERT INTO 表
語句

如果是導(dǎo)入數(shù)據(jù)并生成新表,對(duì)應(yīng)的在: SELECT *
后加上: INTO 表
語句
--*/

--------------

--如果你的ACCESS數(shù)據(jù)庫及表都沒有建表,可以試試下面的這個(gè)存儲(chǔ)過程

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_exporttb]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[p_exporttb]
GO

/*--數(shù)據(jù)導(dǎo)出Access
        
        導(dǎo)出數(shù)據(jù)庫中的表到Access,可以同時(shí)導(dǎo)出指定的N個(gè)表

        如果文件不存在,將自動(dòng)創(chuàng)建文件
        如果表存在,將覆蓋現(xiàn)有的表

--鄒建 2004.04--*/

/*--調(diào)用示例
        
       &nbsp--導(dǎo)出所有用戶表
       &nbspp_exporttb @s_tbname='',@path='c:\',@fname='test.mdb'

       &nbsp--導(dǎo)出指定表
       &nbspp_exporttb @s_tbname='syscolumns,sysobjects',@path='c:\',@fname='test.mdb'
--*/
create proc p_exporttb
@s_tbname varchar(4000)='',               &nbsp--要導(dǎo)出的表名列表,用逗號(hào)分隔,如果不指定,導(dǎo)出所有表
@path nvarchar(1000),                       &nbsp--文件存放目錄
@fname nvarchar(250),                       &nbsp--文件名
@password varchar(20)='',               &nbsp--ACCESS數(shù)據(jù)庫的密碼
@s_user sysname='',                               &nbsp--如果提示連接錯(cuò)誤,則需要提供登陸sql服務(wù)器的用戶名及密碼
@s_password varchar(50)=''
as 
set nocount on
declare @err int,@src nvarchar(255),@desc nvarchar(255),@out int
declare @obj int,@constr nvarchar(1000),@sql varchar(8000),@fdlist varchar(8000)

--參數(shù)檢測(cè)
if isnull(@fname,'')=''       &nbspset @fname='temp.mdb'

--檢查文件是否已經(jīng)存在
if right(@path,1)<>'\' set @path=@path+'\'
create table #tb(a bit,b bit,c bit)
set @sql=@path+@fname
insert into #tb exec master..xp_fileexist @sql

--數(shù)據(jù)庫創(chuàng)建
select @sql=@path+@fname
        ,@constr='Provider=Microsoft.Jet.OLEDB.4.0;Data Source='+@sql
                +case isnull(@password,'') when '' then '' 
                       &nbspelse ';Jet OLEDB:Database Password='+@password end

if not exists(select 1 from #tb where a=1)
begin
       &nbspexec @err=sp_oacreate 'ADOX.Catalog',@obj out
       &nbspif @err<>0 goto lberr

       &nbspexec @err=sp_oamethod @obj,'Create',null,@constr
       &nbspif @err<>0 goto lberr

       &nbspexec @err=sp_oadestroy @obj
       &nbspif @err<>0 goto lberr
end

--連接數(shù)據(jù)庫
exec @err=sp_oacreate 'adodb.connection',@obj out
if @err<>0 goto lberr

exec @err=sp_oamethod @obj,'open',null,@constr
if @err<>0 goto lberr

--導(dǎo)出處理
declare @tbname sysname,@s varchar(8000)
set @s=case isnull(@s_tbname,'') when '' then ''
       &nbspelse ' and name in('''+replace(@s_tbname,',',''',''')+''')' end
exec('declare tb cursor global for select name from sysobjects where xtype=''U'''+@s)

open tb
fetch next from tb into @tbname
while @@fetch_status=0
begin
       &nbsp--刪除現(xiàn)有的表
       &nbspset @sql='drop table ['+@tbname+']'
       &nbspexec @err=sp_oamethod @obj,'execute',@out out,@sql
       &nbsp--if @err<>0 goto lberr
        
       &nbsp--導(dǎo)入表
       &nbspif isnull(@s_user,'')=''
               &nbspset @sql='SELECT * into ['+@tbname
                        +'] FROM [ODBC;Driver=SQL Server;Server='+ @@servername
                        +';database='+db_name()+'].['+@tbname+']'
       &nbspelse
               &nbspset @sql='SELECT * into ['+@tbname
                        +'] FROM [ODBC;Driver=SQL Server;Server='+ @@servername
                        +';Uid='+@s_user+';Pwd='+isnull(@s_password,'')
                        +';database='+db_name()+'].['+@tbname+']'
                
       &nbspexec @err=sp_oamethod @obj,'execute',@out out,@sql
       &nbspif @err<>0 goto lberr
       &nbspfetch next from tb into @tbname
end
close tb
deallocate tb

--釋放對(duì)象
exec @err=sp_oadestroy @obj

return

lberr:
       &nbspexec sp_oageterrorinfo 0,@src out,@desc out
       &nbspif @obj<>0 exec @err=sp_oadestroy @obj
lbexit:
       &nbspselect cast(@err as varbinary(4)) as 錯(cuò)誤號(hào)
                ,@src as 錯(cuò)誤源,@desc as 錯(cuò)誤描述
       &nbspselect @sql,@constr,@fdlist
go

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多