7
Answers

Urgent required !!! Fetching Particular Row

Kasam Shaikh

Kasam Shaikh

17y
5.5k
1
Hi all, I am facing problem in fetching a range of rows from a table. For eg. I want to fetch from 5th row to 11th row of table, without having an Identity column  in  table for refrence.
I am using SQL SERVER 2000.
In SQL SERVER 2005  it is Possible but i am not able to do it in SQL  2000. And  i know u  smart people  can answer me very well.
Thanks in Advance.
Answers (7)
0
Rahul Singh

Rahul Singh

NA 1.5k 226k 10y
Hi Pitchaiyan, You can use Process class methods for this purpose, check this link on MSDN.

You can do something like this on a button click or whatever event you want to bind:-

Process p = new Process();
p.StartInfo.FileName = "Yourfile.exe";
p.StartInfo.Arguments = String.Format(-- Your params--);
p.Start();