473,471 Members | 1,750 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Efficient ways to retrieve specific rows...

First, please excuse the fact that I'm a complete MySQL newbie.

My site used forum software that I wrote myself (in Perl) which, up until
now, has used flat files. This worked fine, however lately I've been wanting
to do more stuff with user accounts, and had been eying MySQL for over a
year.

Finally I've decided to start off small by converting the forum's account
system to a MySQL database (and convert the rest later after I'm
comfortable). So far everything is working fine, and I've figured out how to
create the table, insert records, modify records, and so on.

However I had a question on what was the most efficient way to retrieve
information about a user as I read through the flat file containing
messages.

As each message is read I want to find that user's relevant information,
build it into my output, then continue on to the next message. Now here's my
problem. Since I'm reading a flat file in a way that was once trying to be
somewhat memory efficient (on really slow server way back when, trying to
avoid arrays and hashes) I'm finding that I'm having to send separate
questions to MySQL as each message comes up. Say from 1 to 20 very simple
questions to complete printing the page. Also, sometimes the questions might
be repetitive - since I'm not storing any of the results in memory, if a
user appears twice I ask about it twice.

Would I really be better off trying to find a way to consolidate all
distinct users into a single question? Or is MySQL efficient enough that
this isn't really much of a concern?

- Daniel
Jul 20 '05 #1
16 1838
On Fri, 6 Aug 2004 05:18:43 -0400, in mailing.database.mysql "Daniel
Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| First, please excuse the fact that I'm a complete MySQL newbie.
|
| My site used forum software that I wrote myself (in Perl) which, up until
| now, has used flat files. This worked fine, however lately I've been wanting
| to do more stuff with user accounts, and had been eying MySQL for over a
| year.
|
| Finally I've decided to start off small by converting the forum's account
| system to a MySQL database (and convert the rest later after I'm
| comfortable). So far everything is working fine, and I've figured out how to
| create the table, insert records, modify records, and so on.
|
| However I had a question on what was the most efficient way to retrieve
| information about a user as I read through the flat file containing
| messages.
|
| As each message is read I want to find that user's relevant information,
| build it into my output, then continue on to the next message. Now here's my
| problem. Since I'm reading a flat file in a way that was once trying to be
| somewhat memory efficient (on really slow server way back when, trying to
| avoid arrays and hashes) I'm finding that I'm having to send separate
| questions to MySQL as each message comes up. Say from 1 to 20 very simple
| questions to complete printing the page. Also, sometimes the questions might
| be repetitive - since I'm not storing any of the results in memory, if a
| user appears twice I ask about it twice.
|
| Would I really be better off trying to find a way to consolidate all
| distinct users into a single question? Or is MySQL efficient enough that
| this isn't really much of a concern?


You are still using the database like a flat file. Therefore *you* are
still doing the work instead of the database.

It is difficult to give you a clear answer without seeing your table
structures but you could extract you information with a query like:
SELECT * from bloggs where username='Joe Bloggs';

Sorting this list would be:
SELECT * from bloggs where username='Joe Bloggs' ORDER BY bloggID;

Multiple criteria (last 30days of entries by Joe Bloggs)
SELECT * from bloggs where username='Joe Bloggs' and
EntryDate<=CurDate()-30;
Jul 20 '05 #2
"Jeff North" <jn****@yourpantsbigpond.net.au> wrote in message
news:om********************************@4ax.com...
On Fri, 6 Aug 2004 05:18:43 -0400, in mailing.database.mysql "Daniel
Tonks" <dtonks@sunstormADD-DOT-COM> wrote:

You are still using the database like a flat file. Therefore *you* are
still doing the work instead of the database.

It is difficult to give you a clear answer without seeing your table
structures but you could extract you information with a query like:
SELECT * from bloggs where username='Joe Bloggs';

Sorting this list would be:
SELECT * from bloggs where username='Joe Bloggs' ORDER BY bloggID;

Multiple criteria (last 30days of entries by Joe Bloggs)
SELECT * from bloggs where username='Joe Bloggs' and
EntryDate<=CurDate()-30;

That's all true, but the only thing I've MADE a database is the accounts
section. Everything else is still flat file, which is why I'm still sort of
accessing the database that way. Right now...

Read #1 from flat file: SUBJECT USERID DATE POST
SELECT stuffneeded FROM accounts WHERE id=userid
Process & print message.

Read #2 from flat file: SUBJECT USERID DATE POST
SELECT stuffneeded FROM accounts WHERE id=userid
Process & print message.

