|
25
|
|
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name (v6.5 and up)
- sp_msforeachdb: Runs a command with '?' replaced with each database name (v7 and up)
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks (v7 and up)
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- sp_help: If you want to know the table structure, indexes and constraints of a table
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
- Find Procedures By Keyword
- Drop all the procedures in a DB
- Query the transaction log for a database programmatically.
Functions
- HashBytes()
- EncryptByKey
- PIVOT command
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
- Number after a
GO repeats the batch
- Security using schemas
- Encryption using built in encryption functions, views and base tables with triggers
|
|
|
|
24
|
|
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name (v6.5 and up)
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks (v7 and up)
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- sp_help: If you want to know the table structure, indexes and constraints of a table
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
- Find Procedures By Keyword
- Drop all the procedures in a DB
- Query the transaction log for a database programmatically.
Functions
- HashBytes()
- EncryptByKey
- PIVOT command
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
- Number after a
GO repeats the batch
- Security using schemas
- Encryption using built in encryption functions, views and base tables with triggers
|
|
|
|
23
|
|
edited Oct 23 '08 at 13:09
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- sp_help: If you want to know the table structure, indexes and constraints of a table
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
- Find Procedures By Keyword
- Drop all the procedures in a DB
- Query the transaction log for a database programmatically.
Functions
- HashBytes()
- EncryptByKey
- PIVOT command
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
- Number after a
GO repeats the batch
- Security using schemas
- Encryption using built in encryption functions, views and base tables with triggers
|
|
|
|
22
|
|
edited Oct 16 '08 at 13:26
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- sp_help: If you want to know the table structure, indexes and constraints of a table
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
- Find Procedures By Keyword
- Drop all the procedures in a DB
- Query the transaction log for a database programmatically.
Functions
- HashBytes()
- EncryptByKey
- PIVOT command
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
- Number after a
GO repeats the batch
|
|
|
|
21
|
|
edited Oct 9 '08 at 18:54
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- sp_help: If you want to know the table structure, indexes and constraints of a table
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
- Find Procedures By Keyword
Functions
- HashBytes()
- EncryptByKey
- PIVOT command
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
- Number after a
GO repeats the batch
|
|
|
|
20
|
|
edited Oct 8 '08 at 23:31
|
|
|
|
|
|
19
|
|
edited Oct 5 '08 at 10:35
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- sp_help: If you want to know the table structure, indexes and constraints of a table
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
- Find Procedures By Keyword
Functions
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
- Number after a
GO repeats the batch
|
|
|
|
18
|
|
edited Oct 2 '08 at 12:16
|
|
|
|
|
|
17
|
|
edited Sep 29 '08 at 17:04
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- sp_help: If you want to know the table structure, indexes and constraints of a table
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
Functions
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Indexing made easier with SQL Server 2005
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Soft-NUMA
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
- Number after a
GO repeats the batch
|
|
|
|
16
|
|
edited Sep 26 '08 at 18:22
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- sp_help: If you want to know the table structure, indexes and constraints of a table
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
Functions
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Indexing made easier with SQL Server 2005
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Soft-NUMA
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
- Number after a
GO repeats the batch
|
|
|
|
15
|
|
edited Sep 26 '08 at 15:15
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- xp_fileexist
- sp_help: Checking assumptions about If you want to know the table structure, indexes and constraints of a file before use or referencetable
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
Functions
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Indexing made easier with SQL Server 2005
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Soft-NUMA
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
|
|
|
|
14
|
|
edited Sep 26 '08 at 10:20
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- xp_fileexist: Checking assumptions about a file before use or reference
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
- Call Stored Procedures from an INSERT statement
Functions
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Indexing made easier with SQL Server 2005
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Soft-NUMA
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
|
|
|
|
13
|
|
edited Sep 26 '08 at 8:47
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- xp_fileexist: Checking assumptions about a file before use or reference
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has beed been deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
Functions
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Indexing made easier with SQL Server 2005
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Soft-NUMA
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
|
|
|
|
12
|
|
edited Sep 26 '08 at 8:39
|
|
|
|
|
|
11
|
|
edited Sep 25 '08 at 15:15
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Answers
Thanks to everybody for all the great answers!
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- xp_fileexist: Checking assumptions about a file before use or reference
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has beed deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
Functions
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Indexing made easier with SQL Server 2005
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Soft-NUMA
- Table/Stored Procedure Filter feature in SQL Management Studio
- Trace flags
|
|
|
|
10
|
|
edited Sep 24 '08 at 10:53
|
|
|
|
|
| |
|
Post Made Community Wiki by Community♦
|
occurred Sep 24 '08 at 8:20
|
|
|
|
|
|
9
|
|
edited Sep 24 '08 at 8:20
|
What are some hidden features of Sql Server?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
Recap of answers so far
Answers
Thanks to everybody for all the great answersso far!This list is getting better and better.
Stored Procedures
- sp_msforeachtable: Runs a command with '?' replaced with each table name
- sp_who2: just like sp_who, but with a lot more info for troubleshooting blocks
- sp_helptext: If you want the code of a stored procedure
- sp_tables: return a list of all tables
- sp_stored_procedures: return a list of all stored procedures
- xp_sscanf: Reads data from the string into the argument locations specified by each format argument.
- xp_fixeddrives:: Find the fixed drive with largest free space
- xp_fileexist: Checking assumptions about a file before use or reference
Snippets
- Returning rows in random order
- All DB User Objects by Last Modified Date
- Return Date Only
- Find records which date falls somewhere inside the current week.
- Find records which date occurred last week.
- Returns the date for the beginning of the current week.
- Returns the date for the beginning of last week.
- See the text of a procedure that has beed deployed to a server
- Drop all connections to the database
- Table Checksum
- Row Checksum
- Drop all the procedures in a DB
- Re-map the login Ids correctly after restore
Functions
Misc
- Connection String extras
- TableDiff.exe
- Triggers for Logon Events (New in Service Pack 2)
- Boosting performance with persisted-computed-columns (pcc).
- DEFAULT_SCHEMA setting in sys.database_principles
- Forced Parameterization
- Vardecimal Storage Format
- Indexing made easier with SQL Server 2005
- Figuring out the most popular queries in seconds
- Scalable Shared Databases
- Soft-NUMA
- Table/Stored Procedure Filter feature in SQL Management Studio
|
|
|
|
8
|
|
edited Sep 23 '08 at 21:19
|
Recap of answers so farThanks to everybody for all the great answers so far! This list is getting better and better. Stored Procedures sp_msforeachtable: Runs a command with '?' replaced with each table namesp_who2: just like sp_who, but with a lot more info for troubleshooting blockssp_helptext: If you want the code of a stored proceduresp_tables: return a list of all tablessp_stored_procedures: return a list of all stored proceduresxp_sscanf: Reads data from the string into the argument locations specified by each format argument.xp_fixeddrives:: Find the fixed drive with largest free spacexp_fileexist: Checking assumptions about a file before use or referenceSnippets Returning rows in random orderAll DB User Objects by Last Modified DateReturn Date OnlyFind records which date falls somewhere inside the current week.Find records which date occurred last week.Returns the date for the beginning of the current week.Returns the date for the beginning of last week.See the text of a procedure that has beed deployed to a serverDrop all connections to the databaseTable ChecksumRow ChecksumDrop all the procedures in a DBRe-map the login Ids correctly after restoreFunctions HashBytes()EncryptByKeyMisc Connection String extrasTableDiff.exeTriggers for Logon Events (New in Service Pack 2)Boosting performance with persisted-computed-columns (pcc).DEFAULT_SCHEMA setting in sys.database_principlesForced ParameterizationVardecimal Storage FormatIndexing made easier with SQL Server 2005Figuring out the most popular queries in secondsScalable Shared DatabasesSoft-NUMA Table/Stored Procedure Filter feature in SQL Management Studio
|
|
|
|
7
|
|
edited Sep 23 '08 at 18:00
|
Hidden Features of SQL Server?
|
|
|
|
6
|
|
edited Sep 23 '08 at 17:52
|
Hidden Features of SQL Server?
|
|
|
|
5
|
|
edited Sep 23 '08 at 17:49
|
Hidden Features of SQL Server?
|
|
|
|
4
|
|
edited Sep 23 '08 at 17:46
|
|
|
|
|
|
3
|
|
edited Sep 23 '08 at 15:53
|
|
|
|
|
|
2
|
|
edited Sep 23 '08 at 15:03
|
Hidden Features of SQL Server2005?
What are some hidden features of Sql Server2005?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
|
|
|
|
1
|
|
asked Sep 23 '08 at 14:13
|
Hidden Features of SQL Server 2005
What are some hidden features of Sql Server 2005?
For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?
|
|
|