wisdom-soup.com
Troubleshooting | Wisdom-Soup
http://www.wisdom-soup.com/blog/category/troubleshooting
Share SQL Server Tips and Tricks and Related News. Unable to Drop Windows Login from SQL Server due to ENDPOINT Permission. While we tried to drop one of our Windows Login from SQL Server, part of our house-keeping task, and SQL Server prevent us from dropping the Windows Login even though we have unmapped all the database mapped and owned by the login. It works fine for us before this. Msg 15173, Level 16, State 1, Line 2. But our SQL Server was not configured with mirroring. This entry was posted in SQ...
wisdom-soup.com
SQL Server Security | Wisdom-Soup
http://www.wisdom-soup.com/blog/category/sql-server-security
Share SQL Server Tips and Tricks and Related News. Category Archives: SQL Server Security. Unable to Drop Windows Login from SQL Server due to ENDPOINT Permission. While we tried to drop one of our Windows Login from SQL Server, part of our house-keeping task, and SQL Server prevent us from dropping the Windows Login even though we have unmapped all the database mapped and owned by the login. It works fine for us before this. Msg 15173, Level 16, State 1, Line 2. To obtain the mirroring endpoint name.
wisdom-soup.com
Unable to Drop Windows Login from SQL Server due to ENDPOINT Permission | Wisdom-Soup
http://www.wisdom-soup.com/blog/troubleshooting/unable-drop-windows-login-sql-server-due-endpoint-permission
Share SQL Server Tips and Tricks and Related News. Unable to Drop Windows Login from SQL Server due to ENDPOINT Permission. While we tried to drop one of our Windows Login from SQL Server, part of our house-keeping task, and SQL Server prevent us from dropping the Windows Login even though we have unmapped all the database mapped and owned by the login. It works fine for us before this. Msg 15173, Level 16, State 1, Line 2. But our SQL Server was not configured with mirroring. This entry was posted in SQ...
wisdom-soup.com
SQL Server Build Version
http://www.wisdom-soup.com/blog/sql-server-version
Share SQL Server Tips and Tricks and Related News. This list is original from SQLTeam.com website. And MS SQL Server Builds. Last updated on 24 July, 2013). You can also find the SQL Server and Updates Builds Numbers. From Microsoft TechNet website. Please visit to this page. On how to determine the version and edition of SQL Server and its components. SQL Server 2012 CU1. SQL Server 2012 RTM. SQL Server 2008 R2. SQL Server 2008 R2 SP1 CU6. SQL Server 2008 R2 SP1 CU5. SQL Server 2008 R2 SP1 CU4. SQL Serv...
wisdom-soup.com
Tempdb | Wisdom-Soup
http://www.wisdom-soup.com/blog/tag/tempdb
Share SQL Server Tips and Tricks and Related News. Script to Check TempDB Speed. The following script adopted from Brent Ozar’s blog on his TempDB Performance and Configuration. Topic I strongly encourage you to pay a visit to his site. This query hits the dynamic management function (DMF) sys.dm io virtual file stats for all of the TempDB data files and lists out how fast they’re responding to write (and read) requests:. Are writes being evenly distributed between data files? February 28, 2014. ALTER DA...
wisdom-soup.com
Dmv | Wisdom-Soup
http://www.wisdom-soup.com/blog/tag/dmv
Share SQL Server Tips and Tricks and Related News. How to: Verifying CPU Pressure via Signal Wait Time. Use the following query to verify the CPU pressure via signal wait time through MS SQL Server Management Studio. USE master GO SELECT SUM(signal wait time ms) AS TotalSignalWaitTime , ( SUM(CAST(signal wait time ms AS NUMERIC(20, 2) ) / SUM(CAST(wait time ms AS NUMERIC(20, 2) ) * 100 ) AS PercentageSignalWaitsOfTotalTime FROM sys.dm os wait stats. Detect SQL Server CPU Pressure. And tagged cpu pressure.
wisdom-soup.com
sp_MSForEachDB | Wisdom-Soup
http://www.wisdom-soup.com/blog/tag/sp_msforeachdb
Share SQL Server Tips and Tricks and Related News. Tag Archives: sp MSForEachDB. How to: Find a Table on a SQL Server across all Databases. Some times it is difficult to find a table name from a SQL instance that hosted tremendous database. “Which database I suppose to search for? 8221; is the question that often pop-up in DBA’s mind and they hope the user can give them the database name as well. Sadly speaking in most cases user do not know which database their application connect to. AS DB, * FROM [?
wisdom-soup.com
T-SQL | Wisdom-Soup
http://www.wisdom-soup.com/blog/category/t-sql
Share SQL Server Tips and Tricks and Related News. How to: Verifying CPU Pressure via Signal Wait Time. Use the following query to verify the CPU pressure via signal wait time through MS SQL Server Management Studio. USE master GO SELECT SUM(signal wait time ms) AS TotalSignalWaitTime , ( SUM(CAST(signal wait time ms AS NUMERIC(20, 2) ) / SUM(CAST(wait time ms AS NUMERIC(20, 2) ) * 100 ) AS PercentageSignalWaitsOfTotalTime FROM sys.dm os wait stats. Detect SQL Server CPU Pressure. And tagged cpu pressure.
wisdom-soup.com
Cpu Pressure | Wisdom-Soup
http://www.wisdom-soup.com/blog/tag/cpu-pressure
Share SQL Server Tips and Tricks and Related News. Tag Archives: cpu pressure. How to: Verifying CPU Pressure via Signal Wait Time. Use the following query to verify the CPU pressure via signal wait time through MS SQL Server Management Studio. USE master GO SELECT SUM(signal wait time ms) AS TotalSignalWaitTime , ( SUM(CAST(signal wait time ms AS NUMERIC(20, 2) ) / SUM(CAST(wait time ms AS NUMERIC(20, 2) ) * 100 ) AS PercentageSignalWaitsOfTotalTime FROM sys.dm os wait stats. And tagged cpu pressure.