home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > Webmastering and Programming
Ask a Tech Support Question (free)!

what would a home user use a database for?

Reply
Get bargains at  »  Dealighted.com
 
Thread Tools Search this Thread
Currently Active Users: 2280
Discussions: 200,959, Posts: 2,379,538, Members: 246,329
Old February 28th, 2002, 06:46 AM   Digg it!   #1 (permalink)
Banned
 
Chooco's Avatar
 
Join Date: Feb 2002
Posts: 804
what would a home user use a database for?

would something like SQL help my little home server here in any way? this computer is just 1 huge project to become the host to everything i can think of.

btw what do YOU guys use SQL for?
Chooco is offline   Reply With Quote
Old February 28th, 2002, 07:49 AM     #2 (permalink)
Not Really a Member
 
Join Date: Oct 2001
Posts: 25,391
A home user, may use a database to keep a collection of DVD'd, CD's, any sort of collection you may have pretty much anything where you have a lot of things and you'd like to organize it to possibly make reports...

Or if eventually you want to make your own forums like this place it all runs on MySQL with PHP driving the html.

Only place I've really used sql personally is at work, not so much my current job but a previous job we worked with sql server 7. Really one of the few products I like from MS

Its not as stable as Oracle nor as functional but I liked developing for it

Something I'd love to get into in the future is DBA, Database Administration, I did some at that job and enjoyed it.. pulled some hair out but that's ok I'll make more

You may ask well why can't I just put all my cd's in a spreadsheet? Ahhh but you're losing out on the worlds of functionality that a database offers
vass0922 is online now   Reply With Quote
Old February 28th, 2002, 09:55 PM     #3 (permalink)
Banned
 
qball's Avatar
 
Join Date: Oct 2001
Posts: 447
When the braniacs at IBM where first thinking of developing a PC (something they eventually did) the best idea for home use that they could come up with was saving recipes. Look at the PC now...

Recipes, actually would be a good DB learning exercise as most anyone can understand them and the data structure behind them, but...

Quote:
would something like SQL help my little home server

SQL is the language of DBs, not DBs themselves, but...

vass0922 makes some very good points, hopefully I can add some meself.

DB store data and they do it VERY well. So iffin you're dealing wif lots o' data or dealing wif lotso data would help you, then a DB is the answer.

I maintain DBs at home, well, because as a developer I use DBs. Though, to be honest, all my personal DBs are for development purposes, go figure. In other words I could use DB for my music collection and write a real neat PHP/ASP/JSP/HTML interface, but I'm lazy and just keep 'em in different directories (same with porn, DOH!).

Iffin you have Access, check out some of their sample DBs and see what they do.

I will give kudos to:

http://www.mysql.com http://www.sybase.com/products/databaseservers/ase
qball is offline   Reply With Quote
Old February 28th, 2002, 10:21 PM     #4 (permalink)
addicted
 
DVNT1's Avatar
 
Join Date: Oct 2001
Location: Ohio
Posts: 6,103
You could print bar codes, get a bar code wand, and bar code everything in your house while cataloging it in you database.

You could create an address book that contained things like...who to send Xmas cards too, their birthdays, etc. Then create a report to print the Xmas card labels; create query that runs at start-up and has a welcome screen with query results that checked for up-coming birthdays or other important dates. (7 days away so you have time to buy something).

You could use it to track times you fall to your addictions. Then you could create a pareto chart to show what your worst weaknesses really are.

DVNT1 is offline   Reply With Quote
Old March 1st, 2002, 12:35 AM     #5 (permalink)
Senior Member
 
Rhino's Avatar
 
Join Date: Oct 2001
Posts: 552
Keep track of your hardware. Temp logs, times, etc. Have a history of how your hardware peformed under different environmental factors, drivers, etc.

About the only thing I use SQL for is in Access in queries. Sometimes its easier to write your own code than to manipulate their GUI.
__________________
It's like that, and it's like this....
Rhino is offline   Reply With Quote
Old March 3rd, 2002, 01:11 AM     #6 (permalink)
Not Really a Member
 
Join Date: Oct 2001
Posts: 25,391
Oh and one minor note...
If you're just planning on putting allllll the data into one table (for instance making a column with data like "ArtistName - Song Name - Album Name" you may as well put it in a spreadsheet because you are losing out on some of the benefits of databases.

For instance for a cd database you could get fairly elaborate

