Viewing 15 posts - 31 through 45 (of 86 total)
Are you backing up the transaction logs? I suspect that you are only doing full backups, which will not affect the t-logs. Make sure that you are backing up T-logs.
The...
September 22, 2008 at 12:44 am
any error? event viewer should indicate where the problem is
September 15, 2008 at 2:13 am
The profiler should be on your server -
Start -> Programs -> Microsoft SQL Server 2005 -> Performance Tools -> SQL Server Profiler
Create new trace (File - New Trace ) and...
September 11, 2008 at 3:07 am
Hi
You could use SQL profiler - check the performance objects. Performance - Showplan XML gives a graphic of the query.
Don't run a profile for too long - it may hit...
September 10, 2008 at 7:57 am
Maybe worthwhile looking at the server logs to try to find when the file was lost. Also, our network people take reqular back-ups of the disks...
August 29, 2008 at 5:57 am
Hi
Saw this error message a while ago - the problem was not with the connections but with a query, which did not finish. The stuff about the connections in the...
August 28, 2008 at 12:49 am
Shouldnt this be
SELECT C.CATID, COUNT(*)
FROM #DATA DINNER
JOIN #CATEGORY C ON (C.VAL1 = DINNER.VAL1) OR (C.VAL1 IS NULL)
GROUP BY C.CATID
(was ON C.VAL1 = D.VAL1)
August 26, 2008 at 2:45 am
Had a CLR procedure cause random server crashes in production. Only able to replicate the error in Dev after a lot of work and never realy fixed.
If you can, avoid.
August 18, 2008 at 6:48 am
August 18, 2008 at 1:40 am
I've always restored the database and ran checkdb, then open a table ot two.
The verifyonly performs minimal checks - if you have the time and space I'd use the above...
June 13, 2008 at 12:54 am
you could use a tool (eg ssis) to move the data and objects from the 2K5 database to the sql2k database..
Not sure what problems you'd hit - I've only gone...
April 25, 2008 at 4:32 am
Thanks. I'll try to set up a test environment - if I get anywhere I'll post back.
Putting the application on its own SQL Server instance seems to have cleared the...
April 16, 2008 at 12:12 am
Hi thanks for the reply,
I'm running SP2.
I used the -G to reproduce the error - It's not set on the production system. I may have to use it, though. Not...
April 14, 2008 at 12:19 am
Hi
Thanks for the reply.
I've asked the programmers to check, but they are confident that the CLR is not leaving anything around.
(I don't have access to the code!)
April 11, 2008 at 12:35 am
Viewing 15 posts - 31 through 45 (of 86 total)