REQUEST COMPLIMENTARY SQLS*PLUS LICENCE
SQL – PROS AND CONS
PROS AND CONS – Independence from a specific DBMS
Despite the presence of dialects and syntax differences, most of the SQL query texts containing DDL and DML can be easily transferred from one DBMS to another. There are systems whose developers initially focused on using at least several DBMS. Naturally, it is already very difficult to achieve such portability when applying some specific features.
Availability of standards
Availability of standards and a set of tests to identify compatibility and compliance of a particular SQL implementation with a common standard only contributes to the “stabilization” of the language. However, it is worth noting that the standard itself is in some places too formalized and expanded in size.
Declaracy of PROS AND CONS
With SQL, the programmer only describes what data should be extracted or modified. The way of doing this is decided by the DBMS directly when processing the SQL query. However, one should not think that this is a completely universal principle – the programmer describes the data set to be extracted or modified, but it is useful to imagine how the DBMS will parse his query text. The more complex the query is designed, the more writing options it allows, varying in execution speed but equal in the final data set.
Disadvantages of Mismatching relational data model
The creators of the relational data model Edgar Codd, Christopher Data and their supporters point out that SQL is not truly a relational language. In particular, they point to the following SQL problems:
- Repeating rows
- Undefined values
- Clear indication of column order from left to right
- Columns without name and duplicate column names
- Lack of support for the “=” property
- Using pointers
- High redundancy
In the Manifesto published by Christopher Data and Hugh Darwen the Third, they set out the principles of the next generation DBMS and offer the language Tutorial D, which is truly relational.
The Challenge
Although SQL was conceived as an end user tool, it eventually became so complex that it became a programming tool.
Deviations from standards
Despite the presence of the international standard ANSI SQL-92, many companies engaged in DBMS development make changes to the SQL language used in the developed DBMS, thus deviating from the standard. Thus, there are dialects of SQL language specific for each DBMS.
Difficulty of Working with Hierarchical Structures
Previously, SQL dialects of most DBMS did not offer a way to manipulate tree structures. Some DBMS vendors offered their solutions. At present, ANSI standardizes the WITH recursive construct from the SQL DB2 dialect. In MS SQL Server recursive queries appeared only in MS SQL Server 2005 version.
MORE NEWS
PreambleNoSql is not a replacement for SQL databases but is a valid alternative for many situations where standard SQL is not the best approach for...
PreambleMongoDB Conditional operators specify a condition to which the value of the document field shall correspond.Comparison Query Operators $eq...
5 Database management trends impacting database administrationIn the realm of database management systems, moreover half (52%) of your competitors feel...
The data type is defined as the type of data that any column or variable can store in MS SQL Server. What is the data type? When you create any table or...
PreambleMS SQL Server is a client-server architecture. MS SQL Server process starts with the client application sending a query.SQL Server accepts,...
First the basics: what is the master/slave?One database server (“master”) responds and can do anything. A lot of other database servers store copies of all...
PreambleAtom Hopper (based on Apache Abdera) for those who may not know is an open-source project sponsored by Rackspace. Today we will figure out how to...
PreambleMongoDB recently introduced its new aggregation structure. This structure provides a simpler solution for calculating aggregated values rather...
FlexibilityOne of the most advertised features of MongoDB is its flexibility. Flexibility, however, is a double-edged sword. More flexibility means more...
PreambleSQLShell is a cross-platform command-line tool for SQL, similar to psql for PostgreSQL or MySQL command-line tool for MySQL.Why use it?If you...
PreambleWriting an application on top of the framework on top of the driver on top of the database is a bit like a game on the phone: you say “insert...
PreambleOracle Coherence is a distributed cache that is functionally comparable with Memcached. In addition to the basic function of the API cache, it...
PreambleIBM pureXML, a proprietary XML database built on a relational mechanism (designed for puns) that offers both relational ( SQL / XML ) and...
What is PostgreSQL array? In PostgreSQL we can define a column as an array of valid data types. The data type can be built-in, custom or enumerated....
PreambleIf you are a Linux sysadmin or developer, there comes a time when you need to manage an Oracle database that can work in your environment.In this...
PreambleStarting with Microsoft SQL Server 2008, by default, the group of local administrators is no longer added to SQL Server administrators during the...