nishantdave.wordpress.com nishantdave.wordpress.com

nishantdave.wordpress.com

Nishantdave's Blog | Just another WordPress.com weblog

Just another WordPress.com weblog

http://nishantdave.wordpress.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR NISHANTDAVE.WORDPRESS.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

August

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Wednesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.7 out of 5 with 6 reviews
5 star
1
4 star
2
3 star
3
2 star
0
1 star
0

Hey there! Start your review of nishantdave.wordpress.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.4 seconds

FAVICON PREVIEW

  • nishantdave.wordpress.com

    16x16

  • nishantdave.wordpress.com

    32x32

CONTACTS AT NISHANTDAVE.WORDPRESS.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Nishantdave's Blog | Just another WordPress.com weblog | nishantdave.wordpress.com Reviews
<META>
DESCRIPTION
Just another WordPress.com weblog
<META>
KEYWORDS
1 nishantdave's blog
2 case
3 from sys partitions
4 happy programing
5 advertisements
6 leave a comment
7 sql server lock
8 happy programming
9 1 comment
10 select top 50
CONTENT
Page content here
KEYWORDS ON
PAGE
nishantdave's blog,case,from sys partitions,happy programing,advertisements,leave a comment,sql server lock,happy programming,1 comment,select top 50,qpquery plan,qsexecution count,qslast execution time,from,order by,avg io desc,enjoy programming,select
SERVER
nginx
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Nishantdave's Blog | Just another WordPress.com weblog | nishantdave.wordpress.com Reviews

https://nishantdave.wordpress.com

Just another WordPress.com weblog

INTERNAL PAGES

nishantdave.wordpress.com nishantdave.wordpress.com
1

Nishant Dave | Nishantdave's Blog

https://nishantdave.wordpress.com/author/nishantdave

Just another WordPress.com weblog. Author Archives: Nishant Dave. I am working as a Tech.Lead at Silver Touch technology Pvt.Ltd Ahmedabad Gujarat India. Determine Which Queries Are Holding Locks – SQL Server. Following is a query to determine which queries are holding locks? SELECT DTL.resource type,. WHEN DTL.resource type IN (‘DATABASE’, ‘FILE’, ‘METADATA’) THEN DTL.resource type. WHEN DTL.resource type = ‘OBJECT’ THEN OBJECT NAME(DTL.resource associated entity id). SELECT OBJECT NAME([object id]).

2

Determine Which Queries Are Holding Locks – SQL Server | Nishantdave's Blog

https://nishantdave.wordpress.com/2012/07/02/determine-which-queries-are-holding-locks-sql-server

Just another WordPress.com weblog. SQL Server – Find missing and unused indexes. Determine Which Queries Are Holding Locks – SQL Server. Following is a query to determine which queries are holding locks? SELECT DTL.resource type,. WHEN DTL.resource type IN (‘DATABASE’, ‘FILE’, ‘METADATA’) THEN DTL.resource type. WHEN DTL.resource type = ‘OBJECT’ THEN OBJECT NAME(DTL.resource associated entity id). WHEN DTL.resource type IN (‘KEY’, ‘PAGE’, ‘RID’) THEN. SELECT OBJECT NAME([object id]). By running above giv...

3

sql server – How to find slowest queries | Nishantdave's Blog

https://nishantdave.wordpress.com/2012/06/30/sql-server-how-to-find-slowest-queries

Just another WordPress.com weblog. Reducing SQL Server Deadlocks. SQL Server – Find missing and unused indexes →. Sql server – How to find slowest queries. Following query is very useful to find the most slowest queries running on your sql server:. SUBSTRING(qt.TEXT, (qs.statement start offset/2) 1,. CASE qs.statement end offset. WHEN -1 THEN DATALENGTH(qt.TEXT). ELSE qs.statement end offset. END – qs.statement start offset)/2) 1),. Qstotal logical reads, qs.last logical reads,. Qstotal worker time,.

4

SQL Server – Find missing and unused indexes | Nishantdave's Blog

