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

主頁 > 知識庫 > 一些SQLServer存儲過程參數及舉例

一些SQLServer存儲過程參數及舉例

熱門標簽:申請400電話在哪辦理流程 電銷外呼有錄音系統有哪些 臨沂智能電銷機器人加盟哪家好 外呼運營商線路收費 百度地圖標注改顏色 小e電話機器人 一個導航軟件能用幾個地圖標注點 貴州房產智能外呼系統供應商 鎮江網路外呼系統供應商

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存儲過程參數及舉例》,本文關鍵詞  一些,SQLServer,存儲,過程,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《一些SQLServer存儲過程參數及舉例》相關的同類信息!
  • 本頁收集關于一些SQLServer存儲過程參數及舉例的相關信息資訊供網民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    精品理论电影在线观看| 韩国成人在线视频| 精品视频在线免费观看| 懂色av一区二区在线播放| 日本不卡免费在线视频| 亚洲欧美区自拍先锋| 精品久久久久久久久久久院品网| 色综合久久久久综合99| 国产成人欧美日韩在线电影| 麻豆精品视频在线| 日韩成人免费看| 亚洲成在人线免费| 亚洲永久免费av| 日韩一区在线看| 国产精品久久久久久户外露出| 欧美一区二区免费视频| 欧美区视频在线观看| 欧美亚洲一区三区| 色综合久久久久久久| 日本高清不卡视频| 91九色最新地址| 91天堂素人约啪| 色综合一区二区三区| 色综合久久久久久久久| 99这里都是精品| 91在线小视频| 欧美综合久久久| 欧美日韩久久一区| 欧美一区二区三区男人的天堂| 日韩一级片网址| 久久天天做天天爱综合色| 久久久99精品久久| 亚洲日穴在线视频| 亚洲成人激情av| 久久99精品久久久久婷婷| 狠狠色丁香婷综合久久| 成人高清伦理免费影院在线观看| 亚洲成人免费视| 精品福利视频一区二区三区| 手机精品视频在线观看| 丰满放荡岳乱妇91ww| 风间由美性色一区二区三区| 精品国产3级a| 2023国产精品视频| 中文字幕一区二区5566日韩| 亚洲美女视频在线观看| 亚洲成人精品在线观看| 日本亚洲视频在线| 国产麻豆9l精品三级站| 一本到不卡精品视频在线观看| 欧美午夜一区二区| 欧美一级专区免费大片| 国产精品国产a| 婷婷综合另类小说色区| 精油按摩中文字幕久久| 成人黄色网址在线观看| 欧美色欧美亚洲另类二区| 欧美成va人片在线观看| 1区2区3区国产精品| 久久er精品视频| 色婷婷久久久综合中文字幕| 日韩三级精品电影久久久| 1000部国产精品成人观看| 久久国产精品免费| 91蜜桃在线免费视频| 欧美大片在线观看一区二区| 亚洲日本成人在线观看| 国产乱理伦片在线观看夜一区 | 国产欧美精品在线观看| 亚洲欧美在线另类| 久久成人av少妇免费| 欧美在线啊v一区| 欧美经典三级视频一区二区三区| 亚洲不卡在线观看| www.欧美色图| 欧美精品一区二区三区蜜臀| 亚洲超丰满肉感bbw| 99免费精品视频| 国产婷婷色一区二区三区在线| 亚洲五码中文字幕| 一本大道久久a久久精二百| 国产欧美一区二区三区网站| 麻豆国产欧美一区二区三区| 欧美三级在线视频| 一区二区三区日韩精品视频| 成人午夜在线免费| 精品国产不卡一区二区三区| 日本欧美肥老太交大片| 欧日韩精品视频| 亚洲精品欧美激情| 99精品1区2区| 亚洲天堂免费在线观看视频| 成人国产亚洲欧美成人综合网| 久久久久国色av免费看影院| 国内欧美视频一区二区| 精品国产91乱码一区二区三区| 日韩成人免费电影| 日韩精品一区二区三区中文不卡| 秋霞午夜鲁丝一区二区老狼| 欧美精品v国产精品v日韩精品| 精品久久国产老人久久综合| 六月婷婷色综合| 欧美精品一区二区三| 国产丶欧美丶日本不卡视频| 久久久精品欧美丰满| 国产成人在线看| 国产精品丝袜91| 99riav久久精品riav| 亚洲欧洲中文日韩久久av乱码| 91视频在线观看| 亚洲小少妇裸体bbw| 在线不卡a资源高清| 精品一区二区三区免费| 久久久久久久久久久久久久久99 | 亚洲一区二区精品久久av| 91碰在线视频| 无吗不卡中文字幕| www成人在线观看| 91在线云播放| 日本特黄久久久高潮| 久久天天做天天爱综合色| 91亚洲大成网污www| 日韩成人一区二区| 中文字幕不卡一区| 欧美性猛交xxxxxx富婆| 麻豆免费精品视频| 亚洲人成电影网站色mp4| 91精品啪在线观看国产60岁| 国产尤物一区二区在线| 亚洲免费观看高清完整版在线观看熊 | 久久久99免费| 91香蕉视频mp4| 奇米影视7777精品一区二区| 国产精品你懂的| 欧美一卡二卡三卡| 99re这里只有精品首页| 久久精品国产99国产精品| √…a在线天堂一区| 精品人伦一区二区色婷婷| 日本乱人伦aⅴ精品| 国产一区二区福利| 婷婷一区二区三区| 亚洲精品中文字幕乱码三区| 久久人人97超碰com| 欧美日韩国产在线播放网站| av高清不卡在线| 国产中文字幕一区| 五月开心婷婷久久| 亚洲男人的天堂av| 久久理论电影网| 91精品国产综合久久国产大片| 91丨国产丨九色丨pron| 国产大陆精品国产| 精品一区二区在线视频| 午夜av一区二区三区| 国产精品福利电影一区二区三区四区| 6080yy午夜一二三区久久| 色噜噜久久综合| 99久久免费视频.com| 国产真实乱子伦精品视频| 三级欧美在线一区| 亚洲色图在线播放| 国产精品亲子乱子伦xxxx裸| 精品国免费一区二区三区| 欧美一区日韩一区| 欧美日韩在线播放三区| 在线免费不卡电影| 色婷婷综合激情| 色94色欧美sute亚洲线路一久| 99re热视频这里只精品| 成人午夜av在线| 高清国产午夜精品久久久久久| 精品亚洲欧美一区| 韩国视频一区二区| 久久99精品久久久久久久久久久久 | 欧美一区二区视频在线观看| 欧美性一级生活| 欧美日韩高清一区二区不卡| 欧美日韩黄色一区二区| 欧美精品xxxxbbbb| 日韩美女视频在线| 26uuuu精品一区二区| 久久久久国产精品人| 中文字幕中文字幕一区| 中文字幕一区二区三区四区| 中文字幕一区在线| 亚洲综合精品自拍| 日韩黄色在线观看| 精品一区二区三区av| 国产成人精品一区二区三区四区 | 欧美怡红院视频| 欧美综合色免费| 欧美一区二区高清| 久久精品视频在线免费观看| 国产免费观看久久| 一区二区三区中文字幕| 日本免费在线视频不卡一不卡二| 九九久久精品视频| 色香蕉久久蜜桃| 日韩欧美在线1卡|