Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

diff b/w DBMS & RDBMS?

Answer Posted / arindam mukherjee

There are basically two differences: -
1) The main difference between DBMS and RDBMS is that,
RDBMS follows the relational data model(given by Ted Codd
in 1970 in his research paper), which is based on the Set-
theorical concept of the mathematics.

Where as DBMS does not follow any specific data model.

2) In RDBMS we can establish logical relation between two
or more tables and by making such relations we can maintain
the integrity of the database (referential integrity), i.e
we can't insert data into the child relation if the data
does not exist in the parent relation.

Where as DBMS does not give us such facility and to
implement such things in DBMS, we have to use some other
application program.

Is This Answer Correct ?    44 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to know whether the user information or any other information which is entered in to the web is storing in secured place or non secured place?

2144


How do you select which automation tool is best suited for you?

1074


Hi, Below is the code that i ran on selenium RC using eclipse IDE and java coding.: package source; import org.testng.annotations.BeforeSuite; import org.testng.annotations.Test; import com.thoughtworks.selenium.*; public class parameterized extends SeleneseTestCase { private Selenium browser; public static void main(String []args) { String arr[] = new String[5]; arr[0]= "bert"; arr[1]= "regular"; arr[2]= "copyonly"; arr[3]= "doert"; arr[4]= "inter"; parameterized obj = new parameterized(); obj.setUp(); obj.login_parameterize(arr); } @BeforeSuite public void setUp() { browser = new DefaultSelenium("localhost",4444, "*chrome", "http://goolge.com"); browser.start(); browser.open("http://goolge.com"); browser.waitForPageToLoad("30000"); browser.windowMaximize(); browser.open("/"); browser.click("gb_23"); } @Test public void login_parameterize(String[] arr ) { for(int i=0;i<=5;i++) { for(int j=0;j<=2; j++) { browser.type("//input[@id='Email']", arr[i]); browser.type("//input[@id='Passwd']", arr[i]); browser.click("//input[@id='signIn']"); browser.waitForPageToLoad("30000"); } } } public void EnterValuesIntoTextField_CheckWithGetValue() throws Exception { selenium.open("http://www.essaywriter.co.uk"); assertEquals("", selenium.getValue("id=textInput")); selenium.type("id=textInput", "Text In The Field"); assertEquals("Text In The Field", selenium.getValue("id=textInput")); } } When i ran this test i got an error which says: "Method login_parameterize requires 1 parameters but 0 were supplied in the @Test annotation." Any help is much appreciated. thank Gab

2656


IS DATA INTEGRITY TESTING AND INTEGRATION TESTING ONE AND THE SAME?IF DIFF CAN U SPECIFY THE DIFFERENCES

2161


Can anyone tell me the correct answer of below question....it is about Bugzilla tool. When bug will find out at the time of executio where it will save or what is the location of bug??

1984


Is ui level testing possible?

1054


if we are using an Engine (tool)..with that how to capture data from excel sheets and how to do automation with this plz answer any body for this question.?

2148


Tell me what is an absolute xpath?

1035


Tell me how can you switch back from a frame?

1040


is anybody suggest me which one is the best testing institute in ameerpet hydrabad

2212


What is the difference between automation tools and management tools?

1089


whether flash selenium supports to test Gaming application? like follows: identifying the images, dynamic animations, Dynamic value changes field and win conditions etcc..,

1993


How can the user get a text of a web element?

1048


Give some examples for performance test tools?

1117


I want a code for a following item in TSL Language. Look up a person in database, If not found, add person to the database.

1973