|
Solution Search:
Most Popular
|
Related Expert Advice
Exporting from SQL Server to Oracle
Can we export all procedures and triggers from Microsoft SQL Server to Oracle8i? The answer is no. Even if you could perform such an export, importing would not work. The reason is that MS SQL Server uses T-SQL for its procedural language and Oracle uses PL/SQL...
More...
Aug 16, 2005
What is SQL?
What is SQL?
The acronym SQL stands for Structured Query Language. Some people claim that this is a bad name, because SQL isn't (properly) structured it's more than just queries (e.g. insert, update, delete) it isn't a... More... Feb 24, 2002
Query to see which user is executing which SQL statement
What is the query to see which user is executing what SQL statement? You can join V$SESSION to V$SQL similar to the following: SELECT sq.sql_text
FROM v$session se, v$sql sq
WHERE se.sql_address = sq.address AND se.sql_hash_value = sq.hash_value AND se.session_id...
More...
Nov 28, 2005
Related Solution Center
The relational data model
Here you'll find an introduction to the relational model with reference to the Oracle proprietary Relational Database Management System (RDBMS...
More...
Jun 25, 2003
Relational model
The relational model has never been fully implemented, but it still provides the basis for most modern database technology. This article describes the relational model and its advantages and...
More...
Jun 17, 2003
Introduction to relational databases
An excellent primer on relational databases, this article describes Codd's 12 rules, database design, keys and normalization...
More...
Jun 17, 2003
|