https://nishantdave.wordpress.com/2012/06/30/sql-server-find-missing-and-unused-indexes

Just another WordPress.com weblog. Sql server – How to find slowest queries. Determine Which Queries Are Holding Locks – SQL Server →. SQL Server – Find missing and unused indexes. Following one line query will give you all the details about missing and unused indexes:. SELECT * FROM sys.dm db missing index details. Posted by Nishant Dave. On June 30, 2012 in SQL SERVER. Tags: Find Missing Indexes. Improve SQL performance find your missing indexes. Missing Indexes in SQL Server. One response to “. Notify...

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL PAGES IN THIS WEBSITE

4

LINKS TO THIS WEBSITE

pranavrajyaguru.wordpress.com pranavrajyaguru.wordpress.com

How to connect sqlserver from command prompt using sqlcmd / bulk insert | Pranav's Blog

https://pranavrajyaguru.wordpress.com/2011/08/03/how-to-connect-sqlserver-from-command-prompt-using-sqlcmd

How to connect sqlserver from command prompt using sqlcmd / bulk insert. August 3, 2011 at 5:28 pm. I need to insert large amount of records into sql server. The script is ready in file. The insert query is ready but the record is around 15 Lacs. SQL server gets time out every time I run the file from “SQL Server Management Studio”. Then I thought to do it from command prompt (whether anything can be done using cmd) as in my previous article I have used to replace text file from command prompt. Sqlcmd -S...

pranavrajyaguru.wordpress.com pranavrajyaguru.wordpress.com

How to find and replace text in large file | Pranav's Blog

https://pranavrajyaguru.wordpress.com/2011/08/03/how-to-find-and-replace-text-in-large-file

How to find and replace text in large file. August 3, 2011 at 4:36 pm. Back after a looooong break. This time I would like to replace text in a file. Hmm…. You might wonder that it’s so simple, Open file press ctrl F and replace from there. But here the file is very big in size. It’s 300 MB File. I’ve tried different editor to replace it but I’m failed and hopeless. I thought I need to replace it one by one. After creating file you need to fire below command from command prompt. Remember, you need to fir...

pranavrajyaguru.wordpress.com pranavrajyaguru.wordpress.com

June | 2010 | Pranav's Blog

https://pranavrajyaguru.wordpress.com/2010/06

Archive for June, 2010. User defined function to strip html in sql server 2005/2008. I need to strip html at many places in my project, I can do that by JavaScript function but I want some more common mechanism to strip html codes while getting the data from database. So I thought of using striping html @ database level and I searched on the net and here is the function for striping html. CREATE FUNCTION [dbo].[udf StripHTML]. SET @Start = CHARINDEX(' ',@HTMLText). SET @Length = (@End - @Start) 1. Respon...

pranavrajyaguru.wordpress.com pranavrajyaguru.wordpress.com

COALESCE with DISTINCT in SQLServer | Pranav's Blog

https://pranavrajyaguru.wordpress.com/2010/06/03/coalesce-in-sqlserver

COALESCE with DISTINCT in SQLServer. June 3, 2010 at 11:58 am. If you want comma separated values from columns it is so simple. Use COALESCE function provided by SQL Server. Select @csv = COALESCE(@csv ',','') cast(id AS VARCHAR) from tablename. COALESCE with DISTINCT Values. If you want, DISTINCT values in COALESCE function use inner table like below. Select @csv = COALESCE(@csv ',','') cast(id AS VARCHAR) from. SELECT DISTINCT id FROM TableName). Entry filed under: SQL Server. COALESCE in SQL Server.

pranavrajyaguru.wordpress.com pranavrajyaguru.wordpress.com

Pranav's Blog | Just another WordPress.com weblog | Page 2

https://pranavrajyaguru.wordpress.com/page/2

Convert String Array to Long Array. As I told you I am back within no time. Yesterday, I have faced a problem where I want to convert string array into long array. I need to search a lot in internet for solving this and after a lot finding I came to this simple solution. String[] strArray = { “xyz”, “abc”, “def” };. Long[] lArray = Array.ConvertAll string, long (strArray, Convert.ToInt64);. It’s so simple, cheers🙂. June 3, 2010 at 11:08 am. I am back after a looooooooong time. Any guesses for the error?

