Viewing 15 posts - 1,261 through 1,275 (of 2,062 total)
The amount of reads are a good indication of I/O. Since it says 30000 instead of 110000 it should be faster. A look at the actual execution plan wouldn't hurt.
April 11, 2007 at 3:30 am
Are you connecting via ip or naming? Sql authentication or windows authentication?
April 5, 2007 at 1:35 pm
Have you found any info in the windows error log? (start->execute->eventvwr)
April 4, 2007 at 12:11 pm
not sure if this is the simplified version you want.
ALTER PROCEDURE [dbo].[get_SClinicals_list]
@DateFrom datetime='18000101', /*lowest possible*/
@DateToIn datetime='99990101', /*highest possible*/
@mName varchar(50)=NULL,
@ccName varchar(20)=NULL
AS
SET NOCOUNT ON
IF @mName is null...
April 3, 2007 at 12:32 pm
Mark,
Have you tried running the query using "query analyzer" instead of in enterprise manager?
If you have a job, you should also check if the account of sql agent has sufficient...
April 3, 2007 at 12:11 pm
Does Access 2003 have the latest service pack applied ?(To rule out some possible bugs)
April 3, 2007 at 12:08 pm
perhaps you can find some indication of the error in the windows event logs (searching on sql server).
Start->execute->eventvwr
April 3, 2007 at 12:07 pm
It is likely that the form is corrupt.
Have you recreated the form from scratch (since you imported some objects)?
March 30, 2007 at 6:44 am
There is a field Hostname you can place a filter on, but this will probably be the webserver.
Have you checked default connection-settings between test and production server?
Is there a difference...
March 5, 2007 at 11:31 am
I'm not familiar with informatica. The main issues we had with importing from oracle to sql server are dates<1800.
March 5, 2007 at 4:17 am
Someone circumvented this in a recent post. The trick was to create a view dbo.VW_NOW (name of choice)with as definition: select getdate() as today
From the function use select today from...
March 5, 2007 at 4:14 am
I assume it recompiles since there is an explicit command alter procedure.
March 2, 2007 at 12:16 pm
Have a trace running (sql profiler) at night monitoring for cpu-intensive queries?
Are these spikes or continuous (performance monitor on windows-system)?
March 2, 2007 at 12:11 pm
It could be a different execution plan between the stored procedure and the extracted sql code due parameter sniffing. The query plan could help here.
To capture the sql-statements you can...
March 2, 2007 at 12:09 pm
You could divide the delete in a set of smaller batches.
pseudocode
SELECT 1
WHILE @@ROWCOUNT>0
BEGIN
DELETE FROM test where id in (SELECT TOP 100 from test where deletecondition=true)
WAITFORDELAY ...
END
March 1, 2007 at 6:40 am
Viewing 15 posts - 1,261 through 1,275 (of 2,062 total)