I have a reference code table that will only be read from during normal use, and it aught to be only updated for product changes (monthly).

What table locking should I be using in the create table statement?

I was assuming ALLPAGES because that keeps the total number of read locks down that ASE needs to manage; but I am getting different 'advice' from another developer on the project.

I see other reference tables in the DB in question that use ALLPAGES; but they were upgraded from 12.5 it just may be a holdover from what was available then.

The table isn't very wide, it has two numeric code id columns, a char(1) column, and is clustered on the two numeric codes.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I have only obvious answer - run sp_object_stats at the first and choose locking scheme.

link|improve this answer
Thank you, I will request that to be run during our QA Acceptance testing. I was hoping there would be a MDA table query that would give a summary at the end of a testing run. – Rawheiser Mar 25 '11 at 18:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.