pranavrajyaguru.wordpress.com pranavrajyaguru.wordpress.com

User defined function to strip html in sql server 2005/2008 | Pranav's Blog

https://pranavrajyaguru.wordpress.com/2010/06/09/user-defined-function-to-strip-html-in-sql-server-20052008

User defined function to strip html in sql server 2005/2008. June 9, 2010 at 10:44 am. I need to strip html at many places in my project, I can do that by JavaScript function but I want some more common mechanism to strip html codes while getting the data from database. So I thought of using striping html @ database level and I searched on the net and here is the function for striping html. CREATE FUNCTION [dbo].[udf StripHTML]. SET @Start = CHARINDEX(' ',@HTMLText). SET @Length = (@End - @Start) 1.

pranavrajyaguru.wordpress.com pranavrajyaguru.wordpress.com

The selected class cannot be deleted because it is used as the return type for one or more DataContext methods. | Pranav's Blog

https://pranavrajyaguru.wordpress.com/2010/06/01/the-selected-class-cannot-be-deleted-because-it-is-used-as-the-return-type-for-one-or-more-datacontext-methods

The selected class cannot be deleted because it is used as the return type for one or more DataContext methods. June 1, 2010 at 7:22 pm. I am back after a looooooooong time. Today I have faced one problem in dbml file. As soon as I tried to delete the table from dbml file it gave me below message:. The selected class cannot be deleted because it is used as the return type for one or more DataContext methods. Any guesses for the error? No problem, here is the solution. Cheers………🙂. 1 Comment Add your own.

pranavrajyaguru.wordpress.com pranavrajyaguru.wordpress.com

June | 2008 | Pranav's Blog

https://pranavrajyaguru.wordpress.com/2008/06

Archive for June, 2008. New feature of Visual Studio 2008. Hi Friends, This is my first post in my blog. I am using Visual Studio 2008 for a month and I was just searching for any new features in it. I have just checked a great feature in Visual Studio. Debug in source files. Yes, my friend, what you have heard is true. Debug in source code. You just need to set few settings and you can debug how your grid is bind or how DataAdapter. Fill() method works or anything you want to debug. Click Here.

pranavrajyaguru.wordpress.com pranavrajyaguru.wordpress.com

August | 2011 | Pranav's Blog

https://pranavrajyaguru.wordpress.com/2011/08

