• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Liutauras Vilda
  • Ron McLeod
  • Jeanne Boyarsky
  • Paul Clapham
Sheriffs:
  • Junilu Lacar
  • Tim Cooke
Saloon Keepers:
  • Carey Brown
  • Stephan van Hulst
  • Tim Holloway
  • Peter Rooke
  • Himai Minh
Bartenders:
  • Piet Souris
  • Mikalai Zaikin

What is the difference between sand box and repository

 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is the difference between sand box and repository?
what are the advantages of repository instead of using Database?
 
Ranch Hand
Posts: 118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

What is the difference between sand box and repository?



Sandbox is test environment provided to try out the things.

what are the advantages of repository instead of using Database?



Both, repository and database can be used to store a data. You can call "Repository" to environment where data is stored in files
and "Database", where data is stored in databases like MySql or Oracle.
Advantage of "Repository" here can be easy data modification.
 
rosan samuel
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks my friend...
Is there any links related how to create repository?
 
author and jackaroo
Posts: 12200
280
Mac IntelliJ IDE Firefox Browser Oracle C++ Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It is rather hard to make suggestions without knowing your use case.

One of the popular source code repositories within corporations is SubVersion, and the canonical reference for that is the SubVersion Red Book.

A very popular source code repository for open source software is Git. For that you might want to look at the Git Community Book.

Note that even though I have said that SVN is popular in corporations and Git is popular in open source projects, neither is an absolute. There are plenty of other repository managers which can be used in either case, and SVN is still in use in open source projects, and Git is also making (slow) inroads into distributed corporate environments.
 
rosan samuel
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Friend..
The purpose of our need is storing XML file..
Do you have any idea about RTC(Rational Team Concert)
 
Andrew Monkhouse
author and jackaroo
Posts: 12200
280
Mac IntelliJ IDE Firefox Browser Oracle C++ Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have never used Rational Team Concert.

Looking at your use case, and the feature set of Rational Team Concert, it seems to be overkill for your needs. If you have more than 10 users you will need to purchase licenses.
 
Tongue wrestling. It's not what you think. And here, take this tiny ad. You'll need it.
Thread Boost feature
https://coderanch.com/t/674455/Thread-Boost-feature
reply
    Bookmark Topic Watch Topic
  • New Topic