CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Jun 2011
    Location
    http://www.scalebase.com
    Posts
    7

    Database Storage?

    Why it is important to store your database in multiple locations? and how it can be achieved in the easiest and reliable manner.

  2. #2
    Join Date
    May 2002
    Posts
    10,943

    Re: Database Storage?

    Multiple locations are used for secure data retention. If something happens to one, then you at least have another copy.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  3. #3
    Join Date
    Jun 2011
    Location
    http://www.scalebase.com
    Posts
    7

    Re: Database Storage?

    Ok, but how we can achieve this in easiest way as I think storing data in multiple locations is not an easy process and might also depends on the size of database.

  4. #4
    Join Date
    May 2002
    Posts
    10,943

    Re: Database Storage?

    I think you're misunderstanding the implementation. You don't read from/write to both at the same time. You have an active database and one backup. At given increments you backup the active database to another location. It's basically a simple copy procedure.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  5. #5
    Join Date
    Jun 2011
    Location
    http://www.scalebase.com
    Posts
    7

    Re: Database Storage?

    Thanks, PeejAvery for clarifying my doubts as now I got it.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured