Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Large Databases 1

Status
Not open for further replies.

bookor

MIS
Apr 21, 1999
33
0
0
US
I have a fairly large Oracle database and need to provide a certain amount of info through a browser to our intranet and possibly eventually through the internet. For example, I have a database of 100,000 individuals with a multitude of tables containing name, address, phone, and other information. I have to provide an up-to-date list, accessible upon demand to show any portion of the list the user wants to access, taking the place of a paper record/log book; like deed records etc. My test pages work fine on the test database, but when I test against the production side, they time out even on our ethernet lan connections. How do I make large dynamic datasets available? Is ASP the right choice? Should I look at something else for a project like this. <br>

 
You might want to try Perl for this undertaking. I'm sure you could get a Perl search engine to accomplish this task...you might also consider breaking the db up into separate parts searchable through separate pages (ie. a-f, g-l, m-z) you could have your main search page contain a link to each subordinate db's search page. Sorry I don't know of anything else that works, you might give it a try though.
 
I was considering breaking up the database into "annual" databases but most of the inquiries, 98% or better are concerned only with the last couple of weeks data, and that would still be pulling datasets from the main database. Ive never checked out Perl. I always associated it with being a Unix scripting language. How difficult would it be for someone unfamiliar with Perl to get up to speed enough to create useable database front ends?<br>
<br>
thanks for the info.<br>
<br>

 
Well, I've JUST NOW started learning PERL, so I can't really tell you, but if you know much JavaScript, I've found PERL to be extremely similar to JS.<br>
About breaking up the database: You might try breaking it up alphabetically according to the Name of the person; or geographically according to the region in which they live.<br>
<br>
I would probably suggest doing one of these as an immediate recouse; then you can have more time to experiment with PERL to find out if it will work for you.
 
Hi there, Can you give me a little more information with regards to how you are connecting to the database.<br>
I take it that when you say ASP you actually use the ADO component. Have you tried changing the timeout of the Command object (default is 30 seconds).<br>
Learning Perl is an alternative, but, it takes a while and I am sure you need this yesterday.<br>
Another possibility is to program stored procedures which you call. This should actually increase the efficiency of your queries as the server does all the work. Reorganising the database is a good idea, but 100,000 records !!!!<br>
Give me a little more details and I'll try and help.<br>

 
The only connection Ive tried successfully is an ado connection created through frontpage. I havnt tried to tinker with settings yet. Want to make sure what Im trying to do is doable. If Im off on the wrong track I want to find out right up front. Any you're right, I need to get this done and really don't have time to try to learn another develop tool right now. How would you use stored procedures in ASP/VB/VBScript? Is it possible to retrieve a recordset for a date range or name search that retrieves the entire record set to the client machine and scroll through the recordset from there? I currently have an Access97 front end on the database and it is useable but extremely slow. An asp page might be no slower if I tinker with the timeout so it wont crash, but whatever method, I have to improve performance.<br>
<br>
any help would be appreciated..<br>
<br>
thanks again<br>
<br>

 
I believe that if everything is set up correctly then changeing the tmeout will work. If you application is still booging down then I suggest dumping you data into a heavy duty database such as SQL Server of Oracle. Access is a great database but with that many records your queries are bound to be slower than with a more powerful db.<br>
<br>
I hope you get everything worked out.
 
Hi there booker,<br>
<br>
From your initial description, I think that you need to take a step back. If the ASP queries are working fine on your test machine, and terrible on the production - your problem is not with ASP. I think that you need to see what differences there between machines is.<br>
<br>
Have you checked indexes, statistics etc.<br>
<br>
Hope this is not too late.
 
Get Visual Interdev and stop using Frontpage. Frontpage is very limited. I agree with the previous posts to break up the query into alphabetical groups.<br>
<br>
Have links as such...<br>
in ASP of course..<br>
The first page..<br>
&lt;HTML&gt;&lt;body&gt;&lt;font color=black size=4&gt;<br>
&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=info.asp?start=a&stop=B&gt;A&lt;/a&gt;&lt;/td&gt;<br>
&lt;/tr&gt;<br>
&lt;/table&gt;&lt;/font&gt;<br>
&lt;/html&gt;<br>
Info.asp..<br>
&lt;script language=VBscript runat=server&gt;<br>
Sub Recordset1_onBeforeopen() ' this might be the wrong name<br>
dim SQLText,vAlpha,vBeta<br>
vAlpha = request.querystring("start")<br>
vBeta = request.querystring("stop")<br>
sqltext= "Select * from TABLENAME where ((NAME &gt;="<br>
sqltext = sqltext & " vAlpha) AND (NAME &lt; vBeta)" <br>
' may need a ";" and may need to convert to ASCII values<br>
Recordset1.setSQLtext(SQLText)<br>
Recordset1.requery <br>
End Sub<br>
&lt;/script&gt;<br>
&lt;HTML&gt;&lt;body&gt;&lt;font color=black size=4&gt;<br>
&lt;table&gt;&lt;tr&gt;&lt;td&gt;TITLE1 ie NAME&lt;/td&gt;&lt;td&gt;TITLE2 ie ADDRESS&lt;/td&gt;<br>
&lt;/tr&gt;<br>
&lt;td&gt;&lt;%=Recordset1.field.getvalue("Name") %&gt;&lt;/td&gt; &lt;td&gt;&lt;%=Recordset1.field.getvalue("Address") %&gt;&lt;/td&gt;......<br>
&lt;/table&gt;&lt;/font&gt;<br>
&lt;/html&gt;<br>
<br>
I may have left a few bugs in there for you.. but you should get the picture. SHOULD.
 
Ill wade through that and give it a shot. Is Visual Interdev worth the investment? Seems like Ive read some uncomplementary reviews?<br>
<br>
thanks for the reply<br>
<br>

 
Hi,<br>
I haven't done this with VBScript before, but using a different language (webspeed, progress) I was able to stop that problem by writing a NULL value to the screen every 50 (you can go more or less) iterations. In your case you can do this every 50 records or so. If you are not buffering the data that is to be displayed, you can do this.<br>
<br>
Hope that helps.
 
Hi,<br>
Just another two-cents-worth...<br>
The overhead introduced by ADO, is quite minumal, at least when working with a single query. The problem appears to be with the query itself. Two things would need to be addressed: <br>
<br>
1) The design of your SQL statement - it should be optimized using the tools from Oracle<br>
2) The indexing of your data. Check to be sure that the fields in your "where" clause are indexed.<br>
<br>
I'm currently running queries against a database (Oracle) involving as many as twelve tables and 25,000,000+ records that return in less than 5 seconds. One particular query used to take around 5 minutes to return, but after testing and reviewing the Oracle "plan", I was able to add some indexes, change how I joined two tables, and the speed improved to about 2 seconds.<br>
<br>
While splitting the query into letter groups might offer some improvement, it's a band-aid solution. Fix the real, underlying, problem.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top