常用的資料庫程式碼
01 | --掛起業務儲存過程 |
02 | create procedure [dbo].[p_suspend_business] |
03 | @Bfixednum varchar(40) |
04 | as |
05 | begin transaction |
06 |
07 | declare @SNumber int |
08 | declare @messageNumber int |
09 | select @SNumber=SNumber from sendnumber where Bfixednum=@Bfixednum |
10 | select @messageNumber = count(@Bfixednum) from [message] where Bfixednum = @Bfixednum and mDate between (select dateadd(dd,-day(getdate())+1,getdate())) and (select dateadd(dd,-day(getdate()),dateadd(m,1,getdate()))) |
11 |
12 |
13 | --引數檢查 |
14 | if (@SNumber is null or @messageNumber = '') |
15 | begin |
16 | raiserror('錯誤!缺少引數 ,請檢查!',16,1) |
17 | rollback |
18 | return |
19 | end |
20 |
21 | if (@messageNumber >= @SNumber) |
22 | begin |
23 | update dbo.Business set BState=0 where Bfixednum=@Bfixednum |
24 | commit transaction |
25 | end |
26 |
27 | GO |
28 |
29 |
30 |
31 |
32 |
33 | 利用系統儲存過程建立資料庫連結 |
34 | EXEC sp_addlinkedserver |
35 | 'lkTest', |
36 | '', |
37 | 'MSDASQL', |
38 | NULL, |
39 | NULL, |
40 | 'DRIVER={SQL Server};SERVER=地址;UID=sa;PWD=密碼;' |
41 | go |
42 |
1 | --測式資料庫語句執行的時間 |
2 | declare @starttime as datetime; |
3 | declare @endtime as datetime; |
4 | set @starttime = getdate(); |
5 | --執行的語句 |
6 | select * from dbo.total where companyinfo like '%中南一路%' |
7 | set @endtime = getdate();select @starttime as 開始時間,@endtime as 結束時間,datediff(MS,@starttime,@endtime)as 執行時間 |
8 |
9 |
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16436858/viewspace-630486/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle資料庫維護常用的SQL程式碼示例(zt)Oracle資料庫SQL
- 最常用的資料庫命令,指令碼資料庫指令碼
- MySql連線資料庫常用引數及程式碼示例MySql資料庫
- 監控Oracle資料庫的常用shell指令碼Oracle資料庫指令碼
- 資料結構程式碼常用模板資料結構
- [轉]監控Oracle資料庫的常用shell指令碼Oracle資料庫指令碼
- 監控Oracle資料庫的常用shell指令碼(轉)Oracle資料庫指令碼
- 8個DBA最常用的監控Oracle資料庫的常用shell指令碼Oracle資料庫指令碼
- 8個DBA最常用的監控Oracle資料庫的常用shell指令碼--Oracle資料庫指令碼
- 【轉載】監控Oracle資料庫的常用shell指令碼Oracle資料庫指令碼
- 8個DBA最常用的監控Oracle資料庫的常用shell指令碼--轉Oracle資料庫指令碼
- 常用的檢視資料庫的SQL資料庫SQL
- 常用資料庫基本資料型別資料庫資料型別
- 資料庫常用約束資料庫
- MySQL資料庫常用操作MySql資料庫
- 常用操作 / 資料庫操作資料庫
- 資料庫效能 常用SQL資料庫SQL
- Mysql 常用資料庫命令MySql資料庫
- SQL備份資料庫程式碼SQL資料庫
- 原始碼資料庫管理程式 (轉)原始碼資料庫
- Sql Server 資料庫學習-常用資料庫 物件SQLServer資料庫物件
- 資料分析常用的 23 個 Pandas 程式碼,收好不謝
- ajax讀取資料庫資料程式碼例項資料庫
- MySQL資料庫常用的備份方法MySql資料庫
- python常用的資料庫有哪些?Python資料庫
- 關於資料庫操作的封裝程式碼資料庫封裝
- 初探資料庫通用程式碼庫的封裝(C#版)資料庫封裝C#
- 資料庫常用維護命令資料庫
- oracle資料庫常用語句Oracle資料庫
- 資料庫常用sql 語句資料庫SQL
- MySQL常用資料庫小結MySql資料庫
- SQL - 常用資料庫分頁SQL資料庫
- 常用資料庫 JDBC URL 格式資料庫JDBC
- 程式碼家:簡明資料庫史資料庫
- 值得白嫖的資料庫常用操作語句彙總(資料庫、資料表、資料操作)資料庫
- 分散式資料庫拆表拆庫的常用策略分散式資料庫
- sqlite 資料庫 支援的資料型別 以及常用的函式SQLite資料庫資料型別函式
- 資料庫常用的sql語句彙總資料庫SQL