搜尋sql server中的所有表和所有列

來源:互聯網
上載者:User

我們平時做調查的時候,經常會疑惑某個資料到底是從哪來的,往往使用事件檢視器之類的捕捉sql來找,其實我們也可以用下邊這條sql試試。不過在資料量大的時候確實是比較慢。

 

drop table #
declare @t  varchar(255),@c  varchar(255)
create table # (name varchar(256),cols varchar(4000))
declare  table_cursor  cursor  for 
select  a.name,b.name  from  sysobjects  a,syscolumns  b 
where  a.id=b.id  and  a.xtype='U' and b.xtype in (35,99,167,175,231,239)

--上邊這幾個數字是我從sys.types查出來的,限制了只搜尋文本類型,具體使用的時候可以自行修改
open  table_cursor  fetch  next  from  table_cursor 
into  @t,@c 
while(@@fetch_status=0)
begin 
    exec('
set nocount on
if exists(select top 1 '+@c+' from [' + @t + '] where [' + @c + '] like ''%lond%''
    begin
        if not exists(select 1 from # where name='''+@t+''')
            insert into # select '''+@t+''','''+@c+'''
        else
            update # set cols=cols+'','+@c+''' where name='''+@t+'''
    end   
    ')
    fetch  next  from  table_cursor  into  @t,@c 
end
close  table_cursor  deallocate  table_cursor;
select * from #

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.