The only way around that seems to be to read the entire thread into memory,
gather a list of needed userid's, get the needed information from the
database, and THEN print everything out. Unless MySQL can handle this sort
of repeated simple request, in which case I'd rather not put the effort into
completely rewriting a problem that will probably need to be rewritten in a
few months.

I realize that this will become less of an issue once I make all the indexes
and messages part of a database (the books I'm reading give some good "ah
ha!" examples for stuff I'd like to do), but being an utter newbie to such
databases I'm starting small with just one aspect of it. Then I'll start
merging other features.

So far I'm very happy with how efficient the coding is for this... what was
40 lines to process and update the flat file before is down to just a
couple! Woo hoo!

- Daniel
Jul 20 '05 #3
Daniel Tonks wrote:
Unless MySQL can handle this sort
of repeated simple request, in which case I'd rather not put the effort into
completely rewriting a problem that will probably need to be rewritten in a
few months.


MySQL can probably handle it. A BB system like you describe isn't
likely to operate on enough volume of data to overwhelm a DBMS, unless
there are many hundreds of simultaneous users.

But if you want to do some improvements, you could do any of the following:

- Fetch the user information using a parameterized query that you
prepare once, e.g. "SELECT stuffneeded FROM accounts WHERE id=?" and
execute the prepared query each time while passing the userid as a
parameter.

- Fetch the user information for each given userid once, and keep it
cached in memory for the duration of the session. Store it in a hashed
array indexed by the user id. I assume this type of information is
usually static, and won't be likely to change during a given user's session.

- Do what you said about loading the thread into memory to find the
complete list of user id's relevant to the thread, and then load them:
"SELECT stuffneeded FROM accounts
WHERE id IN ($comma_separated_list_of_user_ids)"

Regards,
Bill K.
Jul 20 '05 #4
On Fri, 6 Aug 2004 18:37:27 -0400, in mailing.database.mysql "Daniel
Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| "Jeff North" <jn****@yourpantsbigpond.net.au> wrote in message
| news:om********************************@4ax.com...
| > On Fri, 6 Aug 2004 05:18:43 -0400, in mailing.database.mysql "Daniel
| > Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| >
| > You are still using the database like a flat file. Therefore *you* are
| > still doing the work instead of the database.
| >
| > It is difficult to give you a clear answer without seeing your table
| > structures but you could extract you information with a query like:
| > SELECT * from bloggs where username='Joe Bloggs';
| >
| > Sorting this list would be:
| > SELECT * from bloggs where username='Joe Bloggs' ORDER BY bloggID;
| >
| > Multiple criteria (last 30days of entries by Joe Bloggs)
| > SELECT * from bloggs where username='Joe Bloggs' and
| > EntryDate<=CurDate()-30;
|
| That's all true, but the only thing I've MADE a database is the accounts
| section. Everything else is still flat file, which is why I'm still sort of
| accessing the database that way. Right now...
|
| Read #1 from flat file: SUBJECT USERID DATE POST
| SELECT stuffneeded FROM accounts WHERE id=userid
| Process & print message.
|
| Read #2 from flat file: SUBJECT USERID DATE POST
| SELECT stuffneeded FROM accounts WHERE id=userid
| Process & print message.
Hold it right there. Lets get the terminology correct first.
To me a flat-file is a file outside of the database that can be opened
with a text editor. A flat-file is not subject to database queries. Is
this what you mean?

Or do you mean flat-table (non-normalised table) that resides in the
database?

Lets design your database. There are 3 types of tables People, Things
and Events.

People tables: this would be your users - so create a table called
users and add the necessary fields.
create table users
userid int(11) not null default 0 auto_increment,
firstname ..... etc
Primary KEY ('userid')

Next is the Things tables: you want to be able to store your message
header information. Create a table called MessageHdrs
create table MessageHdrs
MessageHdrID int(11) not null default 0 auto_increment,
Subject varchar(255) ....
CreateDate Date ....
Active enum('Yes','No') ....
InitiatedByUser int(11)....
Primary Key ('MessageHdrID')

Finally are the Event tables - this is where you join all your People
and Things tables. This is what all the action is, meaning where you
store your messages. Create a table called Threads
create table Threads
ThreadsID int(11) not null default 0 auto_increment,

now link in the message header info
fkMsgHdr int(11) ....

now link in which user posted the message
fkUserID int(11)...

Now add whatever other information you like to capture
EntryDate Date ...
Message text ...
Primary KEY ('ThreadsID')

With this type of setup you can retrieve data by message or user.

You would retrieve the information by using the following sql
statement (append the where and order by clause to this statement).

SELECT threads.*, user.*, messageHdrs.*
FROM user INNER JOIN (messageHdrs INNER JOIN threads ON
messageHdrs.messagehdrid = threads.fkMsgHdrID) ON user.userid =
threads.fkUserID;
| The only way around that seems to be to read the entire thread into memory,
| gather a list of needed userid's, get the needed information from the
| database, and THEN print everything out. Unless MySQL can handle this sort
| of repeated simple request, in which case I'd rather not put the effort into
| completely rewriting a problem that will probably need to be rewritten in a
| few months.
|
| I realize that this will become less of an issue once I make all the indexes
| and messages part of a database (the books I'm reading give some good "ah
| ha!" examples for stuff I'd like to do), but being an utter newbie to such
| databases I'm starting small with just one aspect of it. Then I'll start
| merging other features.
|
| So far I'm very happy with how efficient the coding is for this... what was
| 40 lines to process and update the flat file before is down to just a
| couple! Woo hoo!
|
| - Daniel
|


Jul 20 '05 #5
"Jeff North" <jn****@yourpantsbigpond.net.au> wrote in message
news:om********************************@4ax.com...
On Fri, 6 Aug 2004 05:18:43 -0400, in mailing.database.mysql "Daniel
Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| First, please excuse the fact that I'm a complete MySQL newbie.
|
| My site used forum software that I wrote myself (in Perl) which, up until| now, has used flat files. This worked fine, however lately I've been wanting| to do more stuff with user accounts, and had been eying MySQL for over a| year.
|
| Finally I've decided to start off small by converting the forum's account| system to a MySQL database (and convert the rest later after I'm
| comfortable). So far everything is working fine, and I've figured out how to| create the table, insert records, modify records, and so on.
|
| However I had a question on what was the most efficient way to retrieve
| information about a user as I read through the flat file containing
| messages.
|
| As each message is read I want to find that user's relevant information,| build it into my output, then continue on to the next message. Now here's my| problem. Since I'm reading a flat file in a way that was once trying to be| somewhat memory efficient (on really slow server way back when, trying to| avoid arrays and hashes) I'm finding that I'm having to send separate
| questions to MySQL as each message comes up. Say from 1 to 20 very simple| questions to complete printing the page. Also, sometimes the questions might| be repetitive - since I'm not storing any of the results in memory, if a| user appears twice I ask about it twice.
|
| Would I really be better off trying to find a way to consolidate all
| distinct users into a single question? Or is MySQL efficient enough that| this isn't really much of a concern?


You are still using the database like a flat file. Therefore *you* are
still doing the work instead of the database.

It is difficult to give you a clear answer without seeing your table
structures but you could extract you information with a query like:
SELECT * from bloggs where username='Joe Bloggs';

Sorting this list would be:
SELECT * from bloggs where username='Joe Bloggs' ORDER BY bloggID;

Multiple criteria (last 30days of entries by Joe Bloggs)
SELECT * from bloggs where username='Joe Bloggs' and
EntryDate<=CurDate()-30;


That really isn't the answer to his question. The problem is he is that he
has not committed to take the leap from flat file to database. The very way
in which he is retrieving the information is what is holding him back. I
believe there are two options:

1) go full database (would require writing scripts to convert flat files to
database structure)
2) just download forum software and modify to fit his needs.

The first is a pain, the later, much easier.

Norm
--
Avatar hosting at www.easyavatar.com
Jul 20 '05 #6
"Norman Peelman" <np******@cfl.rr.com> wrote in message
news:Eb*****************@tornado.tampabay.rr.com.. .

That really isn't the answer to his question. The problem is he is that he has not committed to take the leap from flat file to database. The very way in which he is retrieving the information is what is holding him back. I
believe there are two options:

1) go full database (would require writing scripts to convert flat files to database structure)
2) just download forum software and modify to fit his needs.

The first is a pain, the later, much easier.


It's not so much that I haven't committed as I don't want to bite off more
than I can chew at once. Thus converting in stages.

I have no problem inputting existing flat files to the database - the
scripts to do that are pretty easy - the bigger problem is coming up with an
efficient data structure that does what I need. Which will take a bit of
thought (like how many tables for the forums and indices - or should I use
completely separate databases - etc).

And I don't want to resort to pre-written forum software yet. I just prefer
having a really unique look and feel (it may be possible to modify some of
the prewritten forum software out there as much as I'd like, but frankly I
haven't seen a good example of that so I'll just stick to my own stuff...
which I enjoy doing at any rate).

- Daniel
Jul 20 '05 #7
"Bill Karwin" <bi**@karwin.com> wrote in message
news:cf*********@enews1.newsguy.com...

