Welcome Guest ( Log In | Register )



 
Reply to this topicStart new topic
> Examining Databases At A Whole Glance, SQL-92 specification
Silver Bluewater
post Jun 5 2007, 01:16 PM
Post #1


Newbie [ Level 2 ]
Group Icon

Group: Members
Posts: 21
Joined: 28-May 07
Member No.: 22,208



Most of us using databases or doing data minings are not aware of SQL-92 specification seemingly these days.

SQL-92 specifiaction is the SQL database query language standard.

Oracle,mysql postgresql,mssql and DB2 - most widely recognized SQL database programs - are all closely related to SQL-92 specification for the use of query nevertheless how they implemented SQL-92 specification features inside in the program.

Implementation of SQL-92 specification features are applied in the order of Oracle, postgresql and mysql. These databases might have specific database query language dedicated to its own feature due to its systematic features of the program or/and traditions or/and add-on for the convenience of the users.

As long as you're aware of the figures implemented in specific database programs, you can write the program using query languages that can be used for other programs.

For instance, sub-query was not implemented in mysql as of version three line. When you want to write the program which can run in postgresql and oracle version at the time of mysql version three lines, you should be aware of the figure that sub-query is not implemented for mysql at the time as well as other features that might prevent the program not to run by posgresql,Oracle and etc.

This is the SQL-92 specification although it is only Second Informal Review Draft and the hypher text link toward this version is http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt.


--
Have a nice day!

My blog : silverbluewater.blogspot.com

This post has been edited by Silver Bluewater: Jun 5 2007, 01:21 PM
Go to the top of the page
 
+Quote Post
TavoxPeru
post Jun 6 2007, 05:06 AM
Post #2


Super Member
Group Icon

Group: [HOSTED]
Posts: 750
Joined: 8-April 06
From: Lima - Peru
Member No.: 12,579



Thanks for the info and the link.

Best regards,
Go to the top of the page
 
+Quote Post
Sten
post Jun 7 2007, 04:37 AM
Post #3


Oh come on Mrs. B!
Group Icon

Group: Members
Posts: 648
Joined: 6-June 07
From: Tasmania, Australia
Member No.: 22,422



I'm not so good with databases.
I can though work my way around a mysql database for my site.
As long as I can do that im happy.
Go to the top of the page
 
+Quote Post
Silver Bluewater
post Jun 12 2007, 03:50 AM
Post #4


Newbie [ Level 2 ]
Group Icon

Group: Members
Posts: 21
Joined: 28-May 07
Member No.: 22,208



QUOTE
Thanks for the info and the link.

Best regards,
My pleasure. biggrin.gif

QUOTE(Sten @ Jun 7 2007, 01:37 PM) *

I'm not so good with databases.
I can though work my way around a mysql database for my site.
As long as I can do that im happy.


Ic. smile.gif


--
Have a nice day!

My blog : silverbluewater.blogspot.com

This post has been edited by Silver Bluewater: Jun 12 2007, 03:51 AM
Go to the top of the page
 
+Quote Post
.:Brian:.
post Jun 13 2007, 03:44 PM
Post #5


Premium Member
Group Icon

Group: Members
Posts: 219
Joined: 13-February 07
Member No.: 20,371



So can somebody please elaborate on what this means?

I get that this is some sort of standards thing, like the html, css, etc... but I am not sure what we are supposed to do with this, or what is supposed to be taken from this.
Go to the top of the page
 
+Quote Post
yordan
post Jun 23 2007, 09:25 PM
Post #6


Way Out Of Control - You need a life :)
Group Icon

Group: [MODERATOR]
Posts: 1,980
Joined: 16-August 05
Member No.: 7,896



QUOTE(.:Brian:. @ Jun 13 2007, 05:44 PM) *
So can somebody please elaborate on what this means?

I get that this is some sort of standards thing, like the html, css, etc... but I am not sure what we are supposed to do with this, or what is supposed to be taken from this.


This simply seems to be a reminder of the need of standards. If you don't know how it works but you know it's standard, have a look at the standards.
If you want to learn how to create a program based on database usage, and want to be independant from the database provider - using Oracle for big professional databases using a very expensive RDBMs or mysql for a small home database using free software - you have to learn how each one confirms to standards, and then you can use standard sentences (select * from mytable where myfield="myself"), and avoid unexisting features, or even use the standard features of a given RDBMS in order to boost your queries.
So, what is supposed to be taken from this ? Simply the link to the document you must keep in mind, as well as a general philosophy in the way you design your own work ; or the way you have to check that you work you pay for is really done.
Regards
Yordan
Go to the top of the page
 
