婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > 一些SQL Server存儲過程參數(shù)及例子

一些SQL Server存儲過程參數(shù)及例子

熱門標(biāo)簽:福州外呼系統(tǒng)招商 AI智能云呼電話機器人怎么注冊 溫州語音外呼系統(tǒng)排名 商家地圖標(biāo)注圖片 怎么在高德地圖標(biāo)注多個點 四川穩(wěn)定外呼系統(tǒng)公司 百度地圖標(biāo)注信息怎么修改 沈陽外呼系統(tǒng)有效果嗎 電話機器人接口是什么樣的

Microsoft included several hundred stored procedures in the various versions of Microsoft SQL Server and it has documented a good percentage of them. But many stored procedures remain undocumented. Some are used within the Enterprise Manager GUI in SQL 2000 and were not intended to be used by other processes. Microsoft has slated some of these stored procedures to be removed (or they have been removed) from future versions of SQL Server. While these stored procedures can be very useful and save you lots of time, they can be changed at any time in their function or they can simply be removed.

The chart below shows that while many of the procedures have been carried through from one version of Microsoft SQL Server to another, new stored procedures have been introduced, and some have been removed from the install package. Most, if not all, of the procedures require the user to be a member of the sysadmin fixed server role in order to execute the procedures. The stored procedures that interact with the file system also require that the user executing the procedure (as well as SQL Server's service account) have access to the file/folder.

Procedure Name SQL 2000 SQL 2005 SQL 2008
sp_executeresultset X    
sp_MSforeachdb X X X
sp_MSforeachtable X X X
sp_readerrorlog X X X
xp_create_subdir   X X
Xp_delete_file   X X
xp_dirtree X X X
xp_fileexist X X X
xp_fixeddrives X X X
xp_getfiledetails X    
xp_getnetname X X X
xp_loginconfig X X X
xp_makecab X    
xp_msver X X X
xp_get_mapi_profiles X X X
xp_subdirs X X X
xp_test_mapi_profile X X X
xp_unpackcab X    

sp_executeresultset

Microsoft removed this handy little procedure called sp_executeresultset from SQL Server in SQL Server 2005. It allows you to generate dynamic SQL code on the fly by using a SELECT query. Then, the resulting SQL commands will be executed against the database. It permits you to create a single piece of code that can, in a single step, find the number of records in every table in your database (as the example shows). This is an undocumented stored procedure and there is no way of knowing why it was removed. But, alas, this handy utility is gone.

exec sp_execresultset 'SELECT ''SELECT '''''' + name + '''''',
count(*) FROM '' + name
from sysobjects
where xtype = ''U'''

sp_MSforeachdb / sp_MSforeachtable

Two procedures, sp_MSforeachdb and sp_MSforeachtable, are wrappers around a cursor. They allow you to execute T-SQL code against each database on your SQL Server and each table within the current database, respectively. You cannot, however, use an sp_MSforeachtable command within an sp_MSforeachdb command in SQL 2000 and prior. The cursor name that was used within those procedures was the same (hCForEach) and would therefore return an error saying that the cursor name was already in use for each execution of the sp_MSforeachtable. In SQL Server 2005, Microsoft resolved this issue. In order to "next" the command, you must tell one of the procedures it will be using a different replacement character other than the default question mark. I change the replacement character in the database command because it's easier.

Print each table name in the current database.

exec sp_MSforeachtable 'print ''?'''

Print each database on the current server.

exec sp_MSforeachdb 'print ''?'''

Print each table on the current server.

exec sp_MSforeachdb 'use [@] exec sp_MSforeachtable ''print
''''@.?''''''', '@'

sp_readerrorlog / xp_readerrorlog

The stored procedure sp_readerrorlog actually comes in two forms. Each works the same; one is simply a wrapper for the second. The wrapper stored procedure is sp_readerrorlog and it calls xp_readerrorlog. Both have four input parameters, but only the first two are useful to us. The first parameter establishes the file number that you wish to view. The second is the log to view (1 or null for ERRORLOG, 2 for SQL Agent Log). This allows you to view your error logs quickly and easily instead of having to look at the bloated log viewer that now comes with SQL Server 2005 and SQL 2008.

View the current SQL ERRORLOG file.

exec sp_readerrorlog

exec sp_readerrorlog 0, 1

View the Prior SQL Agent Log file.

exec sp_readerrorlog 1, 2

xp_create_subdir

Introduced in SQL Server 2005, the xp_create_subdir stored procedure is very handy because you can use it to create folders on SQL Server's hard drive or on a network share from within T-SQL.

exec xp_create_subdir 'c:\MSSQL\Data'

xp_delete_file

Use the xp_delete_file stored procedure introduced in SQL Server 2005 to delete files from SQL Server's hard drive or a network share from within T-SQL.

xp_dirtree

The xp_dirtree procedure allows you to view the folder tree and/or file list beneath a folder. This procedure has several parameters that control how deep the procedure searches and whether it returns files and folders or folders only. The first parameter establishes the folder to look in. (Recommendation: Do not run this procedure against the root of the drive that Windows is installed on because it will take some time to generate the tree and return the data.) The second parameter limits the number of recursive levels that the procedure will dig through. The default is zero or all levels. The third parameter tells the procedure to include files. The default is zero or folders only, a value of 1 includes files in the result set. Specifying a third value not equal to zero will add an additional column to the output called file which is a bit field showing the entry in a folder or file.

Get the full directory tree.

exec xp_dirtree 'd:\mssql\'

Get the first two levels of the directory tree.

exec xp_dirtree 'd:\mssql', 2

Get the first three levels of the directory tree, including files.

exec xp_dirtree 'd:\mssql\', 3, 1

xp_fileexist

This SQL Server stored procedure, xp_fileexist, is used to determine if a file exists on SQL Server's hard drive or on a network share. It is extremely useful in stored procedures that load data from flat files. It allows you to check and see if the file exists before attempting to blindly load the file. The procedure has two parameters. Use the first parameter to determine if the file or folder you want exists. The second is an output parameter, which when specified, returns a 1 or 0 if the file exists or does not.

Without the parameter.

exec xp_fileexist 'c:\importfile.csv'

With the parameter.

DECLARE @file_exists int
exec xp_fileexist 'c:\importfile.csv', @file_exists OUTPUT
SELECT @file_exists
 

xp_fixeddrives

The procedure xp_fixeddrives is one of the most useful procedures. It presents a list of all drive letters and the amount of free space each drive has. The parameter has a single optional input parameter that can filter the results by drive type. A value of 3 will return all mass storage devices (CD-ROM, DVD, etc.); a value of 4 will return the hard drives; while a value of 2 will return removable media (USB thumb drives, flash drives, etc.).

Return all drives.

exec xp_fixeddrives

Return hard drives only.

exec xp_fixeddrives 2

xp_getfiledetails

The procedure xp_getfiledetails is another extremely useful procedure, which was last available in SQL Server 2000. This procedure returns size, date and attribute information about the file specified, including date and times created, accessed and modified.

exec xp_getfiledetails 'c:\filetoload.csv'

xp_getnetname

The procedure xp_getnetname returns the name of the physical machine where Microsoft SQL Server is installed. You can have the machine name returned as a record set or as a variable.

Without the parameter.

exec xp_getnetname

Using the parameter.

DECLARE @machinename sysname
exec xp_getnetname @machinename OUTPUT
select @machinename
 

xp_loginconfig

This SQL Server stored procedure will tell you some basic authentication information about the user executing it. It tells you the authentication method (Windows versus SQL Login), the default domain of the server, the audit level, as well as some internal separator information.

exec xp_loginconfig

xp_makecab

Back in SQL Server 2000, Microsoft gave us the ability to compress OS files directly from T-SQL without having to shell out to DOS via xp_cmdshell and run third-party software, like pkzip or winzip. That command was xp_makecab. It allows you to specify a list of files you want to compress as well as the cab file you want to put them in. It even lets you select default compression, MSZIP compression (akin to the .zip file format) or no compression. The first parameter gives the path to the cab file in which you want to create or add files to. The second parameter is the compression level. The third parameter applies if you want to use verbose logging. Starting with the fourth parameter and on down are the names of the files you want to compress. In my testing, I was able to pass 45 file names to be compressed to the extended stored procedure, which means that it is a very flexible solution to your data compression requirements.

exec xp_makecab 'c:\test.cab', 'mszip', 1, 'c:\test.txt' , 'c:\test1.txt'

xp_msver

The procedure xp_msver is very useful when looking for system information. It returns a wealth of information about the host operating system -- the SQL version number, language, CPU type, copyright and trademark information, Microsoft Windows version, CPU count and affinity settings, physical memory settings and your product key. This procedure has many input parameters that allow you to filter down the records that are returned. Each parameter is a sysname data type, which accepts the name of one of the records. If any parameters are specified, only the rows specified as a parameter are returned.

No filter specified.

exec xp_msver

Return only Platform and Comments records.

exec xp_msver 'Platform', 'Comments'

xp_get_mapi_profiles

The xp_get_mapi_profiles procedure assists you in configuring SQL Mail. When executed, it will call to Windows via the SQL Mail component of SQL Server and display a list of available MAPI profiles that are configured in Outlook and it specifies which profile is the default profile. If it doesn't display any records, then either Outlook is not configured correctly or SQL Server is not running under a domain account with Outlook profiles configured. In order to use this procedure in SQL Server 2005 or SQL Server 2008, you must enable the "SQL Mail XPs" option in the Surface Area Configuration tool or within the sp_configure procedure.

exec xp_get_mapi_profiles

xp_subdirs

The xp_subdirs procedure displays a subset of the information avaialble through xp_dirtree. Xp_subdirs will display all the subfolders in a given folder. It can be very handy when you are building a directory tree within a table dynamically and you do not want to worry about the extra parameters of the xp_dirtree procedure.

exec xp_subdirs 'd:\mssql'

xp_test_mapi_profiles

The procedure xp_test_mapi_profiles is another undocumented stored procedure that is very useful when you are setting up SQL Mail. It will start, then stop, a MAPI session to ensure that MAPI is configured correctly and working within the confines of Microsoft SQL Server. I should note that it does not verify the mail server configuration within the MAPI client (Outlook) nor does it send a test message.

The procedure accepts a single input parameter. That parameter is the name of the MAPI profile you wish to test. Like the xp_get_mapi_profiles procedure, for this stored procedure to function in SQL Server 2005 and SQL Server 2008, you must enable the "SQL Mail XPs" option in the Surface Area Configuration tool or within the sp_configure procedure.

When working with the SQL Mail stored procedures, be aware that SQL Mail is still slated for removal from the Microsoft SQL Server platform. That means the procedures sp_get_mapi_profiles and xp_test_mapi_profiles are slated for removal, as they are part of the SQL Mail subsystem. You should do all mail work on SQL Server 2005 and later using Database Mail instead of SQL Mail to ensure code portability with future versions of SQL Server. Microsoft initially slated SQL Mail for removal in SQL Server 2008, however, based on its inclusion in the current beta release, its future in SQL Server 2008 is unknown.

xp_unpackcab

Along with the xp_makecab procedure comes the xp_unpackcab extended stored procedure, and it does just what it says: It extracts files from cab files. The first paramater is the cab file, the second is the path you want to extract to and the third is verbose logging. A fourth paramater lets you specify the "extract to" file name.

exec xp_unpackcab 'c:\test.cab', 'c:\temp', 1

While this is not intended to be a complete list of the undocumented stored procedures in SQL Server, it does provide a reference point for many of these procedures with the hope of making the lives of the SQL Server administrators easier. Remember, you should never count on these procedures surviving from one SQL Server version to the next, nor should you expect their code base to remain the same between versions. That said, go code and enjoy.

All information provided about Microsoft SQL Server 2008 (Katmai) is based on beta edition 10.0.1019 of the software and is subject to change without notice.

您可能感興趣的文章:
  • sqlserver存儲過程中SELECT 與 SET 對變量賦值的區(qū)別
  • SQL Server 2008 存儲過程示例
  • 如何在SQL Server 2008下輕松調(diào)試T-SQL語句和存儲過程
  • SqlServer獲取存儲過程返回值的實例
  • sqlserver 存儲過程中If Else的用法實例
  • sqlserver中查找所有包含了某個文本的存儲過程
  • Sql Server中存儲過程中輸入和輸出參數(shù)(簡單實例 一看就懂)
  • sqlserver 各種判斷是否存在(表名、函數(shù)、存儲過程等)
  • SQL Server 分頁查詢存儲過程代碼
  • SQL Server存儲過程同時返回分頁結(jié)果集和總數(shù)

標(biāo)簽:無錫 寶雞 邯鄲 西寧 汕尾 七臺河 來賓 營口

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《一些SQL Server存儲過程參數(shù)及例子》,本文關(guān)鍵詞  一些,SQL,Server,存儲,過程,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《一些SQL Server存儲過程參數(shù)及例子》相關(guān)的同類信息!
  • 本頁收集關(guān)于一些SQL Server存儲過程參數(shù)及例子的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    中文字幕av在线一区二区三区| 亚洲免费视频成人| 日韩成人dvd| 色婷婷精品大在线视频| 国产精品一区二区三区四区| 欧美不卡一区二区| 韩国av一区二区三区| 久久久久高清精品| 国产成人精品亚洲日本在线桃色| 久久嫩草精品久久久精品| 麻豆精品新av中文字幕| 亚洲精品一区二区三区影院| 国产成人综合视频| 亚洲欧美一区二区久久| 欧美亚洲国产一区二区三区| 日本成人在线网站| 欧美极品xxx| 91成人免费网站| 国模娜娜一区二区三区| 欧美电影免费提供在线观看| 久久99国产精品久久| 国产精品欧美一区二区三区| 欧美人体做爰大胆视频| 国产成人亚洲精品青草天美| 亚洲午夜日本在线观看| 精品国产3级a| 欧美图区在线视频| 国产99一区视频免费| 日韩av在线发布| 欧美国产精品专区| 9191成人精品久久| 成人97人人超碰人人99| 奇米影视在线99精品| 一区二区三区在线看| 国产女人水真多18毛片18精品视频 | 极品美女销魂一区二区三区免费| 国产精品久久三| 91.麻豆视频| 91免费在线视频观看| 国产麻豆精品视频| 青青草97国产精品免费观看| 国产精品麻豆欧美日韩ww| 欧美成人aa大片| 欧美丰满一区二区免费视频| 91福利精品视频| 成人av电影观看| 国产成人高清在线| 国内外精品视频| 蜜桃一区二区三区在线| 亚洲第四色夜色| 亚洲综合免费观看高清在线观看| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 亚洲精品免费视频| 久久网站热最新地址| 欧美一区二区三区人| 欧美日韩精品专区| 91在线丨porny丨国产| 成人高清av在线| 国产一区二区剧情av在线| 久久99精品国产| 久草在线在线精品观看| 久久国产精品一区二区| 久久国产夜色精品鲁鲁99| 免费在线观看一区| 精品一区二区三区免费| 久久99精品国产| 狠狠色丁香久久婷婷综| 韩国在线一区二区| 91色综合久久久久婷婷| 色综合欧美在线| 精品污污网站免费看| 欧美日韩免费一区二区三区| 欧美男生操女生| 精品欧美黑人一区二区三区| 国产日韩欧美高清在线| 国产精品久久福利| 一区2区3区在线看| 日本午夜一本久久久综合| 久久99精品国产91久久来源| 国产馆精品极品| 成年人国产精品| 欧美少妇一区二区| 精品国产乱子伦一区| 中文一区二区完整视频在线观看| 亚洲视频图片小说| 日韩中文字幕区一区有砖一区| 久久99精品国产.久久久久久 | 久久综合九色综合97婷婷女人 | 日韩一级大片在线| 久久亚洲精华国产精华液| 中文字幕av资源一区| 亚洲一区二区三区国产| 精品一区二区在线播放| 95精品视频在线| 精品久久一区二区| 综合激情网...| 激情小说欧美图片| 欧美色视频在线观看| 久久精品欧美日韩| 午夜电影一区二区| 成人av影院在线| 51精品国自产在线| 日韩美女视频一区| 国产精品一品视频| 777奇米成人网| 亚洲欧美一区二区三区极速播放 | 日韩高清在线不卡| 成人性色生活片| 91精品国产麻豆| 一区二区三区四区高清精品免费观看| 久久疯狂做爰流白浆xx| 一道本成人在线| 国产欧美视频一区二区| 久久99精品国产.久久久久 | 91精品免费在线| 一区二区三区中文在线观看| 国产成人免费视频一区| 日韩三级av在线播放| 亚洲第一久久影院| 91香蕉视频黄| 中文字幕一区二区三区色视频| 麻豆精品一区二区综合av| 欧美性高清videossexo| 亚洲九九爱视频| 在线电影院国产精品| 久久精品视频网| 久久精品国产久精国产| 欧美日韩在线三区| 亚洲成人动漫在线免费观看| 在线日韩一区二区| 亚洲久草在线视频| 91精品福利视频| 最新成人av在线| 91麻豆国产精品久久| 国产精品水嫩水嫩| 高清成人在线观看| 国产欧美日韩综合| av在线免费不卡| 国产精品国产自产拍高清av王其 | 视频在线观看一区| 制服丝袜成人动漫| 麻豆精品一区二区综合av| 欧美一级二级三级蜜桃| 久久国产精品一区二区| 精品国产乱码久久久久久久| 九九精品一区二区| 久久精品亚洲乱码伦伦中文 | 一区二区三区在线视频免费| 91猫先生在线| 一区二区久久久| 欧美日韩亚洲国产综合| 日本伊人午夜精品| 日韩欧美在线一区二区三区| 国产激情一区二区三区四区| 中文字幕一区二区三区在线不卡 | 欧美喷水一区二区| 日韩电影在线一区二区三区| 欧美精品一区二区三区很污很色的| 久久超级碰视频| 国产精品日产欧美久久久久| 一本大道久久a久久精品综合| 亚洲影院久久精品| 精品国内二区三区| 福利一区二区在线观看| 亚洲品质自拍视频| 日韩欧美亚洲另类制服综合在线| 丰满放荡岳乱妇91ww| 亚洲精品视频在线观看免费| 欧美一级二级在线观看| caoporn国产精品| 毛片基地黄久久久久久天堂| 国产精品电影一区二区| 欧美色综合网站| 成人黄色777网| 美女脱光内衣内裤视频久久网站| 国产精品网站在线| 欧美一区二区三区男人的天堂| 成人av一区二区三区| 天堂成人国产精品一区| 中国av一区二区三区| 1区2区3区国产精品| 91精品福利在线一区二区三区 | 亚洲gay无套男同| 国产无一区二区| 欧美肥妇毛茸茸| 日本韩国精品一区二区在线观看| 久久99国产精品免费网站| 亚洲一区二区三区在线| 国产精品久久看| 日韩精品自拍偷拍| 欧美老人xxxx18| 91社区在线播放| 成人国产精品免费观看动漫| 国产自产v一区二区三区c| 日韩成人精品视频| 一区二区三国产精华液| 国产精品乱人伦| 欧美国产一区二区| 国产日韩成人精品| 国产女人18水真多18精品一级做|