MySQL can probably handle it. A BB system like you describe isn't
likely to operate on enough volume of data to overwhelm a DBMS, unless
there are many hundreds of simultaneous users.

But if you want to do some improvements, you could do any of the following:
- Fetch the user information using a parameterized query that you
prepare once, e.g. "SELECT stuffneeded FROM accounts WHERE id=?" and
execute the prepared query each time while passing the userid as a
parameter.
Does this really improve things? I was reading through my Perl/MySQL book on
this and couldn't see much point to it besides providing easier
compatibility with other database servers.

- Fetch the user information for each given userid once, and keep it
cached in memory for the duration of the session. Store it in a hashed
array indexed by the user id. I assume this type of information is
usually static, and won't be likely to change during a given user's session.
- Do what you said about loading the thread into memory to find the
complete list of user id's relevant to the thread, and then load them:
"SELECT stuffneeded FROM accounts
WHERE id IN ($comma_separated_list_of_user_ids)"


Thanks for the other suggestions as well.

- Daniel
Jul 20 '05 #8
"Jeff North" <jn****@yourpantsbigpond.net.au> wrote in message
news:vg********************************@4ax.com...
On Fri, 6 Aug 2004 18:37:27 -0400, in mailing.database.mysql "Daniel
Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| Read #2 from flat file: SUBJECT USERID DATE POST
| SELECT stuffneeded FROM accounts WHERE id=userid
| Process & print message.
Hold it right there. Lets get the terminology correct first.
To me a flat-file is a file outside of the database that can be opened
with a text editor. A flat-file is not subject to database queries. Is
this what you mean?

Or do you mean flat-table (non-normalised table) that resides in the
database?


Sorry, I was just paraphrasing. Yes, I have to read in each line from the
text file and split the line into the variables I need. Hey, the forum was
originally structured back in 1998 (expanded many times since), databases
wern't exactly on my mind at the time. :-)

Lets design your database. There are 3 types of tables People, Things
and Events.

People tables: this would be your users - so create a table called
users and add the necessary fields.
create table users
userid int(11) not null default 0 auto_increment,
firstname ..... etc
Primary KEY ('userid')

Next is the Things tables: you want to be able to store your message
header information. Create a table called MessageHdrs
create table MessageHdrs
MessageHdrID int(11) not null default 0 auto_increment,
Subject varchar(255) ....
CreateDate Date ....
Active enum('Yes','No') ....
InitiatedByUser int(11)....
Primary Key ('MessageHdrID')

Finally are the Event tables - this is where you join all your People
and Things tables. This is what all the action is, meaning where you
store your messages. Create a table called Threads
create table Threads
ThreadsID int(11) not null default 0 auto_increment,

now link in the message header info
fkMsgHdr int(11) ....

now link in which user posted the message
fkUserID int(11)...

Now add whatever other information you like to capture
EntryDate Date ...
Message text ...
Primary KEY ('ThreadsID')

With this type of setup you can retrieve data by message or user.
I think you've done something like this before! A very well thought out
structure...

You would retrieve the information by using the following sql
statement (append the where and order by clause to this statement).

SELECT threads.*, user.*, messageHdrs.*
FROM user INNER JOIN (messageHdrs INNER JOIN threads ON
messageHdrs.messagehdrid = threads.fkMsgHdrID) ON user.userid =
threads.fkUserID;

Ah, joins. Hadn't quite waded through that chapter yet, so the whole concept
escapes me right now.

This seems to be a very memory efficient design - minimal duplication of
data. I've read your post three times and I think I'll give it a few
additional go overs. One of the reasons I'm splitting this up into phases -
the accounts section is easy, the rest seems much harder. :-)

Thanks very much for the ideas - you have no idea how appreciated they are.

- Daniel
Jul 20 '05 #9
On Sat, 7 Aug 2004 00:56:52 -0400, in mailing.database.mysql "Daniel
Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| "Jeff North" <jn****@yourpantsbigpond.net.au> wrote in message
| news:vg********************************@4ax.com...
| > On Fri, 6 Aug 2004 18:37:27 -0400, in mailing.database.mysql "Daniel
| > Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| >
| > >| Read #2 from flat file: SUBJECT USERID DATE POST
| > >| SELECT stuffneeded FROM accounts WHERE id=userid
| > >| Process & print message.
| >
| > Hold it right there. Lets get the terminology correct first.
| > To me a flat-file is a file outside of the database that can be opened
| > with a text editor. A flat-file is not subject to database queries. Is
| > this what you mean?
| >
| > Or do you mean flat-table (non-normalised table) that resides in the
| > database?
|
| Sorry, I was just paraphrasing. Yes, I have to read in each line from the
| text file and split the line into the variables I need. Hey, the forum was
| originally structured back in 1998 (expanded many times since), databases
| wern't exactly on my mind at the time. :-)
Then create your tables and use the database post haste. Text files
can not be indexed and therefore a sequential search of the data is
require. There is no getting away from this.
| > Lets design your database. There are 3 types of tables People, Things
| > and Events.
[snip]
| > With this type of setup you can retrieve data by message or user.
|
| I think you've done something like this before!
Only a couple of thousand times :-)
It is also how I used to teach students to design relational
databases.
| A very well thought out structure...
Its the template I use to create any database. Helps me focus on the
overall structure then drill down to the individual tables and their
requirements.
| > You would retrieve the information by using the following sql
| > statement (append the where and order by clause to this statement).
| >
| > SELECT threads.*, user.*, messageHdrs.*
| > FROM user INNER JOIN (messageHdrs INNER JOIN threads ON
| > messageHdrs.messagehdrid = threads.fkMsgHdrID) ON user.userid =
| > threads.fkUserID;
|
| Ah, joins. Hadn't quite waded through that chapter yet, so the whole concept
| escapes me right now.
|
| This seems to be a very memory efficient design - minimal duplication of
| data. I've read your post three times and I think I'll give it a few
| additional go overs. One of the reasons I'm splitting this up into phases -
| the accounts section is easy, the rest seems much harder. :-)
Use the People, Tings, Events (PTE) methodology to design you
database. A bit of time with pen and paper and thought will help you
alot.

Something I didn't mention in the previous post. You might want to add
different categories/areas that people can post to i.e. General
Discussion, Weather, Politics etc. Using the PTE methodology can you
see how this table could be added later without disrupting the current
design?

Also the previous design only allowed for a flat list (unlike a
tree-like structure). Obviously this is way over your head at the
moment but once you understand databases then you should be able to
plug in this feature without too much trouble (provided your database
design is sound to start with).
| Thanks very much for the ideas - you have no idea how appreciated they are.


If it helps, here is my web site that I setup for my students. I
haven't updated in years and it uses MSAccess as the database.
http://www.users.bigpond.net.au/jefnorth/access.htm
The Tables area might be very helpful to you.

No probs.
Jul 20 '05 #10
On Sat, 07 Aug 2004 02:33:08 GMT, in mailing.database.mysql "Norman
Peelman" <np******@cfl.rr.com> wrote:
| "Jeff North" <jn****@yourpantsbigpond.net.au> wrote in message
| news:om********************************@4ax.com...
| > On Fri, 6 Aug 2004 05:18:43 -0400, in mailing.database.mysql "Daniel
| > Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| >
| > >| First, please excuse the fact that I'm a complete MySQL newbie.
| > >|
| > >| My site used forum software that I wrote myself (in Perl) which, up
| until
| > >| now, has used flat files. This worked fine, however lately I've been
| wanting
| > >| to do more stuff with user accounts, and had been eying MySQL for over
| a
| > >| year.
| > >|
| > >| Finally I've decided to start off small by converting the forum's
| account
| > >| system to a MySQL database (and convert the rest later after I'm
| > >| comfortable). So far everything is working fine, and I've figured out
| how to
| > >| create the table, insert records, modify records, and so on.
| > >|
| > >| However I had a question on what was the most efficient way to retrieve
| > >| information about a user as I read through the flat file containing
| > >| messages.
| > >|
| > >| As each message is read I want to find that user's relevant
| information,
| > >| build it into my output, then continue on to the next message. Now
| here's my
| > >| problem. Since I'm reading a flat file in a way that was once trying to
| be
| > >| somewhat memory efficient (on really slow server way back when, trying
| to
| > >| avoid arrays and hashes) I'm finding that I'm having to send separate
| > >| questions to MySQL as each message comes up. Say from 1 to 20 very
| simple
| > >| questions to complete printing the page. Also, sometimes the questions
| might
| > >| be repetitive - since I'm not storing any of the results in memory, if
| a
| > >| user appears twice I ask about it twice.
| > >|
| > >| Would I really be better off trying to find a way to consolidate all
| > >| distinct users into a single question? Or is MySQL efficient enough
| that
| > >| this isn't really much of a concern?
| >
| > You are still using the database like a flat file. Therefore *you* are
| > still doing the work instead of the database.
| >
| > It is difficult to give you a clear answer without seeing your table
| > structures but you could extract you information with a query like:
| > SELECT * from bloggs where username='Joe Bloggs';
| >
| > Sorting this list would be:
| > SELECT * from bloggs where username='Joe Bloggs' ORDER BY bloggID;
| >
| > Multiple criteria (last 30days of entries by Joe Bloggs)
| > SELECT * from bloggs where username='Joe Bloggs' and
| > EntryDate<=CurDate()-30;
| >
| >
|
| That really isn't the answer to his question.
In a way your right :-)
| The problem is he is that he
| has not committed to take the leap from flat file to database. The very way
| in which he is retrieving the information is what is holding him back. I
| believe there are two options:
|
| 1) go full database (would require writing scripts to convert flat files to
| database structure)
| 2) just download forum software and modify to fit his needs.
|
| The first is a pain, the later, much easier.


