wisdom-soup.com
DBA Scripts | Wisdom-Soup
http://www.wisdom-soup.com/blog/category/dba-scripts
Share SQL Server Tips and Tricks and Related News. Category Archives: DBA Scripts. 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.
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...
raghunandanswaroop.blogspot.com
Nandu: Jagged Arrays
http://raghunandanswaroop.blogspot.com/2012/06/jagged-arrays.html
Tuesday, June 12, 2012. A jagged array is an array whose elements are arrays. The elements of a jagged array can be of different dimensions and sizes. A jagged array is sometimes called an "array of arrays.". A special type of array is introduced in C#. A Jagged Array is an array of an array. In which the length of each array index can differ. In the above declaration the rows are fixed in size. But columns are not specified as they can vary. Declaring and initializing jagged array. MSDN MS on SQL SERVER.
raghunandanswaroop.blogspot.com
Nandu: 05/02/11
http://raghunandanswaroop.blogspot.com/2011_05_02_archive.html
Monday, May 2, 2011. Posted by Nandu - Raghunandan Swaroop. Links to this post. Posted by Nandu - Raghunandan Swaroop. Links to this post. Posted by Nandu - Raghunandan Swaroop. Links to this post. Labels: ASP.NET MVC. Subscribe to: Posts (Atom). Nandu - Raghunandan Swaroop. View my complete profile. There was an error in this gadget. TRYCATCH in SQL Server 2005An Easier Approach to Rolling Back Transactions in the Face of an Error. Simple Numeric Pagination for DataList and Repeater.
raghunandanswaroop.blogspot.com
Nandu: Differentiate between DELETE and TRUNCATE
http://raghunandanswaroop.blogspot.com/2013/07/differentiate-between-delete-and.html
Tuesday, July 2, 2013. Differentiate between DELETE and TRUNCATE. Truncate can not be rolled back while Delete can be. Truncate keeps the lock on table while Delete keeps the lock on each row. Truncate resets the counter of the Identity column while Delete doesn't do so. Trigger is not fired in Truncate while it happens in Delete. Posted by Nandu - Raghunandan Swaroop. Labels: SQL SERVER 2005. Subscribe to: Post Comments (Atom). Differentiate between DELETE and TRUNCATE. Nandu - Raghunandan Swaroop.
raghunandanswaroop.blogspot.com
Nandu: Developing a SharePoint 2007 Feature... a step by step tutorial
http://raghunandanswaroop.blogspot.com/2011/06/developing-sharepoint-2007-feature-step.html
Thursday, June 9, 2011. Developing a SharePoint 2007 Feature. a step by step tutorial. SharePoint 2007 Features are basically a mechanism to extend SharePoint in any way you need. Mike Ammerlaan wrote a brief and concise technical article describing features:. Visit here for more. Posted by Nandu - Raghunandan Swaroop. Subscribe to: Post Comments (Atom). SharePoint 2010 Tutorial for beginners. Top 10 SharePoint Server 2010 features. Developing a SharePoint 2007 Feature. a step . View my complete profile.
raghunandanswaroop.blogspot.com
Nandu: 06/01/11
http://raghunandanswaroop.blogspot.com/2011_06_01_archive.html
Wednesday, June 1, 2011. SQL DATENAME Function - Year, Quarter, Month, Day, Hour, Minute and Milisecond. It return specifies the part of the date name and the DATENAME for Date Time such as Year, Quarter, Month, Day, Hour, Minute and Milisecond. DATENAME ( datepart , date ). SELECT GETDATE() = 2007-05-30 23:13:38.763. SELECT DATENAME(year, GETDATE(). SELECT DATENAME(yy, GETDATE(). SELECT DATENAME(yy, GETDATE(). It will return value = 2007. SELECT DATENAME(quarter, GETDATE(). SELECT DATENAME(qq, GETDATE().