Why does the order of the classes change sometimes? It always fucks me up cus I check the user counts and they look diff when in fact they are the same.
1/11/2002 6:22:43 PM
woah, mine changes too, i just noticed that, kinda crazy... hmmm, Jake and Joe playing a mind trick on us?
1/12/2002 12:34:34 AM
yeah i noticed it too...just didnt' care to say anything
1/12/2002 12:57:27 AM
Well, I'm guessin that they don't select if from the database in any specific order. For instance Select blah from blah; instead of select blah from blah order by blah; Really though, what would you order by. And since this is the case, sometime the positions of things change in the database. At least thats how it is with mysql.
1/12/2002 1:11:16 AM
for database guys : it SHOULD have been ordered by department and coursenumber because it has a clustered index those columns but for some reason it was acting funny. i used to do the same thing with the message boards (not explicity put an order by clause) and rely on the clustered index for ordering but occasionally things would get WAAAY out of wack and old threads would appear on top and shit. i put an order by clause on the my schedule shit.anyone else : it is fixed
1/12/2002 1:25:59 PM