True :-)
Jul 20 '05 #11
On Sat, 7 Aug 2004 00:33:24 -0400, in mailing.database.mysql "Daniel
Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| "Norman Peelman" <np******@cfl.rr.com> wrote in message
| news:Eb*****************@tornado.tampabay.rr.com.. .
| >
| > That really isn't the answer to his question. The problem is he is that
| he
| > has not committed to take the leap from flat file to database. The very
| way
| > in which he is retrieving the information is what is holding him back. I
| > believe there are two options:
| >
| > 1) go full database (would require writing scripts to convert flat files
| to
| > database structure)
| > 2) just download forum software and modify to fit his needs.
| >
| > The first is a pain, the later, much easier.
|
| It's not so much that I haven't committed as I don't want to bite off more
| than I can chew at once. Thus converting in stages.
|
| I have no problem inputting existing flat files to the database - the
| scripts to do that are pretty easy - the bigger problem is coming up with an
| efficient data structure that does what I need. Which will take a bit of
| thought (like how many tables for the forums and indices - or should I use
| completely separate databases - etc).
|
| And I don't want to resort to pre-written forum software yet. I just prefer
| having a really unique look and feel (it may be possible to modify some of
| the prewritten forum software out there as much as I'd like, but frankly I
| haven't seen a good example of that so I'll just stick to my own stuff...
| which I enjoy doing at any rate).


You'll get there. Althought there will be must frustration along the
way but the effort will be worth it. :-)
Jul 20 '05 #12
"Jeff North" <jn****@yourpantsbigpond.net.au> wrote in message
news:ud********************************@4ax.com...
On Sat, 7 Aug 2004 00:56:52 -0400, in mailing.database.mysql "Daniel
Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| > Or do you mean flat-table (non-normalised table) that resides in the
| > database?
|
| Sorry, I was just paraphrasing. Yes, I have to read in each line from the| text file and split the line into the variables I need. Hey, the forum was| originally structured back in 1998 (expanded many times since), databases| wern't exactly on my mind at the time. :-)
Then create your tables and use the database post haste. Text files
can not be indexed and therefore a sequential search of the data is
require. There is no getting away from this.


Oh, I know that... my current search engine sequentially reads through over
400,000 messages (73,000+ files) as it is now... although I've come up with
ways to make it more efficient over the years. I recently built myself a
dedicated server (which is why I finally have MySQL available) that has
oodles of power and actually manages to work though that horrible searching
task quite quickly.

All in due time though, getting the account system done is turning into
enough work (although I'm merging in a whole output design overhaul as
well).

| > With this type of setup you can retrieve data by message or user.
|
| I think you've done something like this before!


Only a couple of thousand times :-)
It is also how I used to teach students to design relational
databases.


Ah, that explains it. :-)

<SNIP>
Use the People, Tings, Events (PTE) methodology to design you
database. A bit of time with pen and paper and thought will help you
alot.

Something I didn't mention in the previous post. You might want to add
different categories/areas that people can post to i.e. General
Discussion, Weather, Politics etc. Using the PTE methodology can you
see how this table could be added later without disrupting the current
design?
Yeah, I was figuring that out (currently have 21 forums). However couldn't
it just be part of the "Things" table? Add a "ForumID" field and assign a
forum ID to each message header when it's added, then just specify one when
retrieving headers.

Also the previous design only allowed for a flat list (unlike a
tree-like structure). Obviously this is way over your head at the
moment but once you understand databases then you should be able to
plug in this feature without too much trouble (provided your database
design is sound to start with).
The current system isn't threaded, so I'm content to stick with that.

