ASP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingASP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old January 31st, 2000, 11:52 PM
Steve Schofield Steve Schofield is offline
Contributing User
ASP Free God 20th Plane (14500 - 14999 posts)
 
Join Date: Dec 2002
Posts: 14,575 Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 23
Performance Issue

<i><b>Originally posted by : Peter Young (petersgyoung@hotmail.com)</b></i><br />This is the first time I join this forum. I would like to post a performance issue to start off the thread. The following are three different methods for updating a database. Which one is more efficen? I personally prefer think Method 2 is the best if the database is large and there are many users updating the database at the same time.<br /><br /><br />METHOD 1<br /><%<br />Dim cnn<br />Dim rs1<br />Dim rs2<br />Dim strA, strB, strC, strD<br /><br />strA = Request.Form("A")<br />strB = Request.Form("B")<br />strC = Request.Form("C")<br />strD = Request.Form("D")<br /><br />Set cnn = Server.CreateObject("ADODB.Conncetion")<br />cnn.Open "DB1"<br /><br />rs1.Open "Select * from TableA", cnn, 2, 2<br />rs2.Open "Select * from TableB", cnn, 2, 2<br /><br />rs1.Addnew<br />rs2.Addnew<br /><br />rs1("fieldA1") = strA <br />rs1("fieldA2") = strB<br /><br />rs2("fieldB1") = strC<br />rs2("fieldB2") = strD<br /><br />rs1.Update<br />rs2.Update<br /><br />rs1.Close<br />rs2.Close<br /><br />Set rs1 = nothing<br />Set rs2 = nothing<br /><br />Set cnn = nothing<br /><br />%><br /><br /><br />METHOD 2<br /><br /><%<br />Set cnn = Server.CreateObject("ADODB.Conncetion")<br />cnn.Open "DB1"<br /><br />rs1.Open "Select * from TableA", cnn, 2, 2<br />With rs1<br /> .Addnew<br /> .fields("fieldA1") = Request.Form("A")<br /> .fields("fieldA2") = Request.Form("B")<br />'Add other rs1 fields here if necessary<br />End With<br /><br />rs2.Open "Select * from TableB", cnn, 2, 2<br /><br />With rs2<br /> .Addnew<br /> .fields("fieldB1") = Request.Form("C")<br /> .fields("fieldB2") = Request.Form("D")<br />'Add other rs2 fields here if necessary<br />End With<br /><br />rs1.Update<br />rs2.Update<br /><br />Set rs1 = nothing<br />Set rs2 = nothing<br /><br />Set cnn = nothing<br /><br />%><br /><br /><br />METHOD 3<br /><br /><%<br />'cnn created and open at Session_OnStart()<br /><br />rs1.Open "Select * from TableA", cnn, 2, 2<br />rs2.Open "Select * from TableB", cnn, 2, 2<br /><br />rs1.Addnew<br />rs2.Addnew<br /><br />rs1("fieldA1") = Request.Form("A")<br />rs1("fieldA2") = Request.Form("B")<br /><br />rs2("fieldB1") = Request.Form("C")<br />rs2("fieldB2") = Request.Form("D")<br /><br />rs1.Update<br />rs2.Update<br /><br />Set rs1 = nothing<br />Set rs2 = nothing<br /><br />'cnn to be closed at Session_OnEnd()<br /><br />%><br /><br />I don't have a chance to test these methods on a large database with many users. Anybody wants to do this experiment?<br /><br />Peter

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingASP Development > Performance Issue


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump





 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek