Viewing 5 posts - 1 through 6 (of 6 total)
Hello,
This is my final query --
ALTER PROC STP_FILTER_TR_ACTIVITY
(
@JOBNAME NVARCHAR(4000) = NULL,
@PROJECTNUM NVARCHAR(200) = NULL,
@POSSTART INT = 0,
@COUNT INT = 50,
@TOTCOUNT INT OUT
)
AS
BEGIN
SET NOCOUNT ON;
...
May 7, 2012 at 11:46 pm
Kingston Dhasian (5/7/2012)
A clustered index on "ActivityId" will be helpfull
Also, you can try creating a clustered index in column "ROWNUM" in table...
May 7, 2012 at 7:13 am
thanx @Lowell problem is solved....
September 14, 2009 at 5:38 am
yes everything is ok from front end, does OUTPUT parameter works with Select statement?
my front end code:
SqlParameter param = new SqlParameter("@TOTALCOUNT", DbType.Int32);
...
September 14, 2009 at 3:42 am
Dave Ballantyne (9/14/2009)
@@Rowcount should be fine...
No no I need total rowcount of Prodtable, not the selected one. But it's value is showing NULL from front end.
September 14, 2009 at 3:27 am
Viewing 5 posts - 1 through 6 (of 6 total)