SQL Server - Metadata

Card Puncher Data Processing

Example

SELECT name AS object_name 
  ,SCHEMA_NAME(schema_id) AS schema_name
  ,type_desc
  ,create_date
  ,modify_date
FROM sys.objects
WHERE modify_date > GETDATE() - 10
ORDER BY modify_date;

Documentation / Reference





Discover More
Card Puncher Data Processing
MS SQL Server

LocalDB is a lightweight version of Express that has all its programmability features, yet runs in user mode and has a fast, zero-configuration installation and short list of pre-requisites. Use this if...



Share this page:
Follow us:
Task Runner