Page 7 of 7 FirstFirst ... 567
Results 61 to 64 of 64

Thread: Mono 2.11.3 Packs In Microsoft's Entity Framework

  1. #61
    Join Date
    Jul 2009
    Location
    Germany
    Posts
    264

    Default

    Quote Originally Posted by frantaylor View Post
    You know that query execution time depends on the number of rows IN THE TABLE not the number of rows returned from the query, right? If you have 15 million rows in a table, it's going to take a LOT longer to select one row than a table with just a few entries?
    No not right, that is not how database queries work. The time the database spends to find the row is not the only thing that costly. The overall speed depends on how many data is in the table, what data you want from the row, how you search for one row and on how you transport the data to the application.

    A few examples:
    - Imaging the following DB2 SQL query: SELECT myPrimaryKey FROM myTable FETCH FIRST 1 ROWS ONLY. This will be fast no matter how many entries are in the table.
    - When you only query data that is indexed the database can highly reduce disk I/O (the slow part).
    - If you have a network in between you and the database preselecting the data you need can highly reduce your network traffic.

    Have you ever actually used a database? And not every program written presents you with a website viewable via the internet. There are many programs out there that just present data from a DB within a thin client to the user. It's not a good idea to always send all information you have to the client, because it slows down the client really fast.

  2. #62
    Join Date
    Oct 2008
    Posts
    740

    Default

    Quote Originally Posted by frantaylor View Post
    good for them, manufacturing value from nothing

    Doesn't affect MY bottom line nor YOURS either
    So you like working for free?

  3. #63

    Default

    Surporised information. But it is not possile to be open on .NET

  4. #64
    Join Date
    Dec 2011
    Posts
    1,321

    Default

    Quote Originally Posted by CARMEN View Post
    Surporised information. But it is not possile to be open on .NET
    Why wouldn't it be possible to be open while on .NET?

    Sounds like FUD.

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
  •