CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2006
    Posts
    86

    Which Database to use?

    Hi!
    Im developing a financial trading platform, and after some trouble im considering using a database for storing my backups.

    Untill now i've been using binnary files and a direct access algorithm to get the position of the data directly, but as the development continues, it's getting harder and harder to use it, and using a database would really help the development process, but probably would also degrade performance.

    So im trying to figure out what database technology to use.
    Budget is not a problem, so im open to sugestions.

    My main concern is performance.
    Each of my files store 2 columns and aproximately 550.000-600.000 rows.
    Until now there are about 50 files like that, so 30.000.000 records and growing fast.

    Any ideas?

    Thanks in advance,
    JCC

  2. #2
    Join Date
    Mar 2006
    Location
    Graz, Austria
    Posts
    273

    Re: Which Database to use?

    Daniela
    ******
    I would love to change the world, but they won't give me the source code

  3. #3
    Join Date
    Jun 2006
    Posts
    437

    Re: Which Database to use?

    Hi all

    You have to manage a big quantity of data, which will grow up in future.
    So I suggest Oracle or SqlServer; probably the best choice is SqlServer, because Oracle is a really complex product: I usually work with Oracle, I've never worked with SqlServer, but I think Oracle is harder to manage than SqlServer, so you might use the simpliest product to solve your problem.

  4. #4
    Join Date
    Oct 2003
    Location
    .NET2.0 / VS2005 Developer
    Posts
    7,104

    Re: Which Database to use?

    Both oracle and sqlserver have "express" editions that are focused on portability and local use rather than multiclient/networkserver architecture
    "it's a fax from your dog, Mr Dansworth. It looks like your cat" - Gary Larson...DW1: Data Walkthroughs 1.1...DW2: Data Walkthroughs 2.0...DDS: The DataSet Designer Surface...ANO: ADO.NET2 Orientation...DAN: Deeper ADO.NET...DNU...PQ

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