sqL系統表的使用期

2021-04-12 22:30:32 字數 957 閱讀 3027

--1:獲取當前資料庫中的所有使用者表

select name from sysobjects where xtype='u' and status>=0

--2:獲取某乙個表的所有字段

select name from syscolumns where id=object_id(n'表名')

select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like n'%表名%'

--4:檢視當前資料庫中所有儲存過程

select name as 儲存過程名稱 from sysobjects where xtype='p'

--5:查詢使用者建立的所有資料庫

select * from master..sysdatabases d where sid not in(select sid from master..syslogins where name='sa')

或者select dbid, name as db_name from master..sysdatabases where sid <> 0x01

--6:查詢某乙個表的字段和資料型別

select column_name,data_type from information_schema.columns

where table_name = n'表名'

--7:獲取資料庫檔案路徑

select ltrim(rtrim(filename)) from 資料庫名..sysfiles where charindex('mdf',filename)>0

orselect ltrim(rtrim(filename)) from 資料庫名..sysfiles where charindex('ldf',filename)>0

--8:獲取某乙個表的基本資訊

sp_mshelpcolumns n'表名'

idea延長使用期

0.如果你的idea 版本2019.02 是已過期狀態則先上網找個啟用碼啟用再進行下面步驟延長使用期至2089年 提取碼 b184 3.配置完後重啟idea,然後將上面資料夾中的 啟用碼.txt 中的啟用碼複製到idea的activation code中啟用 如果重啟idea後有自動彈出註冊框則直接...

流暢的python第十七章使用期物處理併發

從 python 3.4 起,標準庫中有兩個名為 future 的類 concurrent.futures.future 和 asyncio.future。這兩個類的作用相同 兩個 future 類的例項都表示可能已經完成或 者尚未完成的延遲計算 我們要記住一件事 通常情況下自己不應該建立期物,而只...

SQL 系統表的操作

1 獲取當前資料庫中的所有使用者表 select name from sysobjects where xtype u and status 0 2 獲取某乙個表的所有字段 select name from syscolumns where id object id 表名 select a.from...