Click here to Skip to main content
15,906,329 members

AJIT KUMAR SUBUDHI - Professional Profile



Summary

    Blog RSS
8
Debator
-27
Enquirer
42
Organiser
522
Participant
0
Author
0
Authority
0
Editor
I am Ajit Kumar Subudhi,Software Engineer Sr. Analyst(.net)
working in a private company

....Dare To Dream And Achieve....

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralDelegates and Events in C# / .NET Pin
AJIT KUMAR SUBUDHI25-Jul-10 5:40
AJIT KUMAR SUBUDHI25-Jul-10 5:40 
GeneralStored Procedure for Custom Paging in SQL Server 2005 Pin
AJIT KUMAR SUBUDHI15-Dec-08 11:14
AJIT KUMAR SUBUDHI15-Dec-08 11:14 
Stored Procedure for Custom Paging in SQL Server 2005

-- EXEC LoadData 10, 5
CREATE PROCEDURE LoadData
-- Add the parameters for the stored procedure here
@startRowIndex int,
@pageSize int
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- increase the startRowIndex by 1 to avoid returning the last record again

SET @startRowIndex = @startRowIndex + 1
BEGIN
SELECT * FROM (
Select *,
ROW_NUMBER() OVER (ORDER BY AutoID ASC) as RowNum
FROM Data
) as Data
WHERE RowNum BETWEEN @startRowIndex AND (@startRowIndex + @pageSize) - 1
ORDER BY AutoID ASC
END
END
GO

=========================================================
Page 1 - EXEC LoadData 0, 5
Page 2 - EXEC LoadData 5, 5
Page 3 - EXEC LoadData 10, 5

============================================================

Conclusion :
Its always good to write code that is efficien and fast to serve the user request, Custom paging is most efficient way to get desired number of records from a large database table without hitting the performance of the database as well as application.



Ajit Kumar Subudhi
Senior Software Developer(.Net)
A1 Technology pvt. ltd., Chandigarh, India.
ajitsubudhi2000@gmail.com(gmail/orkut)

GeneralPassing sql parameters as array to SQL Stored procedure [modified] Pin
AJIT KUMAR SUBUDHI15-Dec-08 7:47
AJIT KUMAR SUBUDHI15-Dec-08 7:47 
GeneralIntegrity in Database : Pin
AJIT KUMAR SUBUDHI14-Dec-08 8:07
AJIT KUMAR SUBUDHI14-Dec-08 8:07 
GeneralConstraints In Database: Pin
AJIT KUMAR SUBUDHI14-Dec-08 2:11
AJIT KUMAR SUBUDHI14-Dec-08 2:11 
General“ACID” Rule in Database Transaction: Pin
AJIT KUMAR SUBUDHI14-Dec-08 2:00
AJIT KUMAR SUBUDHI14-Dec-08 2:00 
GeneralCustom Paging in Grid View: Pin
AJIT KUMAR SUBUDHI14-Dec-08 1:52
AJIT KUMAR SUBUDHI14-Dec-08 1:52 
GeneralSelecting top 10th highest Salary using Sql query Pin
AJIT KUMAR SUBUDHI18-Nov-08 6:33
AJIT KUMAR SUBUDHI18-Nov-08 6:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.