+Quote Post
Silver Bluewater
post Jul 24 2007, 02:26 PM
Post #7


Newbie [ Level 2 ]
Group Icon

Group: Members
Posts: 21
Joined: 28-May 07
Member No.: 22,208



QUOTE
So can somebody please elaborate on what this means?

I get that this is some sort of standards thing, like the html, css, etc... but I am not sure what we are supposed to do with this, or what is supposed to be taken from this.
I think the answer is provided in a good descriptive terms by yordan. : D

QUOTE(yordan @ Jun 24 2007, 06:25 AM) *

This simply seems to be a reminder of the need of standards. If you don't know how it works but you know it's standard, have a look at the standards.
If you want to learn how to create a program based on database usage, and want to be independant from the database provider - using Oracle for big professional databases using a very expensive RDBMs or mysql for a small home database using free software - you have to learn how each one confirms to standards, and then you can use standard sentences (select * from mytable where myfield="myself"), and avoid unexisting features, or even use the standard features of a given RDBMS in order to boost your queries.
So, what is supposed to be taken from this ? Simply the link to the document you must keep in mind, as well as a general philosophy in the way you design your own work ; or the way you have to check that you work you pay for is really done.
Regards
Yordan


I checked the post today and found the answer is already given to the question. Thank you for the good answer, yordan. I think your answer would be also the answers for some other users too. : D


__________________________________________________________________________-

Short tip and news of the trend of famous database systems which might be helpful for
some of the users to understand the topic here: Postgresql,Oracle and mysql .

Oracle is known for its good reliability and so it has been used for very big professional
environments while mysql has been used for small environment. Postgresql has been used
as something in between of Oracle and mysql with its transaction(data-securing figure used
for database systems in a very simple term) figure. Transaction is quite recently supported
by mysql. Oracle has been supporting transaction features the most among these three
major-line database systems as well as known for its fast standard implementing.
Transaction is very important feature where the environment is sensitive over data-loses.
Around the version three line of mysql, transaction in real terms was only supported by
Oracle. Mysql is recently used for big database environment with its marketing after the
several use of mysql for a big database was found.

_________________________________________________________________________


--
Have a nice day!

My blog : silverbluewater.blogspot.com

This post has been edited by Silver Bluewater: Jul 24 2007, 02:39 PM
Go to the top of the page
 
+Quote Post
yordan
post Jul 25 2007, 10:02 AM
Post #8


Way Out Of Control - You need a life :)
Group Icon

Group: [MODERATOR]
Posts: 1,980
Joined: 16-August 05
Member No.: 7,896



QUOTE
Thank you for the good answer, yordan.

You're welcome. I'm very happy having been able to be helpful. Have a long life with sql databases !
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Databases(2)
  2. Free Graphical Tools For Databases(7)
  3. Need Help Programming With Databases (VB.NET)(9)
  4. Need Advice On Creating Online Music Database(6)
  5. All About Databases(3)
  6. How Do You Make Large Databases?(14)
  7. Ms Databases(6)
  8. Can You Make Your Own MySQL Databases?(7)
  9. What Is A Database How Do I Use One?(7)
  10. Copy Databases In phpMyAdmin(3)
  11. The Best Database(41)
  12. How To Setup SMF Databases?(4)
  13. CMS102 - Content Management System Design(9)
  14. Accessing And Retrieving Data From A Databases.(2)
  15. Updating A Database's Tables(10)
  1. Where Have My Databases Gone(7)
  2. Combining Databases(4)
  3. I Lost Mysql Databases And Privileges!?(10)
  4. Unexpected Database Crashes(0)
  5. Hosting A Server On Database(6)
  6. phpBB And Mambo Login(2)
  7. Creating Databases(4)
  8. Migrating Databases(2)
  9. Remote Databases(4)
  10. Merging Sql Databases In Cpanel With Phpmyadmin(0)
  11. Free Databases(14)
  12. Can Some One Give Me A Script To Add(2)


 



- Lo-Fi Version Time is now: 7th September 2008 - 03:52 AM