Viewing 15 posts - 1,336 through 1,350 (of 1,957 total)
Chris,
Try changing your Grid results and Text Editor fonts to Arial.
I just realised it was possible that you were trying to display arabic characters in a font that did not...
June 9, 2011 at 5:17 am
CONTEXT_INFO() can only hold 128 bytes, so converting NVARCHAR(128) will lose data, but only if the login is longer than 64 characters.
I take it the column in your audit table...
June 8, 2011 at 10:06 am
chris.king (6/8/2011)
DECLARE @SYSUSER VARBINARY(128)
SET @SYSUSER = CAST(CAST(@LoginName AS VARCHAR(128)) AS VARBINARY(128))
SET CONTEXT_INFO @SYSUSER
This worked.
Then came the new requirement to be able to support non-unicode...
June 8, 2011 at 9:55 am
chris.king (6/8/2011)
DECLARE @SYSUSER VARBINARY(128)
SET @SYSUSER = CAST(CAST(@LoginName AS VARCHAR(128)) AS...
June 8, 2011 at 9:49 am
I dispute that it is hard to google that question:
http://tinyurl.com/3t5p6es :w00t: 😀 😛
June 8, 2011 at 9:46 am
sradoff (6/7/2011)
June 7, 2011 at 3:21 pm
Steve Jones - SSC Editor (6/7/2011)
I guess it's a bug, but I see it as well. Maybe something from the peel?
Nah Steve, it is just part of the "Classic" skin...
June 7, 2011 at 2:54 pm
Is the VB6 COM+ installed as a COM+ application on the SQL server or is it just a COM dll that is called by something else?
Basically it sounds like the...
June 7, 2011 at 2:43 pm
ALZDBA (6/7/2011)
SQLRNNR (6/7/2011)
ALZDBA (6/7/2011)
What's with the watermark on our SSC ??Is it webmaster fun, or is SSC changing logo ?
Where do you see this watermark?
I get to see it in...
June 7, 2011 at 2:34 pm
Steve Jones - SSC Editor (6/7/2011)
Craig Farrell (6/6/2011)
calvo (6/6/2011)
GSquared (6/6/2011)..."Billion" means two different things on different sides of The Pond.
wow. I was about to question this when I looked it...
June 7, 2011 at 8:55 am
Not done one yet this week, but similar to Stuart, I have already done a double shift yesterday - finishing at 2.30am and doing another double shift today... bound to...
June 7, 2011 at 8:13 am
(Breaking my own promise to keep out - sorry 😛 )
This thread is RBAR... I have a set based solution:
No tally tables!
June 6, 2011 at 10:42 am
me.hacked (6/3/2011)
I have to get a MAX from an Account Balance..
I'm using a query...
June 3, 2011 at 5:17 pm
It seems that (for me at least) it works as long as you remember that your final
SELECT *
FROM dbo.LockTest
is the part that is being blocked...
June 3, 2011 at 6:53 am
GSquared (6/3/2011)
Doesn't work.
Thanks for the feedback.
It worked fine on mine, but I was not specifying certain IDs.
I will try your version and see if that is the reason.
June 3, 2011 at 6:43 am
Viewing 15 posts - 1,336 through 1,350 (of 1,957 total)