Wrox Programmer Forums
|
Classic ASP Databases Discuss using ASP 3 to work with data in databases, including ASP Database Setup issues from the old P2P forum on this specific subtopic. See also the book forum Beginning ASP.NET Databases for questions specific to that book. NOT for ASP.NET 1.0, 1.1, or 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Classic ASP Databases section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 24th, 2004, 08:58 PM
Authorized User
 
Join Date: Aug 2003
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
Default Storing Large Amounts Of Data

I want to create a database of articles for my customers to read. The articles include photos and videos.

I am familiar with ASP, JavaScript and MS Access. I have an understanding of XML but have not worked with it.

What is the best way to store articles while still providing the security and organization that a database offers? I have found MS Access to be very limited in the amount of information a particular field can hold. Even using the Memo type, an article seems to be too large. The whole use of the database seems pretty cumbersome for storing large documents.

Judging by the various news sites (MSNBC, CNN, etc.), there must be some efficient way to do this.

Any suggestions are helpful.

Best regards,
sabertec2
 
Old October 25th, 2004, 06:22 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 2,480
Thanks: 0
Thanked 1 Time in 1 Post
Default

How about using SQL server for storing data? You may think of using TEXT datatype there for storing article content.

I won't suggest you storing images in datbase, you can store the images and video files on the physical drives and use the path for that as URL in database, so that you can put up a link to that which corresponds to the article. On the maintenance part, you should ensure that you delete the files too when an article is removed.

Hope that helps.
Cheers!

_________________________
- Vijay G
Strive for Perfection
 
Old October 26th, 2004, 01:25 AM
Authorized User
 
Join Date: Aug 2003
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks Vijay G,

I know SQL is the standard for web based database work, but I've never had opportunity to work with it. How much data (bits or characters) does a single SQL text field allow? Some of my articles are actually chapters from some of my service manuals and tend to be pretty long. Needless to say, Access is really limited, but maybe SQL will work.

I agree with you on storing the videos and photos on the drive and simply pointing to them.
 
Old October 26th, 2004, 02:12 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 2,480
Thanks: 0
Thanked 1 Time in 1 Post
Default

Check this link - SQL server - Text and image datatypes

You may break the chapters in to reasonable size and store into multiple records, if that is too large to fit into TEXT datatype columns.

Cheers!
_________________________
- Vijay G
Strive for Perfection





Similar Threads
Thread Thread Starter Forum Replies Last Post
How to read data from large word docs lokanatha reddy ASP.NET 2.0 Professional 0 April 9th, 2007 10:21 AM
How to work through huge amounts of data effective Planet_Jeroen Excel VBA 2 January 16th, 2007 08:12 AM
Not being able to post large chunk of data karjagis Classic ASP XML 1 November 2nd, 2005 09:17 AM
handle large data files in VB andy_routledge Pro VB 6 1 August 6th, 2003 01:08 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.