SQL Server 2000 未公開的預存程序

來源:互聯網
上載者:User
-- sp_MSget_qualified_name 擷取給定對象的合格名稱USE pubsGOdeclare @object_id int, @qualified_name nvarchar(512)select @object_id = object_id('authors')EXEC sp_MSget_qualified_name @object_id, @qualified_name outputselect @qualified_name-- sp_MSdrop_object 用於刪除為給定的對象ID(它可以是表,視圖,預存程序),以titleauthor為例USE pubsGOdeclare @object_id intselect @object_id = object_id('titleauthor')EXEC sp_MSdrop_object @object_idGO-- sp_MSgettools_path 返回SQL Server 2000工具和公用程式的路徑USE masterGOdeclare @install_path NVARCHAR(260)EXEC sp_MSgettools_path @install_path OUTPUTselect @install_pathGO-- sp_MScheck_uid_owns_anything 返回指定使用者擁有的對象列表。USE pubsGOEXEC sp_MScheck_uid_owns_anything UIDGO-- sp_columns_rowset 返回完整的列描述,名稱,包括長度,類型等USE pubsGOEXEC sp_columns_rowset 'authors'GO-- sp_MSforeachdb 有時候,你需要所有資料庫執行相同的動作。遊標可以完成這個目的,或者您也可以使用預存程序來完成的sp_MSforeachdb以較少的代碼來完成同樣的目的。對所有的資料庫 CHECKDBEXEC sp_MSforeachdb @command1="print '?' DBCC CHECKDB ('?')"-- sp_MSforeachtable 預存程序來重建資料庫中所有的遊標:EXEC sp_MSforeachtable @command1="print '?' DBCC DBREINDEX ('?')"-- sp_MShelpcolumns 預存程序返回完整架構的名稱表,其中包括長度,類型,以及是否列計算。 USE pubsGOEXEC sp_MShelpcolumns 'authors'-- sp_MShelpindex 返回的指定的名稱資訊,狀態,填滿因數,索引列名和檔案表組USE pubsGOEXEC sp_MShelpindex 'authors'-- sp_MShelptype 返回資料庫所有的資料類型,包括使用者定義的USE pubsGOEXEC sp_MShelptype-- sp_MSindexspace 返回表的索引佔用空間的大小USE pubsGOEXEC sp_MSindexspace 'authors'-- sp_MSkilldb 刪除損壞的資料庫,DBCC DBREPAIRUSE masterGOEXEC sp_MSkilldb 'pubs'-- sp_MStablespace 返回表行數,佔用空間大小和索引使用大小USE pubsGOEXEC sp_MStablespace 'authors'-- sp_tempdbspace 返回臨時資料庫大小與已使用的空間大小EXEC sp_tempdbspace-- sp_who2 返回指定使用者的進程資訊,比sp_who更詳細EXEC sp_who2 'sa'

原文:http://www.mssqlcity.com/Articles/Undoc/SQL2000UndocSP.htm

相關文章

聯繫我們

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