Viewing 15 posts - 781 through 795 (of 883 total)
Hi Shashank
I felt something missing in the article. Overall the article seems incomplete. The process may not the best but you tried something different. 🙂
April 22, 2008 at 6:53 am
Hi Jack
The article was nice. It also pointed some good areas of error.
🙂
April 21, 2008 at 6:29 am
shamshudheen (4/21/2008)
i used the given example, but i got error saying
Server: Msg 156, Level 15, State 1, Line 1
Incorrect syntax near the keyword 'WITH'.
i am using sql server 2000, I...
April 21, 2008 at 6:17 am
Please post your solution. It would be nice reference for lot of us.:)
April 18, 2008 at 6:12 am
Read this one:
Recursive Queries in SQL Server 2005
By Srinivas Sampath, 2005/03/03
http://www.sqlservercentral.com/articles/Development/recursivequeriesinsqlserver2005/1760/
April 18, 2008 at 5:52 am
Nice and wonderful article with some good examples. 🙂
April 18, 2008 at 5:49 am
select [id], max([order])
from #a
group by [id]
order by max([order]) asc
The above T-SQL statement is wrong. You required Group By clause as you are using MAX function. The statement will return only...
April 18, 2008 at 5:12 am
I am not sure what will be future of openings if the recession goes bad to worse. But I found one thing DBAs are now required by different sectors and...
April 18, 2008 at 4:39 am
CREATE PROCEDURE _4P_test
@intInput int,
@intOutput int OUTPUT
AS
set @intOutput = @intInput + 1
go
Call it like this:
declare @intResult int
exec _4P_test 3 ,@intResult OUT
select @intResult
Read this example also:
April 18, 2008 at 2:29 am
GilaMonster (4/18/2008)
Anirban Paul (4/17/2008)
Check this whether it works or not:ALTER INDEX [IX_name] ON table DISABLE
GO
Alter Index is only 2005 and higher. 2000 didn't have the command at all.
As I told...
April 18, 2008 at 12:44 am
Check this whether it works or not:
ALTER INDEX [IX_name] ON table DISABLE
GO
I don't have 2000 so I can't test it but found this solution in 2-3 sites.
Hope it works.:)
Also read...
April 17, 2008 at 10:19 pm
This may not be the best solution but this can be a good solution. The article is good.
🙂
April 17, 2008 at 10:07 pm
A very good series based on indexes. Good for the newbies.......:)
April 17, 2008 at 10:04 pm
Viewing 15 posts - 781 through 795 (of 883 total)