方法一、盡量使用復(fù)雜的sql來(lái)代替簡(jiǎn)單的一堆 sql.
同樣的事務(wù),一個(gè)復(fù)雜的sql完成的效率高于一堆簡(jiǎn)單sql完成的效率。有多個(gè)查詢時(shí),要善于使用join。
ors=oconn.execute("select * from books")
while not ors.eof
strsql = "select * from authors where authorid="&ors("authorid") ors2=oconn.execute(strsql)
response.write ors("title")&">>"&ors2("name")&"
&q uot;
ors.movenext()
wend
要比下面的代碼慢:
strsql="select books.title,authors.name from books join authors on authors.authorid=books.authorid"
ors=oconn.execute(strsql)
while not ors.eof
response.write ors("title")&">>"&ors("name")&"
&qu ot;
ors.movenext()
wend
方法二、盡量避免使用可更新 recordset
ors=oconn.execute("select * from authors where authorid=17",3,3)
ors("name")="darkman"
ors.update()
要比下面的代碼慢:
strsql = "update authors set name='darkman' where authorid=17"
oconn.execute strsql
方法三、更新數(shù)據(jù)庫(kù)時(shí),盡量采用批處 理更新
將所有的sql組成一個(gè)大的批處理sql,并一次運(yùn)行;這比一個(gè)一個(gè)地更新數(shù)據(jù)要有效率得多。這樣也更加滿足你進(jìn)行事務(wù)處理 的需要:
strsql=""
strsql=strsql&"set xact_abort on ";
strsql=strsql&"begin transaction ";
strsql=strsql&"insert into orders(ordid,custid,orddat) values('9999','1234',getdate()) ";
strsql=strsql&"insert into orderrows(ordid,ordrow,item,qty) values('9999','01','g4385',5) ";
strsql=strsql&"insert into orderrows(ordid,ordrow,item,qty) values('9999','02','g4726',1) ";
strsql=strsql&"commit transaction ";
strsql=strsql&"set xact_abort off ";
oconn.execute(strsql);
其中,set xact_abort off 語(yǔ)句告訴sql server,如果下面的事務(wù)處理過(guò)程中,如果遇到錯(cuò)誤,就取消已經(jīng)完成的事務(wù)。
方法四、數(shù)據(jù)庫(kù)索引
那些將在where子句中出現(xiàn)的字段,你應(yīng)該首先考慮建立索引;那些需要排序的字段,也應(yīng)該在考慮之列 。
在ms access中建立索引的方法:在access里面選擇需要索引的表,點(diǎn)擊“設(shè)計(jì)”,然后設(shè)置相應(yīng)字段的索引.
在ms sql server中建立索引的方法:在sql server管理器中,選擇相應(yīng)的表,然后“設(shè)計(jì)表”,點(diǎn)擊右鍵,選擇“properties”,選擇“indexes/keys”
方法五、避免使text字段太大
當(dāng)字符串的值大小不固定時(shí),用varchar比用char的效果要好 些。我曾經(jīng)看到一個(gè)例子程序,字段被定義為text(255),但是他的取值經(jīng)常只有20個(gè)字符。這個(gè)數(shù)據(jù)表有50k個(gè)記錄,從而使這個(gè)數(shù)據(jù)庫(kù)很大,大的數(shù)據(jù)庫(kù)必然較慢。
該文章在 2010/7/8 0:30:21 編輯過(guò)