| Thanks very much for the ideas - you have no idea how appreciated they

are.
If it helps, here is my web site that I setup for my students. I
haven't updated in years and it uses MSAccess as the database.
http://www.users.bigpond.net.au/jefnorth/access.htm
The Tables area might be very helpful to you.

No probs.


Thanks, I'll take a look at it. One of my books had a chapter on smart
database design which helped me improve the efficiency of the current
accounts table (which stores quite a few different items).

- Daniel
Jul 20 '05 #13
"Daniel Tonks" <dtonks@sunstormADD-DOT-COM> wrote in message
news:41**********************@authen.newsreader.vi si.com...
"Norman Peelman" <np******@cfl.rr.com> wrote in message
news:Eb*****************@tornado.tampabay.rr.com.. .

That really isn't the answer to his question. The problem is he is that he
has not committed to take the leap from flat file to database. The very

way
in which he is retrieving the information is what is holding him back. I
believe there are two options:

1) go full database (would require writing scripts to convert flat files

to
database structure)
2) just download forum software and modify to fit his needs.

The first is a pain, the later, much easier.


It's not so much that I haven't committed as I don't want to bite off more
than I can chew at once. Thus converting in stages.

I have no problem inputting existing flat files to the database - the
scripts to do that are pretty easy - the bigger problem is coming up with

an efficient data structure that does what I need. Which will take a bit of
thought (like how many tables for the forums and indices - or should I use
completely separate databases - etc).

And I don't want to resort to pre-written forum software yet. I just prefer having a really unique look and feel (it may be possible to modify some of
the prewritten forum software out there as much as I'd like, but frankly I
haven't seen a good example of that so I'll just stick to my own stuff...
which I enjoy doing at any rate).

- Daniel


Daniel,
I understand how you feel about 'sticking to your own stuff' but to be
honest, you really are holding yourself back. Any of the decent forum
software has editable (templated) themes where all you really have to do is
change some css for your unique feel. You are just trying to reinvent the
wheel. Maybe one suggestion would be to download a forum and examine their
SQL SCHEMA (database setup for tables, etc) and see what they are using and
adapt from there.

Norm
--
Avatar hosting at www.easyavatar.com
Jul 20 '05 #14
"Daniel Tonks" <dtonks@sunstormADD-DOT-COM> wrote in message
news:41***********************@authen.newsreader.v isi.com...

The current system isn't threaded, so I'm content to stick with that.


I should clarify... it's threaded one level deep.

- Daniel
Jul 20 '05 #15
Look into the database terminology for "Normalize a relational database"

--
Thanks in Advance...
IchBin
_____________________________________________

'Black holes are where God divided by zero.'
-Steven Wright, comedian (1955- )
"Daniel Tonks" <dtonks@sunstormADD-DOT-COM> wrote in message
news:41**********************@authen.newsreader.vi si.com...
"Norman Peelman" <np******@cfl.rr.com> wrote in message
news:Eb*****************@tornado.tampabay.rr.com.. .

That really isn't the answer to his question. The problem is he is that he
has not committed to take the leap from flat file to database. The very

way
in which he is retrieving the information is what is holding him back. I
believe there are two options:

1) go full database (would require writing scripts to convert flat files

to
database structure)
2) just download forum software and modify to fit his needs.

The first is a pain, the later, much easier.


It's not so much that I haven't committed as I don't want to bite off more
than I can chew at once. Thus converting in stages.

I have no problem inputting existing flat files to the database - the
scripts to do that are pretty easy - the bigger problem is coming up with

an efficient data structure that does what I need. Which will take a bit of
thought (like how many tables for the forums and indices - or should I use
completely separate databases - etc).

And I don't want to resort to pre-written forum software yet. I just prefer having a really unique look and feel (it may be possible to modify some of
the prewritten forum software out there as much as I'd like, but frankly I
haven't seen a good example of that so I'll just stick to my own stuff...
which I enjoy doing at any rate).

- Daniel

