Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2003-12-04 : 08:01:26
|
| Phaneendra writes "Can we implement Inheritance in SQL Server-2000? If Yes, then How can we do that? (Windows - XP)" |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2003-12-04 : 12:12:28
|
| What do you mean by inheritance?Tara |
 |
|
|
X002548
Not Just a Number
15586 Posts |
Posted - 2003-12-04 : 12:57:56
|
| Sounds like cascading...or it could be instances?What do you want to? An example would help.Brett8-) |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2003-12-04 : 13:04:55
|
| And why on XP?Tara |
 |
|
|
ehorn
Master Smack Fu Yak Hacker
1632 Posts |
Posted - 2003-12-04 : 14:35:10
|
| SQL Server is a relational database not object-oriented database system. When modelling your tables you use a Relational Entity Model. You could have an OODBMS (Object-oriented DBMS). In such a case, you do not model your data using tables, but objects, defining methods, private and public data, inheritance etc., as you would do if you wrote a program in an OO language such as C++ or Java. As such, SQL Server does not support Inheritance in the traditional OO sense |
 |
|
|
|
|
|