|
|
|
| Web Hosting Guide |
![]() ![]() |
Examining Databases At A Whole Glance, SQL-92 specification |
Jun 5 2007, 01:16 PM
Post
#1
|
|
|
Newbie [ Level 2 ] 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 |
|
|
|
Jun 6 2007, 05:06 AM
Post
#2
|
|
|
Super Member Group: [HOSTED] Posts: 876 Joined: 8-April 06 From: Lima - Peru Member No.: 12,579 myCENTs:13.21 |
Thanks for the info and the link.
Best regards, |
|
|
|
Jun 7 2007, 04:37 AM
Post
#3
|
|
|
Oh come on Mrs. B! 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. |
|
|
|
Jun 12 2007, 03:50 AM
Post
#4
|
|
|
Newbie [ Level 2 ] Group: Members Posts: 21 Joined: 28-May 07 Member No.: 22,208 |
QUOTE Thanks for the info and the link. My pleasure. Best regards, QUOTE(Sten @ Jun 7 2007, 01:37 PM) [snapback]104727[/snapback] 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. -- Have a nice day! My blog : silverbluewater.blogspot.com This post has been edited by Silver Bluewater: Jun 12 2007, 03:51 AM |
|
|
|
Jun 13 2007, 03:44 PM
Post
#5
|
|
|
Premium Member 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. |
|
|
|
Jun 23 2007, 09:25 PM
Post
#6
|
|
|
Way Out Of Control - You need a life :) Group: [MODERATOR] Posts: 3,101 Joined: 16-August 05 Member No.: 7,896 myCENTs:19.00 |
QUOTE(.:Brian:. @ Jun 13 2007, 05:44 PM) [snapback]105293[/snapback] 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 |
|
|
|
Jul 24 2007, 02:26 PM
Post
#7
|
|
|
Newbie [ Level 2 ] Group: Members Posts: 21 Joined: 28-May 07 Member No.: 22,208 |
QUOTE So can somebody please elaborate on what this means? I think the answer is provided in a good descriptive terms by yordan. : DI 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. QUOTE(yordan @ Jun 24 2007, 06:25 AM) [snapback]106016[/snapback] 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 |
|
|
|
Jul 25 2007, 10:02 AM
Post
#8
|
|
|
Way Out Of Control - You need a life :) Group: [MODERATOR] Posts: 3,101 Joined: 16-August 05 Member No.: 7,896 myCENTs:19.00 |
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 ! |
|
|
|
![]() ![]() |
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:
Similar Topics
| Topic Title | Replies | Topic Starter | Views | Last Action | |||
|---|---|---|---|---|---|---|---|
![]() |
2 | xhrist14n | 175 | 26th November 2009 - 05:28 AM Last post by: starscream |
|||
![]() |
3 | khalilov | 480 | 4th February 2009 - 09:14 AM Last post by: Quatrux |
|||
![]() |
0 | rnd-am | 449 | 18th December 2008 - 03:44 AM Last post by: rnd-am |
|||
![]() |
5 | 96than | 5,204 | 23rd November 2008 - 02:20 AM Last post by: Arbitrary |
|||
![]() |
2 | romeo123 | 587 | 22nd April 2008 - 03:51 PM Last post by: yordan |
|||
![]() |
7 | java-area | 1,025 | 22nd April 2008 - 03:41 PM Last post by: yordan |
|||
![]() |
9 | Jimmy89 | 2,194 | 12th April 2008 - 02:28 PM Last post by: iGuest |
|||
![]() |
3 | TheBoutique- | 809 | 10th August 2007 - 10:57 AM Last post by: yordan |
|||
![]() |
14 | lonebyrd | 2,258 | 4th May 2007 - 06:32 AM Last post by: TavoxPeru |
|||
![]() |
6 | olie122333 | 1,223 | 27th March 2007 - 06:42 AM Last post by: sher |
|||
![]() |
7 | Jarvis | 1,918 | 19th March 2007 - 12:07 PM Last post by: vhortex |
|||
![]() |
11 | joe.k | 1,594 | 31st January 2007 - 06:47 AM Last post by: quinciest |
|||
![]() |
4 | mayoman123 | 2,216 | 16th September 2006 - 04:55 PM Last post by: mayoman123 |
|||
![]() |
2 | Demonhawk | 990 | 6th August 2006 - 05:15 AM Last post by: Demonhawk |
|||
![]() |
7 | HellFire121 | 1,324 | 15th February 2006 - 07:43 PM Last post by: saxsux |
|||
|
Lo-Fi Version | Time is now: 11th March 2010 - 11:47 PM |
© 2010 AstaHost: Free Web Hosting & Technical Discussion, Free Web Hosting. a member of xisto.
Powered by Invision Board. Skin: IPB Forum Skins
Expand / Collapse Navigation



Jun 5 2007, 01:16 PM





