Viewing 5 posts - 1 through 5 (of 5 total)
I have used it a couple of times for task that could be done using T-SQL. Its very slow.
Its more useful to write code which could be understood by...
May 13, 2008 at 6:55 am
Hi,
I have never new that there is so much about transactions. Its really a very good article.
Raj
February 1, 2007 at 11:11 am
Hi,
You got to create a function which returns a table.
CREATE FUNCTION test_function
(@p1 int, @p2 char)
RETURNS @table_var TABLE
(c1 int, c2 int)
AS
BEGIN
INSERT into @table_var (c1 , c2)
SELECT 1, 2
RETURN
END
GO
Insert...
November 8, 2006 at 7:05 am
Why dont you try the option ALTER INDEX REORGANISE option to defragment the index.
Otherwise Upgrade the system configuration. If possible have a Dual processor and place the index on a...
October 26, 2006 at 5:32 am
Hi,
To My knowledge if ur code is fine just have a look at the query that you are executing, possible the query u r executing is taking lot of time...
September 10, 2004 at 7:49 am
Viewing 5 posts - 1 through 5 (of 5 total)