Viewing 4 posts - 1 through 4 (of 4 total)
Yes, I read the sp_lock page before I posted my question. In my sp_lock output, I also saw the resource for PAG is a combination of the file id and...
January 13, 2006 at 8:10 am
Thanks
Do you know the bug #? and where I can obtain the patch
-- Peter Lo
December 16, 2005 at 8:50 am
The following query works in MS SQL Server and produces the same result. You may want to run showplan to determine whether additional indexes are needed.
SELECT m2.Awb,
m2.Flight_no,
m2.Flight_date,
m2.Origin,
...
August 10, 2005 at 9:16 am
You can create a view which has the same column list as your source table and a WHERE clause:
create view v_xxx
..
as
select
..
from <source table>
where <column> >= dateadd(day, -180, getdate())
go
Then, you can...
August 8, 2005 at 9:08 am
Viewing 4 posts - 1 through 4 (of 4 total)