Sqlserver2000壓力測試 數(shù)據(jù)庫請自己建,附腳本。不懂的可以發(fā)郵件問我:killwolf@163.com 10萬 109640ms 插入 23078ms 清空 20萬 216281ms 8391馬上 40萬: 416781 9381 if exists (select * from dbo.sysobjects where id = object_id(N [dbo].[StuInfo] ) and OBJECTPROPERTY(id, N IsUserTable ) = 1) drop table [dbo].[StuInfo] GO CREATE TABLE [dbo].[StuInfo] ( [StuID] [float] NULL ) ON [PRIMARY] GO
上傳時間: 2016-05-08
上傳用戶:lht618
v1.3.0 更新內(nèi)容: + [調(diào)整] 安裝文件的人性化!HOT! + [調(diào)整] 模板全面調(diào)整!HOT! + [修復] 發(fā)帖 editblog.php 的時間部分做了調(diào)整,增加了日歷直接選定。 + [修復] 通過ID直接查找文章的 input框 原本回車進入空白頁面,現(xiàn)解決 + [修復] 評論管理功能 + [修復] RSS2.0的修復
上傳時間: 2016-05-09
上傳用戶:風之驕子
數(shù)字圖像處理基礎(chǔ)理論,英文資料Restoration and Enhancement Space Pictures (blurred, noisy, distorted) Computerized Tomography Coding Transmission – Teleconferencing Storage – Land SAT Images Pattern Recognition Blood Cell Analysis Remote Sensing Robotic Vision Computer Graphics Flight Simulation Auto Body Design Special Effect in Movie
標簽: 數(shù)字圖像處理
上傳時間: 2014-06-30
上傳用戶:plsee
用javascript寫的,我太懶不想寫太詳細的說明,自己看里面的代碼吧,有少許說明的.這是我的第一個js大作 ,有人有興趣的話再改些吧...主要思路是找出相關(guān)的關(guān)鍵字(不要笑我). 推薦懂js的人看 謝謝大家支持,據(jù)現(xiàn)有功能進行部分修正,去掉了密碼提示問題的填寫!增加id判斷! 1、怎樣安裝插件? 到論壇插件資源欄目里,找到自己喜歡用的插件,下載壓縮包。 a.如果你選用的是 TheWorld2.0安裝版 ,就把下載的壓縮包解壓縮后,將里面的插件包直接放進安裝后的 plugin文件夾里,重新開瀏覽器就可以看到插件了! b.如果選用的是 TheWorld2.0綠色版,就在TW所在的文件夾內(nèi)新建一個文件夾,起名叫 plugin,并把解壓縮的插件包放進即可
標簽: javascript 代碼
上傳時間: 2016-05-31
上傳用戶:lhc9102
當點擊所要登錄的窗口聯(lián)接時,系統(tǒng)彈出登錄對話框,進行身份驗證,要求您輸入ID號及密碼;當身份有效則登錄,否則不能登錄;
標簽: 窗口
上傳時間: 2013-12-22
上傳用戶:wangchong
一個不錯的驅(qū)動自動安裝程序,是查找多方資料,自己開發(fā)出來的,通過掃面pci 總線來識別不同型號和公司的pci卡,并自動搜索對應的驅(qū)動程序進行安裝,本程序可以識別highpoint的卡,用戶可以自行擴展,只要知道硬件卡的id就行,另外,在安裝時,會自動執(zhí)行資源管理器的“掃描新硬件功能”
上傳時間: 2013-12-27
上傳用戶:linlin
This paper presents a low-power asynchronous implementation of the 80C51 microcontroller. It was realized in a 0.5 µ m CMOS process and it shows a power advantage of a factor 4 compared to a recent synchronous implementation in the same technology. The chip is fully bit compatible with the synchronous implementation, and timing compatible for external memory access. The circuit is a compiled VLSI-program, using Tangram as VLSI-programming language and the Tangram tool set to compile the design automatically to a standard-cell netlist. This design approach proves to be powerful enough to describe the microcontroller and derive an efficient implementation. Further, it offers the designer the possibility to explore various alternatives in the design space.
標簽: microcontroller implementation asynchronous low-power
上傳時間: 2016-06-07
上傳用戶:冇尾飛鉈
EXCEL開發(fā)者有幫助的,可以顯示菜單和工具欄的ID編號
上傳時間: 2014-01-14
上傳用戶:wys0120
自己編寫的串口-CAN口的轉(zhuǎn)換程序,已經(jīng)測試過沒有問題! 一.傳輸數(shù)據(jù)協(xié)議: 1.初始化 初始化波特率(CAN):$BAUD($:起始符;BAUD:波特率標識符; 相應編碼:0x24 0x42 0x41 0x55 0x44) 傳輸ID號設置:$IDERSTD(相應編碼:0x24 0x49 0x44 0x45 0x52 0x53 0x54 0x44) $IDEREXT(相應編碼:0x24 0x49 0x44 0x45 0x52 0x45 0x58 0x54) ($:起始符;IDER:ID標識符;STD:標準幀;EXT:擴展幀) 2.數(shù)據(jù)發(fā)送 發(fā)送數(shù)據(jù) :$DATA($:起始符;DATA:數(shù)據(jù)標識符 相應編碼:0x24 0x44 0x41 0x54 0x41)
上傳時間: 2014-01-02
上傳用戶:yy541071797
、該個詞法分析器要求至少能夠識別以下幾類單詞: a. 關(guān)鍵字:else if int return void while共6個,所有的關(guān)鍵字都是保留字,并且必須是小寫; b. 標識符:識別與C語言詞法規(guī)定相一致的標識符,通過下列正則表達式定義:ID = letter (letter | digit)*; c. 常數(shù):NUM=(+ | - |ε)digit digit*(.digit digit* |ε)(e(+ | - |ε) digit digit* |ε),letter = a|..|z|A|..|Z|,digit = 0|..|9,包括整數(shù),如123, -123, +123等;小數(shù),如123.45, +123.45, -123.45;科學計數(shù)法表示的常數(shù),如+1.23e3,-2.3e-9; d. 專用符號:+ - * / < <= > >= == != = , ( ) [ ] { } /* */;
上傳時間: 2013-12-08
上傳用戶:gtf1207
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1