-
Notifications
You must be signed in to change notification settings - Fork 2
Microsoft SQL Server data provider
Csaba Bernáth edited this page Jun 28, 2023
·
1 revision
Object Explorer
Server
Databases
System Databases
Database Snapshots
<Database>
Tables
System Tables
<Table>
Columns
Triggers
Indexes
Views
System Views
<View>
Columns
Triggers
Programmability
Stored Procedures
System Stored Procedures
Functions
User-defined Table Types
Security
Users
Roles
Schemas
Security
Logins
Server Objects
Linked Servers
Jobs
How to script table to clipboard?
- Right click to table
- Script table as CREATE/SELECT/INSERT to clipboard.
How to list databases
- Type use and press Crlt+J (List members)
How to list tables, views, functions in a database
- Type select * from and press Ctrl+J
How to list columns of a table
- Type select * from where . and press Ctrl+J
How to list stored procedures, functions
- Type exec and press Ctrl+J
How to list the distinct top 10 field values of a column
- Type select * from
How to list global variables
- Type select @@ and press Ctrl+J
How to list local variables
- Type select @ and press Ctrl+J