Archive for August, 2011. Getting Request.ServerVariables from asp.net. Here is the method of getting all server variables in asp.net from Request.ServerVariables. Response.Write(“ table border=’1′ ”);. For (int i = 0; i Request.ServerVariables.Count; i ). String key = Request.ServerVariables.Keys[i];. String.Format(“ tr td style=’border:1px solid;’ {0} /td td {1} /td. This will list all the server variables in the page in table format…. August 12, 2011 at 4:28 pm. Eg once you have typed above command co...

UPGRADE TO PREMIUM TO VIEW 4 MORE

TOTAL LINKS TO THIS WEBSITE

13

OTHER SITES

nishantcop.com nishantcop.com

Coming Soon - Future home of something quite cool

Future home of something quite cool. If you're the site owner. To launch this site. If you are a visitor. Please check back soon.

nishantcopbcktrnswp7.codeplex.com nishantcopbcktrnswp7.codeplex.com

"Background Transfer Service Sample" From WP7 Sample - Home

Project Hosting for Open Source Software. 34;Background Transfer Service Sample" From WP7 Sample. By clicking Delete, all history, comments and attachments for this page will be deleted and cannot be restored. Change History (all pages). This project is an extension to existing WP7 sample available from MS (Background Transfer Service Sample). This project extends functionality to display the background downloaded item to verify download. Last edited Jun 3, 2011 at 3:46 AM. Mon Jun 6, 2011 at 7:00 AM.

nishantcreation.com nishantcreation.com

NISHANT CREATION

Grand opening in :. NISHANT CREATION YOGESH DARGE. Say Hello, Namaste, Namskar. We are here to help you Money through Friday. From 10:00 AM to 06:00 PM. You can also give us a call at ( 91) 9819777338. And pick option 1 to speak with our Support team. Want to meet us in real? If you have any further suggestions, questions or comments, here are the best ways to connect with us! 906, Ijmima Complex, Raheja's Matroplex, Link Road, Malad (W), Mumbai - 400 064., MH, India. You like taking the lead of line?

nishantdas.com nishantdas.com

Leading Training & Development Institute in Dubai

Our Training and Development Methodology. Email & Business Writing Skills. Strategy & Decision Making. Business Process & Work Flows. Conflict & Team Management. Big Data Training Module. Data Analytics & Data Mining. Big Data Analytics (R Programming). Conducting Mystery Shopping Surveys. Establishing Business in U.A.E. Entrepreneurship Camps for Students. Intro to Renewable Energy. We offer unique and certified technical training programs in engineering efficiency and environmental sustainability that ...

nishantdave.wordpress.com nishantdave.wordpress.com

Nishantdave's Blog | Just another WordPress.com weblog

Just another WordPress.com weblog. Determine Which Queries Are Holding Locks – SQL Server. Following is a query to determine which queries are holding locks? SELECT DTL.resource type,. WHEN DTL.resource type IN (‘DATABASE’, ‘FILE’, ‘METADATA’) THEN DTL.resource type. WHEN DTL.resource type = ‘OBJECT’ THEN OBJECT NAME(DTL.resource associated entity id). WHEN DTL.resource type IN (‘KEY’, ‘PAGE’, ‘RID’) THEN. SELECT OBJECT NAME([object id]). WHERE sys.partitions.hobt id =. DTLresource associated entity id.

nishantechnologies.co.in nishantechnologies.co.in

Nishan Technologies

Alwar: 91- 9414211001 Gurgaon: 91- 8882727274, 93503 87274. Welcome to Nishan Technologies. Nishan Technologies New Delhi being professionally managed and technically sound organization with the aim to provide high-tech IT solutions at economical price, by a 10 years experienced technical professional Mr.Shiv Kumar Mishra, who has worked with the leading computer maintenance companies in India. Logos are us a tredemark to the respective Companies. Design By : GESIS Web.

nishantechnologies.com nishantechnologies.com

Nishan Technologies

Excellent services, Affordable price. Services you can trust. Making it all make sense. We Make IT Happen. Empowering People. Solutions for a small planet. Our passion. Think outside the box. Simplifying technology. The Power to be your best. Your one stop solution. Creating value through true convergence. Welcome to Nishan Technologies. Sale Assembled Desktop Computers! Orignal Softwares Hardware Installations and Upgrades! Wired and Wireless Network Installations! Virus / Spyware Detection and Removal!

nishantechnologies.in nishantechnologies.in

|| cyber hunter(TCA) ||

Hacked By Cyber hunter. F*ck India and other countries Who Are Against Muslims and Islam - -. I Will back soon :D. Maheer Haxor Sharjeel Haxor Sami Khan Mani Haxor Sp3x Girl And All Muslim Hackers.

nishantengineers.com nishantengineers.com

nishant2 - Welcome to Nishant Engineers

LCD Display Hour meters. Digital Sound Level Meter. AC Axial Cooling Fan. Http:/ webgyortech.com/nishant2/images/Products/SLIDER/product slide1.jpg. Http:/ webgyortech.com/nishant2/images/Products/SLIDER/product slide3.jpg. Http:/ webgyortech.com/nishant2/images/Products/SLIDER/product slide4.jpg. Http:/ webgyortech.com/nishant2/images/Products/SLIDER/slider-2018.jpg. Http:/ webgyortech.com/nishant2/images/Products/SLIDER/slider-2018.jpg. Meet us at IESS VII an. An Iso 9001:2015 Certified Company. Develo...