Viewing 2 posts - 1 through 2 (of 2 total)
You can try this query:
select max(resourceid) from resources
where resourceid < (select max(resourceid) from resources)
The subquery selects all the values lower than the max value and the main query picks...
September 22, 2004 at 3:58 am
#523933
For all its worth you can try renaming the dmp file to .mdf then in SQL Server click on the database folder, right click, New Database. New database will contain...
September 21, 2004 at 7:57 pm
#523898