relational database management system (RDBMS)
A relational database management system (RDBMS) is a program that lets you create, update, and
administer a relational
database. Most commercial RDBMS's use the Structured Query Language (SQL) to access
the database, although SQL was invented after the development of the relational model and is not
necessary for its use.
The leading RDBMS products are Oracle, IBM's DB2 and
Microsoft's SQL
Server. Despite repeated challenges by competing technologies, as well as the claim by some
experts that no current RDBMS has fully implemented relational principles, the majority of new
corporate databases are still being created and managed with an RDBMS.
Contributor(s): Shawn Chin and Orjan Timan
This was last updated in November 2005
Email Alerts
Register now to receive SearchSQLServer.com-related news, tips and more, delivered to your inbox.
By submitting you agree to receive email from TechTarget and its partners. If you reside outside of the United States, you consent to having your personal data transferred to and processed in the United States.
Privacy
More News and Tutorials
-
While working with business objects in SQL Server I am getting the error "conversion of char data type to datetime data type resulted in an out of range datetime value." What is the problem?
-
I'm currently working on table partitioning. I'm struggling with using this " SELECT MAX(NAME) from sys.filegroups WHERE NAME NOT LIKE 'PRIMARY' " in order to get the last used Filegroup. Now this works just fine, but when I run the following script:
--Decalre variables
DECLARE @LastFilegroupName VARCHAR(50)
DECLARE @FilegroupName VARCHAR(50)
--Retuns the next FileGroup to be used
SET @LastFilegroupName = (select MAX(NAME) from sys.filegroups WHERE NAME NOT LIKE 'PRIMARY')
SET @LastFilegroupName = Replace(@LastFilegroupName,'FileGrp','')
SET @FilegroupName = 'FileGrp' + CAST((@LastFilegroupName + 1) as varchar(10))
--Alter database statement
ALTER DATABASE VadivelTesting
ADD FILEGROUP @NewFG_Name
This script gives the following error "Incorrect syntax near '@NewFG_Name'."
When I give it a static name it works fine, but not with the variable. What should I do?
-
I received this error:
"XP and VS2003
The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value."
The same page under Server 2003 works well. I need to continue developing under XP, what can I do?
-
Articles
-
Resources from around the Web