Jul 20 '05 #16
On Sat, 7 Aug 2004 05:18:12 -0400, in mailing.database.mysql "Daniel
Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| "Jeff North" <jn****@yourpantsbigpond.net.au> wrote in message
| news:ud********************************@4ax.com...
| > On Sat, 7 Aug 2004 00:56:52 -0400, in mailing.database.mysql "Daniel
| > Tonks" <dtonks@sunstormADD-DOT-COM> wrote:
| >
| > >| > Or do you mean flat-table (non-normalised table) that resides in the
| > >| > database?
| > >|
| > >| Sorry, I was just paraphrasing. Yes, I have to read in each line from
| the
| > >| text file and split the line into the variables I need. Hey, the forum
| was
| > >| originally structured back in 1998 (expanded many times since),
| databases
| > >| wern't exactly on my mind at the time. :-)
| >
| > Then create your tables and use the database post haste. Text files
| > can not be indexed and therefore a sequential search of the data is
| > require. There is no getting away from this.
|
| Oh, I know that... my current search engine sequentially reads through over
| 400,000 messages (73,000+ files) as it is now... although I've come up with
| ways to make it more efficient over the years. I recently built myself a
| dedicated server (which is why I finally have MySQL available) that has
| oodles of power and actually manages to work though that horrible searching
| task quite quickly.
|
| All in due time though, getting the account system done is turning into
| enough work (although I'm merging in a whole output design overhaul as
| well).
|
|
| > >| > With this type of setup you can retrieve data by message or user.
| > >|
| > >| I think you've done something like this before!
| >
| > Only a couple of thousand times :-)
| > It is also how I used to teach students to design relational
| > databases.
|
| Ah, that explains it. :-)
|
| <SNIP>
|
| > Use the People, Tings, Events (PTE) methodology to design you
| > database. A bit of time with pen and paper and thought will help you
| > alot.
| >
| > Something I didn't mention in the previous post. You might want to add
| > different categories/areas that people can post to i.e. General
| > Discussion, Weather, Politics etc. Using the PTE methodology can you
| > see how this table could be added later without disrupting the current
| > design?
|
| Yeah, I was figuring that out (currently have 21 forums). However couldn't
| it just be part of the "Things" table? Add a "ForumID" field and assign a
| forum ID to each message header when it's added, then just specify one when
| retrieving headers.
Spot on :-)
| > Also the previous design only allowed for a flat list (unlike a
| > tree-like structure). Obviously this is way over your head at the
| > moment but once you understand databases then you should be able to
| > plug in this feature without too much trouble (provided your database
| > design is sound to start with).
|
| The current system isn't threaded, so I'm content to stick with that.
|
|
| > >| Thanks very much for the ideas - you have no idea how appreciated they
| are.
| >
| > If it helps, here is my web site that I setup for my students. I
| > haven't updated in years and it uses MSAccess as the database.
| > http://www.users.bigpond.net.au/jefnorth/access.htm
| > The Tables area might be very helpful to you.
| >
| > No probs.
|
| Thanks, I'll take a look at it. One of my books had a chapter on smart
| database design which helped me improve the efficiency of the current
| accounts table (which stores quite a few different items).
|
| - Daniel
|


Jul 20 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: Daniel Tonks | last post by:
First, please excuse the fact that I'm a complete MySQL newbie. My site used forum software that I wrote myself (in Perl) which, up until now, has used flat files. This worked fine, however...
2
by: Belmin | last post by:
Hi all, Wanted to know what is the most efficient way of doing a select query for mysql that only returns one value. For example: $mysqli->query('select count(*) from log'); $temprec =...
12
by: clintonG | last post by:
I can't tell you how frustrated I get when going to a web developer's website and observing he or she is an idiot that has not grasped the most fundamental element of usability: page title naming...
3
by: Rich | last post by:
Hello, I am populating a datagridview from a datatable and filtering the number of rows with a dataview object. Is there a way to retrieve the rows displayed by the datagridview into a separate...
1
by: Maxwell2006 | last post by:
Hi, I am working with strongly typed datatables. What is the most efficient way to build a new DataTAble based on the result of DataTable.Select? At this point I use a foreach loop to do the...
2
by: Jami Bradley | last post by:
I'm in need of some design suggestions! We have a fairly large DB with thousands of users accessing data throughout the day. I have been given the task of restructuring a core part of the web...
7
gchq
by: gchq | last post by:
Hi there Here is the situation - a table is built dynamically with values in the cells I need to retrieve and enter into a database. I have found a way of getting values using JavaScript, but of...
4
by: LetMeDoIt | last post by:
Greetings, I'm using ASP to retrieve from MSSQL and I then populate a table. After several months of successfull retrieves, this same code now bombs out. It turns out that if I clear out from...
21
by: py_genetic | last post by:
Hello, I'm importing large text files of data using csv. I would like to add some more auto sensing abilities. I'm considing sampling the data file and doing some fuzzy logic scoring on the...
4
by: | last post by:
Using VS.NET I am wondering what methods developers use to deploy ASP.NET website content to a remote server, either using FTP or network file copy. Ideally there would be a one-button or...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.