Viewing 5 posts - 1 through 5 (of 5 total)
thanks very much; Im sure there will be something 🙂
March 31, 2010 at 6:54 am
I see what your saying and it makes sense.... I will proceed with the reading!! thanks
March 31, 2010 at 6:19 am
Thanks for that; as you can tell Im a developer not a DBA! trying to get more familiar with the aspects of querying SQL databases. at the moment reading T-SQL...
March 31, 2010 at 3:29 am
with (nolock) just stocks the query locking the table. this is essential if you are querying a live database!! 🙂
March 31, 2010 at 3:12 am
If you want to get the rowid for the use in a paging query then use row_count()
declare @FromRow int
declare @ToRow int
set @FromRow = (@PageNo-1) * @pageSize
set @ToRow = @FromRow +...
March 31, 2010 at 2:46 am
Viewing 5 posts - 1 through 5 (of 5 total)