Viewing 6 posts - 1 through 6 (of 6 total)
One option your have to accomplish this is to use the "IN" operator and return only the Employee_code in your subquery
Like :
SELECT *
FROM Employee_Absence_Days
where Absence_start_date >= @DATE1 AND Absence_start_date...
February 25, 2008 at 1:35 pm
Hi Phillip,
Yes the databases have been upgraded from SQL Server 2000 (32 bits) to SQL Server 2005 (64 bits)
This is not the first time that DBCC CHECKDB runs and it...
February 25, 2008 at 12:58 pm
Hi Paul and Phillip,
When I say it "failed", I meant that the server completely hanged, we couldn't connect to it or even ping it. Everytime this happened, the server...
February 25, 2008 at 11:44 am
1. this is true
2. you can't sum directly on a bit field because of the internal representation of that type of field in SQL Server. To accomplish what you...
February 25, 2008 at 10:30 am
Hi,
Here are the results if the DBCC CHECKDB ('MyDatabase') WITH ESTIMATEONLY :
Estimated TEMPDB space needed for CHECKALLOK (KB)
4737
Estimated...
February 25, 2008 at 10:10 am
Hi,
I'm having the exact same issue on a production server that is almost identical as yours.
- SQL 2005 SP2 64 bit running on W2K3 SP2 64
- Two Xeon...
February 25, 2008 at 8:50 am
Viewing 6 posts - 1 through 6 (of 6 total)