About 17,300,000 results
Open links in new tab
  1. How to display database records in asp.net mvc view

    Nov 21, 2016 · Using ASP.NET MVC with C#, how do you pass some database records to a View and display them in table form? I need to know how I can transfer/pass some rows of records …

  2. Query to list number of records in each table in a database

    Sep 18, 2009 · Query to list number of records in each table in a database Asked 16 years, 2 months ago Modified 1 year ago Viewed 416k times

  3. How to version control a record in a database [closed]

    Many database vendors offer this feature either out of the box or via an extension. I've successfully used the temporal table extension with PostgreSQL but others have it too. …

  4. How to update record using Entity Framework Core?

    Oct 10, 2017 · What is the best approach to update database table data in Entity Framework Core? Retrieve the table row, do the changes and save Use keyword Update in DB context …

  5. How big can a MySQL database get before performance starts to …

    51 The database size does matter. If you have more than one table with more than a million records, then performance starts indeed to degrade. The number of records does of course …

  6. sql - Database - (rows or records, columns or fields)? - Stack …

    Feb 4, 2012 · In database terminology: What is the difference between a row and a record? Likewise, aren't columns and fields the same thing? On the blog Joe Celko The SQL …

  7. How to track data changes in a database table - Stack Overflow

    May 3, 2013 · In general, if your application is structured into layers, have the data access tier call a stored procedure on your database server to write a log of the database changes. In …

  8. What is a Parent table and a Child table in Database?

    Oct 24, 2011 · Child tables and parent tables are just normal database tables, but they’re linked in a way that's described by a parent–child relationship. It’s usually used to specify where one …

  9. Get record counts for all tables in MySQL database

    Nov 13, 2008 · Is there a way to get the count of rows in all tables in a MySQL database without running a SELECT count() on each table?

  10. Delete all data in SQL Server database - Stack Overflow

    How I can delete all records from all tables of my database? Can I do it with one SQL command or I need for one SQL command per one table?