Viewing 6 posts - 1 through 6 (of 6 total)
Declare @var varchar(1000)
Set @var=''
Select @var = @var + fruit + ',' from #temp
Select substring(@var,1,len(@var)-1)
March 7, 2011 at 3:27 am
Yes It actually worked for me now. My table has no index. First I ran the below statement in one query window
BEGIN TRAN
update dbo.Profit_Act1 with(rowlock)
--rowlock is the default...
July 8, 2009 at 9:09 pm
Yes It actually worked for me now. My table has no index. First I ran the below statement in one query window
BEGIN TRAN
update dbo.Profit_Act1 with(rowlock)
--rowlock is the default...
July 8, 2009 at 9:09 pm
Yes It actually worked for me now. My table has no index. First I ran the below statement in one query window
BEGIN TRAN
update dbo.Profit_Act1 with(rowlock)
--rowlock is the default...
July 8, 2009 at 9:08 pm
I actually tried to run the query without adding an index and it still worked for me. There were no waiting locks. Any reason why?
July 7, 2009 at 9:18 pm
thanks Dinesh but in Sql Server 2005 its easy too.. All you have to do is to use a data flow task and you are on!! 😀
October 26, 2008 at 5:26 pm
Viewing 6 posts - 1 through 6 (of 6 total)