SQL Administration Part 1
Here are some SQL Administrative queries:
1 |
SELECT SERVERPROPERTY('IsClustered') |
sp_configure Use Type the following to see the options the system sproc “sp_configure” has available to…
Read MoreHere are some SQL Administrative queries:
1 |
SELECT SERVERPROPERTY('IsClustered') |
sp_configure Use Type the following to see the options the system sproc “sp_configure” has available to…
Read MoreSome of these snippets are useful when scripting schema changes, as opposed to using the GUI tools. For example, we have several instances…
Read MoreHave you ever wanted to find out the last time a stored procedure was executed, if ever? Here is a T-SQL snippet that…
Read MoreWe will post all miscellaneous PowerShell scripts, notes, tips and help on this page. For notes from specific books, please look at the…
Read MoreClustered Index Seek: performed where there is a WHERE clause and the search parameter is included in the clustered index. Clustered Index Scan:…
Read MoreNotes about DMV’s in General DMV data is discarded when the SQL Server service is restarted as it is stored in memory and…
Read MoreTOPIC PowerShell Community Extensions (version 3.0.0.0) SHORT DESCRIPTION Describes the Windows PowerShell Community Extensions (PSCX) module and how to use the contained cmdlets…
Read MoreLife Cycle of a Query The command parser evaluates the query and generates a hash to see if the buffer pool has an…
Read More