Viewing 15 posts - 376 through 390 (of 1,129 total)
Richard Warr (1/23/2013)
Something like
SELECT CONVERT(VARCHAR(4), R.FCde) AS Flty
FROM Rtns R
WHERE NOT EXISTS ( ...
January 23, 2013 at 12:53 pm
Richard Warr (1/23/2013)
Something like
SELECT CONVERT(VARCHAR(4), R.FCde) AS Flty
FROM Rtns R
WHERE NOT EXISTS ( ...
January 23, 2013 at 12:41 pm
Luis Cazares (1/18/2013)
( 'Ab','BC',CD') are non-Unicode strings (char/varchar)
(N'Ab',N'BC',N'CD') are Unicode strings (nchar/nvarchar)
The datatypes are differents and the clearest example of it is that a char(1) uses 1byte and...
January 18, 2013 at 1:45 pm
Luis Cazares (1/18/2013)
2 word: Implicit conversionSQL Server needs to do implicit conversions that may affect the query performance.
implicit conversion on what?
January 18, 2013 at 1:26 pm
Bhuvnesh (12/28/2012)
For future, you can set trace and capture that SP.
I don't want to trace to run 24 X7 as i don't know when the issue would occur. I wanted...
December 28, 2012 at 10:55 am
abdou.amara (12/27/2012)
plz can you tell me the way to send a sms from sql server to a mobile phone plz plz
In place of email address just type ' yourcellphonenumber@verizon/att.net'
December 27, 2012 at 10:50 am
still trying to understand when and where tempdb would use proporational algorithm and rounnd-robin
November 29, 2012 at 2:48 pm
GilaMonster (11/12/2012)
George M Parker (11/11/2012)
Make sure you have a tempdb allocation problem first by confirming that you are seeing file I/O latch waits in tempdb (database = 2).
No.....
IO latch contention...
November 13, 2012 at 9:31 am
GilaMonster (11/7/2012)
sqldba_newbie (11/7/2012)
The locks are heldup for longer durations, how do i handle that?Longer duration than what?
Application is running slow and i do see the calls made by webserver are...
November 8, 2012 at 7:47 am
GSquared (11/7/2012)
If you find that the few in-day updates are causing more blocks than you like, switch...
November 7, 2012 at 1:42 pm
GSquared (11/7/2012)
sqldba_newbie (11/7/2012)
GSquared (11/7/2012)
Read Committed Snapshot Isolation will help prevent blocking, but allows "old data" to be seen by concurrent transactions. Doesn't...
November 7, 2012 at 1:17 pm
GSquared (11/7/2012)
Read Committed Snapshot Isolation will help prevent blocking, but allows "old data" to be seen by concurrent transactions. Doesn't have the...
November 7, 2012 at 12:43 pm
GSquared (11/7/2012)
HOWEVER, I have to warn you that setting isolation...
November 7, 2012 at 12:12 pm
anyone?
November 5, 2012 at 9:32 am
Viewing 15 posts - 376 through 390 (of 1,129 total)