Viewing 15 posts - 1,861 through 1,875 (of 2,062 total)
Select the job(s) you want from Management-SQL Agent-Jobs in enterprise manager
Right click and choose all tasks->Generate script
October 31, 2005 at 8:39 am
If it was a long running query it may have an extensive rollback period.
Are there any entries in the OS event-viewer?
Can you connect to the database using queryanalyzer? If so...
October 31, 2005 at 8:33 am
Which indexes are currently used by your query (view the queryanalyzer)?
Does the index wizard gives any hints?
select
October 31, 2005 at 8:19 am
It could have been that the server was too busy.
Is the user able to open the report now?
October 31, 2005 at 6:39 am
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
Viewing 15 posts - 1,861 through 1,875 (of 2,062 total)