Viewing 15 posts - 886 through 900 (of 5,103 total)
dva2007 (11/6/2008)
declare @b1 nchar(10)
declare @b2 char(10)
set @b1 = 'B'
set @b2 = 'B'
select @b1 + 'a', @b2 + 'a'
--------------------
B a...
November 6, 2008 at 9:38 am
meichner (11/6/2008)
Jeff Moden (11/6/2008)
November 6, 2008 at 9:27 am
You need to explain your intentions better if you want an answer
November 6, 2008 at 8:24 am
nchar uses 2bytes ber character (unicode) ; char is not unicode and uses one byte per character.
November 6, 2008 at 8:23 am
Good old days... Thanks for the reminiscing!
November 6, 2008 at 7:59 am
You should make sure that the "reports" are not scanning ( appropriate indexes in place)
You "can" use with nolock but it should be treated as last resort.
And yes you can...
November 5, 2008 at 3:48 pm
meichner (11/5/2008)
Thanks. I really appreciate...
November 5, 2008 at 3:42 pm
You can use init with backup option...
November 5, 2008 at 2:47 pm
By the way try to use FOR ATTACH option instead of sp_attach_db
October 21, 2008 at 10:02 am
DECLARE @test-2 TABLE (yr CHAR(2))
INSERT INTO @test-2
SELECT '99' UNION ALL
SELECT '00' UNION ALL
SELECT '01' UNION ALL
SELECT '02'
SELECT *
,yr + '-' + RIGHT('00'+ cast((cast(yr as tinyint)+1)%100 as varchar(2)),2) as New
FROM...
October 21, 2008 at 9:59 am
bhavnabakshi (10/17/2008)
...
October 17, 2008 at 12:34 pm
pzmrcd (10/17/2008)
HiIf I have 2 tables tbl1,id(varbinary(18)AS PK) and tbl1, having id(varbinary(18)AS PK) can I join the 2 tables on ID.
Thanks
sure you can.
October 17, 2008 at 12:06 pm
stricknyn (10/17/2008)
October 17, 2008 at 12:03 pm
Viewing 15 posts - 886 through 900 (of 5,103 total)