Viewing 15 posts - 1,846 through 1,860 (of 2,043 total)
A lot of sums
Are there indexes on Population.Postcode, Postcode_boundary.Postcode?
Depending on the uniqueness of B.CD_CODE , is there an index on Postcode_boundary.CD_CODE?
Are the statistics...
October 31, 2005 at 2:16 am
if 06/30/3003 was a typo
and date_range in the lookup table is split in 2 fields
it can be something like this
select trans_key.key_id,trans_date,Moneyfield,keylookup.good_key as corrected_key
from test.dbo.trans_key trans_key /*transaction table*/
inner join test.dbo.keylookup keylookup...
October 30, 2005 at 5:22 am
not sure if (t1.statusid > @newstatus or t1.statusid < @newstatus) performs better.
What are your current indexes?
October 30, 2005 at 5:05 am
Is the sql reporting server on the same server as your IIS/SQL server?
The reporting was working fine->what has changed? (Moved from development to production....?)
October 29, 2005 at 6:40 am
Can you connect to the database using the connectionstring the application uses? (using query analyzer)
October 28, 2005 at 11:03 am
database logon failed
Is the application using windows authentication or sql authentication to connect to sql server?
October 28, 2005 at 10:56 am
try
USE mytargetdatabase
SELECT TABLE_CATALOG, TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = OBJECT_NAME(1852795252)
October 28, 2005 at 10:48 am
this site has a lot of info about repairing mdac
It mentions windows xp2 but may work as well for windows 2003 sp1
October 28, 2005 at 10:44 am
any size differences between the specific database and the others?
October 28, 2005 at 10:17 am
Could you post the stored procedures or the query that takes a long time to run?
Seems it could use some review.
October 28, 2005 at 8:14 am
quite late here, there is probably a better query.
IF EXISTS(SELECT *
from MeetingAttendance
WHERE MeetingID=@MeetingID
AND MeetingDate BETWEEN @StartDate AND @EndDate
)
BEGIN
select employees.EmployeeID
from MeetingAttendance /*AVAILABLE MEETINGS*/
WHERE MeetingID=@MeetingID...
October 27, 2005 at 3:02 pm
You can use the sql profiler to track down cpu-intensive queries.
What is the number of stored procedure recompilations/sec?
October 27, 2005 at 2:39 pm
If I am reading it correctly
Employees: list of all employees
MeetingAttendance: all employees present at a meeting
Where is the reference of who needs to be present?
October 27, 2005 at 2:29 pm
Viewing 15 posts - 1,846 through 1,860 (of 2,043 total)