Thank you,
Nichole L.
sp_help {tablename}
go
Many thanks! :)
You can also get the information using a simple query against
sysobjects. Allpages tables that were created prior to 11.9.x
don't have any of the three bits set, thus '0'.
select case (sysstat2 & 57344)
when 0 then 'Allpages'
when 8192 then 'Allpages'
when 16384 then 'Datapages'
when 32768 then 'Datarows'
end as 'Lock Schema'
from sysobjects where type='U'
and name = "Mytable"
select lockscheme(id)
from sysobjects
where type = "U"
and ...
"Bret Halford" <br...@sybase.com> wrote in message
news:48a303a3$1@forums-1-dub...
Don't feel dumb. That's why we come to these forums, to learn stuff.
Thank you for the below SQL statement. The below SQL is
very helpful and want to send our many thanks for your help.
Thank you,
Nichole L.
Thank you for providing the below Sybase function
information / recommendation. It has turned out to be a
great way to get back results quickly for all tables.
Many Thanks!
Nichole L.