About 1,160,000 results
Open links in new tab
  1. Difference between Information_schema vs sys tables in SQL Server

    Mar 20, 2019 · Most RDBMSs have an equivalent set of catalog tables, but the specific table names differ between vendors. In SQL Server, these tables and the later addition of the …

  2. SQL Server : SELECT from sys.tables and sys.views

    Sep 2, 2017 · The below SQL seems to be working, but I am wondering if there is a better way to write this. I am trying to select all views and tables with a specific name. There should only be …

  3. Get list of tables but not include system tables (SQL Server 2K)?

    I know I can get a list of tables from a given database with the following query: select * from information_schema.tables How do I go about excluding system tables though?

  4. sql server - How do I get list of all tables in a database using TSQL ...

    What is the best way to get the names of all of the tables in a specific database on SQL Server?

  5. Can we update the system tables provided in SQL server?

    Nov 18, 2015 · The tables with table names sys. , can we update these tables? Updating any schema for those tables or updating values in the table?

  6. How to check if SQL Server Tables are System Tables

    Apr 5, 2012 · However, there are system tables which I'd like to exclude from that. Instinctively, I would check the properties IsSystemTable or IsMSShipped. These don't work like I expect - I …

  7. How do I list all tables in all databases in SQL Server in a single ...

    I am looking for T-SQL code to list all tables in all databases in SQL Server (at least in SS2005 and SS2008; would be nice to also apply to SS2000). The catch, however, is that I would like …

  8. sql - How to join two temporal tables using "for system_time" to …

    Nov 7, 2022 · By for each row I mean: "Select * from People for system_time all". To get rows from Pets is possible using "select * from Pets AS OF <date_time>" I understand, however, …

  9. sql server - procedure to drop system-versioned temporal tables

    Apr 4, 2019 · I'm looking for a procedure to drop system-versioned temporal tables, ideally without using dynamic SQL. I've looked through the Microsoft documentation and figured out how to …

  10. sql - Find all tables containing column with specified name - Stack ...

    Find all tables containing column with specified name Asked 14 years, 11 months ago Modified 7 months ago Viewed 4.5m times