Songs Table
*SongId -- primary key -- uniqueid
*SongName -- self explanatory
*Artistid -- Foregn Key id that corresponds to the artist and links to the artist table
*AlbumId -- Foreign Key, id that corresponds to the artist and links to the album table
*billboard top placement -- top spot the song got in billboard
*SongGreatnessScale -- how great (or horrific) the song is in your personal taste

Artist Table
*ArtistId -- Primary key -- uniqueid (unique numbers)
*Artist Name -- full name of artist
*NumOfGrammysWon
*NumOfGrammysNominated
*HottieScale -- (not applicable to males ) 1-10

AlbumTable
*AlbumId -- PrimaryKey, uniqueId for Albums table
*ArtistId -- ForeignKey -- links to artist table, to show artist of the album
*YearReleased -- self explanatory
*TopBillboardPlacement -- self explanatory
*AlbumsSold
*AlbumGreatnessScale -- personal scale 1-10 how much you like the album

You get the point...
Once you get all the data filled out (the fun part ) you'll be amazed once you get the hang of it the data you can pull out.

How many albums by one artist you have, how many good albums you have... if you're looking to make a few bucks, just do a query for how many albums you have where the scale is less than 4... the ones that show up... pawn 'em lol

You get the point.
__________________
Helicopters don't fly; they vibrate so much and make so much noise that the earth rejects them.
vass0922 is online now   Reply With Quote
Old March 3rd, 2002, 02:47 AM     #7 (permalink)
Banned
 
Chooco's Avatar
 
Join Date: Feb 2002
Posts: 804
why do i get the feeling that databased will come back to haunt me when i get a real job.........
Chooco is offline   Reply With Quote
Old March 3rd, 2002, 02:44 PM     #8 (permalink)
Not Really a Member
 
Join Date: Oct 2001
Posts: 25,391
no matter where you go
no matter what you do
you can not run away

although if you wish, you can be a user and just use the GUI
Databases are not scary at all IMO of course hehe
Quite honeslty I think they're awesome, its amazing how much you can do with so little code.
you can update millions of records, or wipe out millions of records in the blink of an eye
Sometimes its a little too easy been there done that lol
vass0922 is online now   Reply With Quote
Old March 3rd, 2002, 10:06 PM     #9 (permalink)
Banned
 
Chooco's Avatar
 
Join Date: Feb 2002
Posts: 804
i did a little something like that to a dude who stole my skateboard. back then we called it 'format c: /q'
Chooco is offline   Reply With Quote
Old March 3rd, 2002, 11:27 PM     #10 (permalink)
Not Really a Member
 
Join Date: Oct 2001
Posts: 25,391
bah, childs play lol
vass0922 is online now   Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Most Active Discussions
Is It Just Me? (2970)
The disrespect of Obama by Russian .. (44)
Making Health Care Worse (179)
Wireless Televisions. (12)
CPU fan stops spinning randomly (9)
Regular Build (11)
windows 7 problem (7)
Laptop with wireless problem. (5)
windows vista security holes (13)
Is the PSU I received dead? (13)
Print spooler problem (16)
radeon x850xt platinum & shader.. (6)
HIS HD5770 graphic card question (15)
Install XP pro and a Vista laptop ?.. (11)
Recent Discussions
Is the PSU I received dead? (13)
Print spooler problem (16)
Nvidia GTX 260 problem (0)
windows vista security holes (13)
Kingston Bluetooth Dongle Driver (1)
Multiple Restarts Required at Boot (3)
Open With ..... Win7 (1)
webcam (0)
upgrade for hp a6101 (0)
Laptop with wireless problem. (5)
Modern Warfare 2: Who Bought It? (64)
tv not turn on-makes clicking sound (2)
CPU fan stops spinning randomly (9)
EVGA 9800 gtx help with finding a goo.. (11)
Regular Build (11)
Help with onclick and buttons (0)
Virus advise (8)
My monitor won't turn on after instal.. (1)
Internet Lost (3)
Dept. of HS: NSA 'Helped' Develop Vis.. (16)
Point and Shoot Camera Suggestions. (4)
Ideal cheap graph card for PC-Gaming? (18)
radeon x850xt platinum & shader 3 (6)
Graphics Card Upgrade Question (4)
For Sale BFG GTX285 OC2 with 10 year .. (3)


All times are GMT -4. The time now is 10:25 AM.
TechIMO Copyright 2009 All Enthusiast, Inc.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28